diff --git a/Chart_GettingStarted/Chart_GettingStarted.sln b/Chart_GettingStarted/Chart_GettingStarted.sln deleted file mode 100644 index eb173c7..0000000 --- a/Chart_GettingStarted/Chart_GettingStarted.sln +++ /dev/null @@ -1,27 +0,0 @@ - -Microsoft Visual Studio Solution File, Format Version 12.00 -# Visual Studio Version 17 -VisualStudioVersion = 17.0.31611.283 -MinimumVisualStudioVersion = 10.0.40219.1 -Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Chart_GettingStarted", "Chart_GettingStarted\Chart_GettingStarted.csproj", "{8CD14036-8337-4403-8FF2-247F765F27C0}" -EndProject -Global - GlobalSection(SolutionConfigurationPlatforms) = preSolution - Debug|Any CPU = Debug|Any CPU - Release|Any CPU = Release|Any CPU - EndGlobalSection - GlobalSection(ProjectConfigurationPlatforms) = postSolution - {8CD14036-8337-4403-8FF2-247F765F27C0}.Debug|Any CPU.ActiveCfg = Debug|Any CPU - {8CD14036-8337-4403-8FF2-247F765F27C0}.Debug|Any CPU.Build.0 = Debug|Any CPU - {8CD14036-8337-4403-8FF2-247F765F27C0}.Debug|Any CPU.Deploy.0 = Debug|Any CPU - {8CD14036-8337-4403-8FF2-247F765F27C0}.Release|Any CPU.ActiveCfg = Release|Any CPU - {8CD14036-8337-4403-8FF2-247F765F27C0}.Release|Any CPU.Build.0 = Release|Any CPU - {8CD14036-8337-4403-8FF2-247F765F27C0}.Release|Any CPU.Deploy.0 = Release|Any CPU - EndGlobalSection - GlobalSection(SolutionProperties) = preSolution - HideSolutionNode = FALSE - EndGlobalSection - GlobalSection(ExtensibilityGlobals) = postSolution - SolutionGuid = {61F7FB11-1E47-470C-91E2-47F8143E1572} - EndGlobalSection -EndGlobal diff --git a/Chart_GettingStarted/Chart_GettingStarted.slnx b/Chart_GettingStarted/Chart_GettingStarted.slnx new file mode 100644 index 0000000..a21881f --- /dev/null +++ b/Chart_GettingStarted/Chart_GettingStarted.slnx @@ -0,0 +1,3 @@ + + + diff --git a/Chart_GettingStarted/Chart_GettingStarted/App.xaml.cs b/Chart_GettingStarted/Chart_GettingStarted/App.xaml.cs index 6589fb6..9cbeb82 100644 --- a/Chart_GettingStarted/Chart_GettingStarted/App.xaml.cs +++ b/Chart_GettingStarted/Chart_GettingStarted/App.xaml.cs @@ -1,11 +1,17 @@ -namespace Chart_GettingStarted; +using Microsoft.Extensions.DependencyInjection; -public partial class App : Application +namespace Chart_GettingStarted { - public App() - { - InitializeComponent(); + public partial class App : Application + { + public App() + { + InitializeComponent(); + } - MainPage = new AppShell(); - } -} + protected override Window CreateWindow(IActivationState? activationState) + { + return new Window(new AppShell()); + } + } +} \ No newline at end of file diff --git a/Chart_GettingStarted/Chart_GettingStarted/AppShell.xaml b/Chart_GettingStarted/Chart_GettingStarted/AppShell.xaml index a7b129b..9a21af7 100644 --- a/Chart_GettingStarted/Chart_GettingStarted/AppShell.xaml +++ b/Chart_GettingStarted/Chart_GettingStarted/AppShell.xaml @@ -4,9 +4,10 @@ xmlns="http://schemas.microsoft.com/dotnet/2021/maui" xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml" xmlns:local="clr-namespace:Chart_GettingStarted" - Shell.FlyoutBehavior="Disabled"> + Title="Chart_GettingStarted"> diff --git a/Chart_GettingStarted/Chart_GettingStarted/AppShell.xaml.cs b/Chart_GettingStarted/Chart_GettingStarted/AppShell.xaml.cs index 8cc8121..73256c0 100644 --- a/Chart_GettingStarted/Chart_GettingStarted/AppShell.xaml.cs +++ b/Chart_GettingStarted/Chart_GettingStarted/AppShell.xaml.cs @@ -1,9 +1,10 @@ -namespace Chart_GettingStarted; - -public partial class AppShell : Shell +namespace Chart_GettingStarted { - public AppShell() - { - InitializeComponent(); - } + public partial class AppShell : Shell + { + public AppShell() + { + InitializeComponent(); + } + } } diff --git a/Chart_GettingStarted/Chart_GettingStarted/Chart_GettingStarted.csproj b/Chart_GettingStarted/Chart_GettingStarted/Chart_GettingStarted.csproj index 765da6d..e137a12 100644 --- a/Chart_GettingStarted/Chart_GettingStarted/Chart_GettingStarted.csproj +++ b/Chart_GettingStarted/Chart_GettingStarted/Chart_GettingStarted.csproj @@ -1,33 +1,50 @@ - + - net8.0-android;net8.0-ios;net8.0-maccatalyst - $(TargetFrameworks);net8.0-windows10.0.19041.0 - - + net10.0-android + $(TargetFrameworks);net10.0-ios;net10.0-maccatalyst + $(TargetFrameworks);net10.0-windows10.0.19041.0 + + + + Exe Chart_GettingStarted true true enable + enable + + + SourceGen Chart_GettingStarted com.companyname.chart_gettingstarted - 58F2698D-4B4B-42FC-B779-3FAFA8421224 1.0 1 - 14.2 - 14.0 + + None + + 15.0 + 15.0 21.0 10.0.17763.0 10.0.17763.0 - 6.5 @@ -39,8 +56,8 @@ - - + + @@ -49,8 +66,13 @@ - - + + + + + + + diff --git a/Chart_GettingStarted/Chart_GettingStarted/Chart_GettingStarted.csproj.user b/Chart_GettingStarted/Chart_GettingStarted/Chart_GettingStarted.csproj.user deleted file mode 100644 index af101b3..0000000 --- a/Chart_GettingStarted/Chart_GettingStarted/Chart_GettingStarted.csproj.user +++ /dev/null @@ -1,8 +0,0 @@ - - - - net8.0-android - False - Windows Machine - - \ No newline at end of file diff --git a/Chart_GettingStarted/Chart_GettingStarted/MauiProgram.cs b/Chart_GettingStarted/Chart_GettingStarted/MauiProgram.cs index 7d57ccc..47bb688 100644 --- a/Chart_GettingStarted/Chart_GettingStarted/MauiProgram.cs +++ b/Chart_GettingStarted/Chart_GettingStarted/MauiProgram.cs @@ -1,20 +1,27 @@ -using Syncfusion.Maui.Core.Hosting; -namespace Chart_GettingStarted; +using Microsoft.Extensions.Logging; +using Syncfusion.Maui.Core.Hosting; -public static class MauiProgram +namespace Chart_GettingStarted { - public static MauiApp CreateMauiApp() - { - var builder = MauiApp.CreateBuilder(); - builder - .UseMauiApp() - .ConfigureSyncfusionCore() - .ConfigureFonts(fonts => - { - fonts.AddFont("OpenSans-Regular.ttf", "OpenSansRegular"); - fonts.AddFont("OpenSans-Semibold.ttf", "OpenSansSemibold"); - }); + public static class MauiProgram + { + public static MauiApp CreateMauiApp() + { + var builder = MauiApp.CreateBuilder(); + builder + .UseMauiApp() + .ConfigureSyncfusionCore() + .ConfigureFonts(fonts => + { + fonts.AddFont("OpenSans-Regular.ttf", "OpenSansRegular"); + fonts.AddFont("OpenSans-Semibold.ttf", "OpenSansSemibold"); + }); - return builder.Build(); - } +#if DEBUG + builder.Logging.AddDebug(); +#endif + + return builder.Build(); + } + } } diff --git a/Chart_GettingStarted/Chart_GettingStarted/Platforms/Android/MainActivity.cs b/Chart_GettingStarted/Chart_GettingStarted/Platforms/Android/MainActivity.cs index 9394438..3871fd6 100644 --- a/Chart_GettingStarted/Chart_GettingStarted/Platforms/Android/MainActivity.cs +++ b/Chart_GettingStarted/Chart_GettingStarted/Platforms/Android/MainActivity.cs @@ -2,9 +2,10 @@ using Android.Content.PM; using Android.OS; -namespace Chart_GettingStarted; - -[Activity(Theme = "@style/Maui.SplashTheme", MainLauncher = true, ConfigurationChanges = ConfigChanges.ScreenSize | ConfigChanges.Orientation | ConfigChanges.UiMode | ConfigChanges.ScreenLayout | ConfigChanges.SmallestScreenSize | ConfigChanges.Density)] -public class MainActivity : MauiAppCompatActivity +namespace Chart_GettingStarted { + [Activity(Theme = "@style/Maui.SplashTheme", MainLauncher = true, LaunchMode = LaunchMode.SingleTop, ConfigurationChanges = ConfigChanges.ScreenSize | ConfigChanges.Orientation | ConfigChanges.UiMode | ConfigChanges.ScreenLayout | ConfigChanges.SmallestScreenSize | ConfigChanges.Density)] + public class MainActivity : MauiAppCompatActivity + { + } } diff --git a/Chart_GettingStarted/Chart_GettingStarted/Platforms/Android/MainApplication.cs b/Chart_GettingStarted/Chart_GettingStarted/Platforms/Android/MainApplication.cs index e83cfb5..b90e2ef 100644 --- a/Chart_GettingStarted/Chart_GettingStarted/Platforms/Android/MainApplication.cs +++ b/Chart_GettingStarted/Chart_GettingStarted/Platforms/Android/MainApplication.cs @@ -1,15 +1,16 @@ using Android.App; using Android.Runtime; -namespace Chart_GettingStarted; - -[Application] -public class MainApplication : MauiApplication +namespace Chart_GettingStarted { - public MainApplication(IntPtr handle, JniHandleOwnership ownership) - : base(handle, ownership) - { - } + [Application] + public class MainApplication : MauiApplication + { + public MainApplication(IntPtr handle, JniHandleOwnership ownership) + : base(handle, ownership) + { + } - protected override MauiApp CreateMauiApp() => MauiProgram.CreateMauiApp(); + protected override MauiApp CreateMauiApp() => MauiProgram.CreateMauiApp(); + } } diff --git a/Chart_GettingStarted/Chart_GettingStarted/Platforms/MacCatalyst/AppDelegate.cs b/Chart_GettingStarted/Chart_GettingStarted/Platforms/MacCatalyst/AppDelegate.cs index cd716b9..39a3555 100644 --- a/Chart_GettingStarted/Chart_GettingStarted/Platforms/MacCatalyst/AppDelegate.cs +++ b/Chart_GettingStarted/Chart_GettingStarted/Platforms/MacCatalyst/AppDelegate.cs @@ -1,9 +1,10 @@ using Foundation; -namespace Chart_GettingStarted; - -[Register("AppDelegate")] -public class AppDelegate : MauiUIApplicationDelegate +namespace Chart_GettingStarted { - protected override MauiApp CreateMauiApp() => MauiProgram.CreateMauiApp(); + [Register("AppDelegate")] + public class AppDelegate : MauiUIApplicationDelegate + { + protected override MauiApp CreateMauiApp() => MauiProgram.CreateMauiApp(); + } } diff --git a/Chart_GettingStarted/Chart_GettingStarted/Platforms/MacCatalyst/Entitlements.plist b/Chart_GettingStarted/Chart_GettingStarted/Platforms/MacCatalyst/Entitlements.plist new file mode 100644 index 0000000..de4adc9 --- /dev/null +++ b/Chart_GettingStarted/Chart_GettingStarted/Platforms/MacCatalyst/Entitlements.plist @@ -0,0 +1,14 @@ + + + + + + + com.apple.security.app-sandbox + + + com.apple.security.network.client + + + + diff --git a/Chart_GettingStarted/Chart_GettingStarted/Platforms/MacCatalyst/Info.plist b/Chart_GettingStarted/Chart_GettingStarted/Platforms/MacCatalyst/Info.plist index c96dd0a..f2e0987 100644 --- a/Chart_GettingStarted/Chart_GettingStarted/Platforms/MacCatalyst/Info.plist +++ b/Chart_GettingStarted/Chart_GettingStarted/Platforms/MacCatalyst/Info.plist @@ -2,11 +2,21 @@ + + + + + + + + + UIDeviceFamily - 1 2 + LSApplicationCategoryType + public.app-category.lifestyle UIRequiredDeviceCapabilities arm64 diff --git a/Chart_GettingStarted/Chart_GettingStarted/Platforms/MacCatalyst/Program.cs b/Chart_GettingStarted/Chart_GettingStarted/Platforms/MacCatalyst/Program.cs index d72dbd5..13097de 100644 --- a/Chart_GettingStarted/Chart_GettingStarted/Platforms/MacCatalyst/Program.cs +++ b/Chart_GettingStarted/Chart_GettingStarted/Platforms/MacCatalyst/Program.cs @@ -1,15 +1,16 @@ using ObjCRuntime; using UIKit; -namespace Chart_GettingStarted; - -public class Program +namespace Chart_GettingStarted { - // This is the main entry point of the application. - static void Main(string[] args) - { - // if you want to use a different Application Delegate class from "AppDelegate" - // you can specify it here. - UIApplication.Main(args, null, typeof(AppDelegate)); - } + public class Program + { + // This is the main entry point of the application. + static void Main(string[] args) + { + // if you want to use a different Application Delegate class from "AppDelegate" + // you can specify it here. + UIApplication.Main(args, null, typeof(AppDelegate)); + } + } } diff --git a/Chart_GettingStarted/Chart_GettingStarted/Platforms/Tizen/Main.cs b/Chart_GettingStarted/Chart_GettingStarted/Platforms/Tizen/Main.cs deleted file mode 100644 index 63e9890..0000000 --- a/Chart_GettingStarted/Chart_GettingStarted/Platforms/Tizen/Main.cs +++ /dev/null @@ -1,16 +0,0 @@ -using System; -using Microsoft.Maui; -using Microsoft.Maui.Hosting; - -namespace Chart_GettingStarted; - -class Program : MauiApplication -{ - protected override MauiApp CreateMauiApp() => MauiProgram.CreateMauiApp(); - - static void Main(string[] args) - { - var app = new Program(); - app.Run(args); - } -} diff --git a/Chart_GettingStarted/Chart_GettingStarted/Platforms/Tizen/tizen-manifest.xml b/Chart_GettingStarted/Chart_GettingStarted/Platforms/Tizen/tizen-manifest.xml deleted file mode 100644 index 757f84e..0000000 --- a/Chart_GettingStarted/Chart_GettingStarted/Platforms/Tizen/tizen-manifest.xml +++ /dev/null @@ -1,15 +0,0 @@ - - - - - - maui-appicon-placeholder - - - - - http://tizen.org/privilege/internet - - - - \ No newline at end of file diff --git a/Chart_GettingStarted/Chart_GettingStarted/Platforms/Windows/App.xaml.cs b/Chart_GettingStarted/Chart_GettingStarted/Platforms/Windows/App.xaml.cs index dfc8396..3a5f8ca 100644 --- a/Chart_GettingStarted/Chart_GettingStarted/Platforms/Windows/App.xaml.cs +++ b/Chart_GettingStarted/Chart_GettingStarted/Platforms/Windows/App.xaml.cs @@ -3,22 +3,23 @@ // To learn more about WinUI, the WinUI project structure, // and more about our project templates, see: http://aka.ms/winui-project-info. -namespace Chart_GettingStarted.WinUI; - -/// -/// Provides application-specific behavior to supplement the default Application class. -/// -public partial class App : MauiWinUIApplication +namespace Chart_GettingStarted.WinUI { - /// - /// Initializes the singleton application object. This is the first line of authored code - /// executed, and as such is the logical equivalent of main() or WinMain(). - /// - public App() - { - this.InitializeComponent(); - } + /// + /// Provides application-specific behavior to supplement the default Application class. + /// + public partial class App : MauiWinUIApplication + { + /// + /// Initializes the singleton application object. This is the first line of authored code + /// executed, and as such is the logical equivalent of main() or WinMain(). + /// + public App() + { + this.InitializeComponent(); + } - protected override MauiApp CreateMauiApp() => MauiProgram.CreateMauiApp(); -} + protected override MauiApp CreateMauiApp() => MauiProgram.CreateMauiApp(); + } +} diff --git a/Chart_GettingStarted/Chart_GettingStarted/Platforms/Windows/Package.appxmanifest b/Chart_GettingStarted/Chart_GettingStarted/Platforms/Windows/Package.appxmanifest index 2bcb11e..653b055 100644 --- a/Chart_GettingStarted/Chart_GettingStarted/Platforms/Windows/Package.appxmanifest +++ b/Chart_GettingStarted/Chart_GettingStarted/Platforms/Windows/Package.appxmanifest @@ -2,11 +2,14 @@ + + $placeholder$ User Name diff --git a/Chart_GettingStarted/Chart_GettingStarted/Platforms/Windows/app.manifest b/Chart_GettingStarted/Chart_GettingStarted/Platforms/Windows/app.manifest index f5f6042..8c4d0ed 100644 --- a/Chart_GettingStarted/Chart_GettingStarted/Platforms/Windows/app.manifest +++ b/Chart_GettingStarted/Chart_GettingStarted/Platforms/Windows/app.manifest @@ -10,6 +10,8 @@ --> true/PM PerMonitorV2, PerMonitor + + true diff --git a/Chart_GettingStarted/Chart_GettingStarted/Platforms/iOS/AppDelegate.cs b/Chart_GettingStarted/Chart_GettingStarted/Platforms/iOS/AppDelegate.cs index cd716b9..39a3555 100644 --- a/Chart_GettingStarted/Chart_GettingStarted/Platforms/iOS/AppDelegate.cs +++ b/Chart_GettingStarted/Chart_GettingStarted/Platforms/iOS/AppDelegate.cs @@ -1,9 +1,10 @@ using Foundation; -namespace Chart_GettingStarted; - -[Register("AppDelegate")] -public class AppDelegate : MauiUIApplicationDelegate +namespace Chart_GettingStarted { - protected override MauiApp CreateMauiApp() => MauiProgram.CreateMauiApp(); + [Register("AppDelegate")] + public class AppDelegate : MauiUIApplicationDelegate + { + protected override MauiApp CreateMauiApp() => MauiProgram.CreateMauiApp(); + } } diff --git a/Chart_GettingStarted/Chart_GettingStarted/Platforms/iOS/Program.cs b/Chart_GettingStarted/Chart_GettingStarted/Platforms/iOS/Program.cs index d72dbd5..13097de 100644 --- a/Chart_GettingStarted/Chart_GettingStarted/Platforms/iOS/Program.cs +++ b/Chart_GettingStarted/Chart_GettingStarted/Platforms/iOS/Program.cs @@ -1,15 +1,16 @@ using ObjCRuntime; using UIKit; -namespace Chart_GettingStarted; - -public class Program +namespace Chart_GettingStarted { - // This is the main entry point of the application. - static void Main(string[] args) - { - // if you want to use a different Application Delegate class from "AppDelegate" - // you can specify it here. - UIApplication.Main(args, null, typeof(AppDelegate)); - } + public class Program + { + // This is the main entry point of the application. + static void Main(string[] args) + { + // if you want to use a different Application Delegate class from "AppDelegate" + // you can specify it here. + UIApplication.Main(args, null, typeof(AppDelegate)); + } + } } diff --git a/Chart_GettingStarted/Chart_GettingStarted/Platforms/iOS/Resources/PrivacyInfo.xcprivacy b/Chart_GettingStarted/Chart_GettingStarted/Platforms/iOS/Resources/PrivacyInfo.xcprivacy new file mode 100644 index 0000000..24ab3b4 --- /dev/null +++ b/Chart_GettingStarted/Chart_GettingStarted/Platforms/iOS/Resources/PrivacyInfo.xcprivacy @@ -0,0 +1,51 @@ + + + + + + NSPrivacyAccessedAPITypes + + + NSPrivacyAccessedAPIType + NSPrivacyAccessedAPICategoryFileTimestamp + NSPrivacyAccessedAPITypeReasons + + C617.1 + + + + NSPrivacyAccessedAPIType + NSPrivacyAccessedAPICategorySystemBootTime + NSPrivacyAccessedAPITypeReasons + + 35F9.1 + + + + NSPrivacyAccessedAPIType + NSPrivacyAccessedAPICategoryDiskSpace + NSPrivacyAccessedAPITypeReasons + + E174.1 + + + + + + diff --git a/Chart_GettingStarted/Chart_GettingStarted/Properties/launchSettings.json b/Chart_GettingStarted/Chart_GettingStarted/Properties/launchSettings.json index edf8aad..4f85793 100644 --- a/Chart_GettingStarted/Chart_GettingStarted/Properties/launchSettings.json +++ b/Chart_GettingStarted/Chart_GettingStarted/Properties/launchSettings.json @@ -1,7 +1,7 @@ { "profiles": { "Windows Machine": { - "commandName": "MsixPackage", + "commandName": "Project", "nativeDebugging": false } } diff --git a/Chart_GettingStarted/Chart_GettingStarted/Resources/Fonts/OpenSans-Regular.ttf b/Chart_GettingStarted/Chart_GettingStarted/Resources/Fonts/OpenSans-Regular.ttf index 939e348..2cc82d2 100644 Binary files a/Chart_GettingStarted/Chart_GettingStarted/Resources/Fonts/OpenSans-Regular.ttf and b/Chart_GettingStarted/Chart_GettingStarted/Resources/Fonts/OpenSans-Regular.ttf differ diff --git a/Chart_GettingStarted/Chart_GettingStarted/Resources/Fonts/OpenSans-Semibold.ttf b/Chart_GettingStarted/Chart_GettingStarted/Resources/Fonts/OpenSans-Semibold.ttf index 9589fe4..fcb5284 100644 Binary files a/Chart_GettingStarted/Chart_GettingStarted/Resources/Fonts/OpenSans-Semibold.ttf and b/Chart_GettingStarted/Chart_GettingStarted/Resources/Fonts/OpenSans-Semibold.ttf differ diff --git a/Chart_GettingStarted/Chart_GettingStarted/Resources/Images/dotnet_bot.png b/Chart_GettingStarted/Chart_GettingStarted/Resources/Images/dotnet_bot.png new file mode 100644 index 0000000..054167e Binary files /dev/null and b/Chart_GettingStarted/Chart_GettingStarted/Resources/Images/dotnet_bot.png differ diff --git a/Chart_GettingStarted/Chart_GettingStarted/Resources/Images/dotnet_bot.svg b/Chart_GettingStarted/Chart_GettingStarted/Resources/Images/dotnet_bot.svg deleted file mode 100644 index abfaff2..0000000 --- a/Chart_GettingStarted/Chart_GettingStarted/Resources/Images/dotnet_bot.svg +++ /dev/null @@ -1,93 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/Chart_GettingStarted/Chart_GettingStarted/Resources/Raw/AboutAssets.txt b/Chart_GettingStarted/Chart_GettingStarted/Resources/Raw/AboutAssets.txt index 15d6244..89dc758 100644 --- a/Chart_GettingStarted/Chart_GettingStarted/Resources/Raw/AboutAssets.txt +++ b/Chart_GettingStarted/Chart_GettingStarted/Resources/Raw/AboutAssets.txt @@ -4,7 +4,7 @@ is automatically handled by the following `MauiAsset` Build Action within your ` -These files will be deployed with you package and will be accessible using Essentials: +These files will be deployed with your package and will be accessible using Essentials: async Task LoadMauiAsset() { diff --git a/Chart_GettingStarted/Chart_GettingStarted/Resources/Styles/Colors.xaml b/Chart_GettingStarted/Chart_GettingStarted/Resources/Styles/Colors.xaml index 245758b..d57fcc6 100644 --- a/Chart_GettingStarted/Chart_GettingStarted/Resources/Styles/Colors.xaml +++ b/Chart_GettingStarted/Chart_GettingStarted/Resources/Styles/Colors.xaml @@ -1,14 +1,23 @@  - + + #512BD4 + #ac99ea + #242424 #DFD8F7 + #9880e5 #2B0B98 + White Black + #D600AA + #190649 + #1f1f1f + #E1E1E1 #C8C8C8 #ACACAC @@ -17,11 +26,13 @@ #404040 #212121 #141414 + + @@ -30,15 +41,4 @@ - - #F7B548 - #FFD590 - #FFE5B9 - #28C2D1 - #7BDDEF - #C3F2F4 - #3E8EED - #72ACF1 - #A7CBF6 - \ No newline at end of file diff --git a/Chart_GettingStarted/Chart_GettingStarted/Resources/Styles/Styles.xaml b/Chart_GettingStarted/Chart_GettingStarted/Resources/Styles/Styles.xaml index 1ec9d55..5fef12a 100644 --- a/Chart_GettingStarted/Chart_GettingStarted/Resources/Styles/Styles.xaml +++ b/Chart_GettingStarted/Chart_GettingStarted/Resources/Styles/Styles.xaml @@ -1,5 +1,4 @@  - @@ -20,16 +19,19 @@ - - - + + + +