diff --git a/Syncfusion_Dot_NET_MAUI_Column_Charts/ColumnChartDemo.sln b/Syncfusion_Dot_NET_MAUI_Column_Charts/ColumnChartDemo.sln
new file mode 100644
index 0000000..4769d32
--- /dev/null
+++ b/Syncfusion_Dot_NET_MAUI_Column_Charts/ColumnChartDemo.sln
@@ -0,0 +1,25 @@
+
+Microsoft Visual Studio Solution File, Format Version 12.00
+# Visual Studio Version 17
+VisualStudioVersion = 17.13.35931.197 d17.13
+MinimumVisualStudioVersion = 10.0.40219.1
+Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "ColumnChartDemo", "ColumnChartDemo\ColumnChartDemo.csproj", "{A23A1EE6-BB2E-484D-A5EC-D9672483D106}"
+EndProject
+Global
+ GlobalSection(SolutionConfigurationPlatforms) = preSolution
+ Debug|Any CPU = Debug|Any CPU
+ Release|Any CPU = Release|Any CPU
+ EndGlobalSection
+ GlobalSection(ProjectConfigurationPlatforms) = postSolution
+ {A23A1EE6-BB2E-484D-A5EC-D9672483D106}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
+ {A23A1EE6-BB2E-484D-A5EC-D9672483D106}.Debug|Any CPU.Build.0 = Debug|Any CPU
+ {A23A1EE6-BB2E-484D-A5EC-D9672483D106}.Release|Any CPU.ActiveCfg = Release|Any CPU
+ {A23A1EE6-BB2E-484D-A5EC-D9672483D106}.Release|Any CPU.Build.0 = Release|Any CPU
+ EndGlobalSection
+ GlobalSection(SolutionProperties) = preSolution
+ HideSolutionNode = FALSE
+ EndGlobalSection
+ GlobalSection(ExtensibilityGlobals) = postSolution
+ SolutionGuid = {5916E353-723D-4C77-9851-C9122BE246FC}
+ EndGlobalSection
+EndGlobal
diff --git a/Syncfusion_Dot_NET_MAUI_Column_Charts/ColumnChartDemo/App.xaml b/Syncfusion_Dot_NET_MAUI_Column_Charts/ColumnChartDemo/App.xaml
index fb47526..7818d22 100644
--- a/Syncfusion_Dot_NET_MAUI_Column_Charts/ColumnChartDemo/App.xaml
+++ b/Syncfusion_Dot_NET_MAUI_Column_Charts/ColumnChartDemo/App.xaml
@@ -3,5 +3,12 @@
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
xmlns:local="clr-namespace:ColumnChartDemo"
x:Class="ColumnChartDemo.App">
-
+
+
+
+
+
+
+
+
diff --git a/Syncfusion_Dot_NET_MAUI_Column_Charts/ColumnChartDemo/App.xaml.cs b/Syncfusion_Dot_NET_MAUI_Column_Charts/ColumnChartDemo/App.xaml.cs
index 0fb5b57..4a17752 100644
--- a/Syncfusion_Dot_NET_MAUI_Column_Charts/ColumnChartDemo/App.xaml.cs
+++ b/Syncfusion_Dot_NET_MAUI_Column_Charts/ColumnChartDemo/App.xaml.cs
@@ -1,11 +1,15 @@
-namespace ColumnChartDemo;
-
-public partial class App : Application
+namespace ColumnChartDemo
{
- public App()
- {
- InitializeComponent();
+ public partial class App : Application
+ {
+ public App()
+ {
+ InitializeComponent();
+ }
- MainPage = new MainPage();
- }
-}
+ protected override Window CreateWindow(IActivationState? activationState)
+ {
+ return new Window(new MainPage());
+ }
+ }
+}
\ No newline at end of file
diff --git a/Syncfusion_Dot_NET_MAUI_Column_Charts/ColumnChartDemo/AppShell.xaml b/Syncfusion_Dot_NET_MAUI_Column_Charts/ColumnChartDemo/AppShell.xaml
new file mode 100644
index 0000000..250f773
--- /dev/null
+++ b/Syncfusion_Dot_NET_MAUI_Column_Charts/ColumnChartDemo/AppShell.xaml
@@ -0,0 +1,15 @@
+
+
+
+
+
+
diff --git a/Syncfusion_Dot_NET_MAUI_Column_Charts/ColumnChartDemo/AppShell.xaml.cs b/Syncfusion_Dot_NET_MAUI_Column_Charts/ColumnChartDemo/AppShell.xaml.cs
new file mode 100644
index 0000000..55b3aa2
--- /dev/null
+++ b/Syncfusion_Dot_NET_MAUI_Column_Charts/ColumnChartDemo/AppShell.xaml.cs
@@ -0,0 +1,10 @@
+namespace ColumnChartDemo
+{
+ public partial class AppShell : Shell
+ {
+ public AppShell()
+ {
+ InitializeComponent();
+ }
+ }
+}
diff --git a/Syncfusion_Dot_NET_MAUI_Column_Charts/ColumnChartDemo/ColumnChartDemo.csproj b/Syncfusion_Dot_NET_MAUI_Column_Charts/ColumnChartDemo/ColumnChartDemo.csproj
index 09a94ce..52ca05a 100644
--- a/Syncfusion_Dot_NET_MAUI_Column_Charts/ColumnChartDemo/ColumnChartDemo.csproj
+++ b/Syncfusion_Dot_NET_MAUI_Column_Charts/ColumnChartDemo/ColumnChartDemo.csproj
@@ -1,46 +1,56 @@
-
+
- net6.0-android;net6.0-ios;net6.0-maccatalyst
- $(TargetFrameworks);net6.0-windows10.0.19041
+ net9.0-android;net9.0-ios;net9.0-maccatalyst
+ $(TargetFrameworks);net9.0-windows10.0.19041.0
+
+
+
+
+
+
Exe
ColumnChartDemo
true
true
enable
- true
+ enable
ColumnChartDemo
com.companyname.columnchartdemo
- 53E47BFF-2930-4C1B-BB86-E430AC84C899
1.0
1
-
- True
+
+ None
- 14.2
- 14.0
- 21.0
- 10.0.17763.0
- 10.0.17763.0
+ 15.0
+ 15.0
+ 21.0
+ 10.0.17763.0
+ 10.0.17763.0
+ 6.5
-
+
-
+
-
+
@@ -49,19 +59,10 @@
-
-
-
-
-
-
-
+
+
+
-
- WinExe
- win10-x64
-
-
diff --git a/Syncfusion_Dot_NET_MAUI_Column_Charts/ColumnChartDemo/ColumnChartDemo.csproj.user b/Syncfusion_Dot_NET_MAUI_Column_Charts/ColumnChartDemo/ColumnChartDemo.csproj.user
deleted file mode 100644
index b3ba2e6..0000000
--- a/Syncfusion_Dot_NET_MAUI_Column_Charts/ColumnChartDemo/ColumnChartDemo.csproj.user
+++ /dev/null
@@ -1,11 +0,0 @@
-
-
-
- net6.0-windows10.0.19041
- False
- Windows Machine
-
-
- ProjectDebugger
-
-
\ No newline at end of file
diff --git a/Syncfusion_Dot_NET_MAUI_Column_Charts/ColumnChartDemo/ColumnChartDemo.sln b/Syncfusion_Dot_NET_MAUI_Column_Charts/ColumnChartDemo/ColumnChartDemo.sln
deleted file mode 100644
index d3ca0f8..0000000
--- a/Syncfusion_Dot_NET_MAUI_Column_Charts/ColumnChartDemo/ColumnChartDemo.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}") = "ColumnChartDemo", "ColumnChartDemo.csproj", "{55C0CE40-A9BA-4585-A96E-124470E219A8}"
-EndProject
-Global
- GlobalSection(SolutionConfigurationPlatforms) = preSolution
- Debug|Any CPU = Debug|Any CPU
- Release|Any CPU = Release|Any CPU
- EndGlobalSection
- GlobalSection(ProjectConfigurationPlatforms) = postSolution
- {55C0CE40-A9BA-4585-A96E-124470E219A8}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
- {55C0CE40-A9BA-4585-A96E-124470E219A8}.Debug|Any CPU.Build.0 = Debug|Any CPU
- {55C0CE40-A9BA-4585-A96E-124470E219A8}.Debug|Any CPU.Deploy.0 = Debug|Any CPU
- {55C0CE40-A9BA-4585-A96E-124470E219A8}.Release|Any CPU.ActiveCfg = Release|Any CPU
- {55C0CE40-A9BA-4585-A96E-124470E219A8}.Release|Any CPU.Build.0 = Release|Any CPU
- {55C0CE40-A9BA-4585-A96E-124470E219A8}.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/Syncfusion_Dot_NET_MAUI_Column_Charts/ColumnChartDemo/MainPage.xaml b/Syncfusion_Dot_NET_MAUI_Column_Charts/ColumnChartDemo/MainPage.xaml
index 5bff435..eb622a6 100644
--- a/Syncfusion_Dot_NET_MAUI_Column_Charts/ColumnChartDemo/MainPage.xaml
+++ b/Syncfusion_Dot_NET_MAUI_Column_Charts/ColumnChartDemo/MainPage.xaml
@@ -5,13 +5,13 @@
xmlns:viewModel ="clr-namespace:ColumnChartDemo.ViewModel"
BackgroundColor="{DynamicResource PageBackgroundColor}">
-
+
-
+
diff --git a/Syncfusion_Dot_NET_MAUI_Column_Charts/ColumnChartDemo/Platforms/Android/AndroidManifest.xml b/Syncfusion_Dot_NET_MAUI_Column_Charts/ColumnChartDemo/Platforms/Android/AndroidManifest.xml
index c05d012..bdec9b5 100644
--- a/Syncfusion_Dot_NET_MAUI_Column_Charts/ColumnChartDemo/Platforms/Android/AndroidManifest.xml
+++ b/Syncfusion_Dot_NET_MAUI_Column_Charts/ColumnChartDemo/Platforms/Android/AndroidManifest.xml
@@ -1,6 +1,6 @@
-
+
\ No newline at end of file
diff --git a/Syncfusion_Dot_NET_MAUI_Column_Charts/ColumnChartDemo/Platforms/Android/MainActivity.cs b/Syncfusion_Dot_NET_MAUI_Column_Charts/ColumnChartDemo/Platforms/Android/MainActivity.cs
index 7211fa7..8d15b11 100644
--- a/Syncfusion_Dot_NET_MAUI_Column_Charts/ColumnChartDemo/Platforms/Android/MainActivity.cs
+++ b/Syncfusion_Dot_NET_MAUI_Column_Charts/ColumnChartDemo/Platforms/Android/MainActivity.cs
@@ -2,9 +2,10 @@
using Android.Content.PM;
using Android.OS;
-namespace ColumnChartDemo;
-
-[Activity(Theme = "@style/Maui.SplashTheme", MainLauncher = true, ConfigurationChanges = ConfigChanges.ScreenSize | ConfigChanges.Orientation | ConfigChanges.UiMode | ConfigChanges.ScreenLayout | ConfigChanges.SmallestScreenSize)]
-public class MainActivity : MauiAppCompatActivity
+namespace ColumnChartDemo
{
+ [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/Syncfusion_Dot_NET_MAUI_Column_Charts/ColumnChartDemo/Platforms/Android/MainApplication.cs b/Syncfusion_Dot_NET_MAUI_Column_Charts/ColumnChartDemo/Platforms/Android/MainApplication.cs
index 1b9b4f4..1b42704 100644
--- a/Syncfusion_Dot_NET_MAUI_Column_Charts/ColumnChartDemo/Platforms/Android/MainApplication.cs
+++ b/Syncfusion_Dot_NET_MAUI_Column_Charts/ColumnChartDemo/Platforms/Android/MainApplication.cs
@@ -1,15 +1,16 @@
using Android.App;
using Android.Runtime;
-namespace ColumnChartDemo;
-
-[Application]
-public class MainApplication : MauiApplication
+namespace ColumnChartDemo
{
- 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/Syncfusion_Dot_NET_MAUI_Column_Charts/ColumnChartDemo/Platforms/MacCatalyst/AppDelegate.cs b/Syncfusion_Dot_NET_MAUI_Column_Charts/ColumnChartDemo/Platforms/MacCatalyst/AppDelegate.cs
index bccdb1f..22df5a7 100644
--- a/Syncfusion_Dot_NET_MAUI_Column_Charts/ColumnChartDemo/Platforms/MacCatalyst/AppDelegate.cs
+++ b/Syncfusion_Dot_NET_MAUI_Column_Charts/ColumnChartDemo/Platforms/MacCatalyst/AppDelegate.cs
@@ -1,9 +1,10 @@
using Foundation;
-namespace ColumnChartDemo;
-
-[Register("AppDelegate")]
-public class AppDelegate : MauiUIApplicationDelegate
+namespace ColumnChartDemo
{
- protected override MauiApp CreateMauiApp() => MauiProgram.CreateMauiApp();
+ [Register("AppDelegate")]
+ public class AppDelegate : MauiUIApplicationDelegate
+ {
+ protected override MauiApp CreateMauiApp() => MauiProgram.CreateMauiApp();
+ }
}
diff --git a/Syncfusion_Dot_NET_MAUI_Column_Charts/ColumnChartDemo/Platforms/MacCatalyst/Entitlements.plist b/Syncfusion_Dot_NET_MAUI_Column_Charts/ColumnChartDemo/Platforms/MacCatalyst/Entitlements.plist
new file mode 100644
index 0000000..de4adc9
--- /dev/null
+++ b/Syncfusion_Dot_NET_MAUI_Column_Charts/ColumnChartDemo/Platforms/MacCatalyst/Entitlements.plist
@@ -0,0 +1,14 @@
+
+
+
+
+
+
+ com.apple.security.app-sandbox
+
+
+ com.apple.security.network.client
+
+
+
+
diff --git a/Syncfusion_Dot_NET_MAUI_Column_Charts/ColumnChartDemo/Platforms/MacCatalyst/Info.plist b/Syncfusion_Dot_NET_MAUI_Column_Charts/ColumnChartDemo/Platforms/MacCatalyst/Info.plist
index 0690e47..f24aacc 100644
--- a/Syncfusion_Dot_NET_MAUI_Column_Charts/ColumnChartDemo/Platforms/MacCatalyst/Info.plist
+++ b/Syncfusion_Dot_NET_MAUI_Column_Charts/ColumnChartDemo/Platforms/MacCatalyst/Info.plist
@@ -2,9 +2,17 @@
+
+
+
+
+
+
+
+
+
UIDeviceFamily
- 1
2
UIRequiredDeviceCapabilities
diff --git a/Syncfusion_Dot_NET_MAUI_Column_Charts/ColumnChartDemo/Platforms/MacCatalyst/Program.cs b/Syncfusion_Dot_NET_MAUI_Column_Charts/ColumnChartDemo/Platforms/MacCatalyst/Program.cs
index c88f4d1..4989611 100644
--- a/Syncfusion_Dot_NET_MAUI_Column_Charts/ColumnChartDemo/Platforms/MacCatalyst/Program.cs
+++ b/Syncfusion_Dot_NET_MAUI_Column_Charts/ColumnChartDemo/Platforms/MacCatalyst/Program.cs
@@ -1,15 +1,16 @@
using ObjCRuntime;
using UIKit;
-namespace ColumnChartDemo;
-
-public class Program
+namespace ColumnChartDemo
{
- // 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/Syncfusion_Dot_NET_MAUI_Column_Charts/ColumnChartDemo/Platforms/Tizen/Main.cs b/Syncfusion_Dot_NET_MAUI_Column_Charts/ColumnChartDemo/Platforms/Tizen/Main.cs
new file mode 100644
index 0000000..6e9fe73
--- /dev/null
+++ b/Syncfusion_Dot_NET_MAUI_Column_Charts/ColumnChartDemo/Platforms/Tizen/Main.cs
@@ -0,0 +1,17 @@
+using System;
+using Microsoft.Maui;
+using Microsoft.Maui.Hosting;
+
+namespace ColumnChartDemo
+{
+ internal class Program : MauiApplication
+ {
+ protected override MauiApp CreateMauiApp() => MauiProgram.CreateMauiApp();
+
+ static void Main(string[] args)
+ {
+ var app = new Program();
+ app.Run(args);
+ }
+ }
+}
diff --git a/Syncfusion_Dot_NET_MAUI_Column_Charts/ColumnChartDemo/Platforms/Tizen/tizen-manifest.xml b/Syncfusion_Dot_NET_MAUI_Column_Charts/ColumnChartDemo/Platforms/Tizen/tizen-manifest.xml
new file mode 100644
index 0000000..17897c4
--- /dev/null
+++ b/Syncfusion_Dot_NET_MAUI_Column_Charts/ColumnChartDemo/Platforms/Tizen/tizen-manifest.xml
@@ -0,0 +1,15 @@
+
+
+
+
+
+ maui-appicon-placeholder
+
+
+
+
+ http://tizen.org/privilege/internet
+
+
+
+
\ No newline at end of file
diff --git a/Syncfusion_Dot_NET_MAUI_Column_Charts/ColumnChartDemo/Platforms/Windows/App.xaml.cs b/Syncfusion_Dot_NET_MAUI_Column_Charts/ColumnChartDemo/Platforms/Windows/App.xaml.cs
index 6e85d1f..fee0883 100644
--- a/Syncfusion_Dot_NET_MAUI_Column_Charts/ColumnChartDemo/Platforms/Windows/App.xaml.cs
+++ b/Syncfusion_Dot_NET_MAUI_Column_Charts/ColumnChartDemo/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 ColumnChartDemo.WinUI;
-
-///
-/// Provides application-specific behavior to supplement the default Application class.
-///
-public partial class App : MauiWinUIApplication
+namespace ColumnChartDemo.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().
+ /// Provides application-specific behavior to supplement the default Application class.
///
- public App()
+ public partial class App : MauiWinUIApplication
{
- this.InitializeComponent();
+ ///
+ /// 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/Syncfusion_Dot_NET_MAUI_Column_Charts/ColumnChartDemo/Platforms/Windows/Package.appxmanifest b/Syncfusion_Dot_NET_MAUI_Column_Charts/ColumnChartDemo/Platforms/Windows/Package.appxmanifest
index 87b1900..7483d3c 100644
--- a/Syncfusion_Dot_NET_MAUI_Column_Charts/ColumnChartDemo/Platforms/Windows/Package.appxmanifest
+++ b/Syncfusion_Dot_NET_MAUI_Column_Charts/ColumnChartDemo/Platforms/Windows/Package.appxmanifest
@@ -2,13 +2,18 @@
-
+
+
+
+ $placeholder$
User Name
+ $placeholder$.png
@@ -22,7 +27,15 @@
-
+
+
+
+
diff --git a/Syncfusion_Dot_NET_MAUI_Column_Charts/ColumnChartDemo/Platforms/iOS/AppDelegate.cs b/Syncfusion_Dot_NET_MAUI_Column_Charts/ColumnChartDemo/Platforms/iOS/AppDelegate.cs
index bccdb1f..22df5a7 100644
--- a/Syncfusion_Dot_NET_MAUI_Column_Charts/ColumnChartDemo/Platforms/iOS/AppDelegate.cs
+++ b/Syncfusion_Dot_NET_MAUI_Column_Charts/ColumnChartDemo/Platforms/iOS/AppDelegate.cs
@@ -1,9 +1,10 @@
using Foundation;
-namespace ColumnChartDemo;
-
-[Register("AppDelegate")]
-public class AppDelegate : MauiUIApplicationDelegate
+namespace ColumnChartDemo
{
- protected override MauiApp CreateMauiApp() => MauiProgram.CreateMauiApp();
+ [Register("AppDelegate")]
+ public class AppDelegate : MauiUIApplicationDelegate
+ {
+ protected override MauiApp CreateMauiApp() => MauiProgram.CreateMauiApp();
+ }
}
diff --git a/Syncfusion_Dot_NET_MAUI_Column_Charts/ColumnChartDemo/Platforms/iOS/Program.cs b/Syncfusion_Dot_NET_MAUI_Column_Charts/ColumnChartDemo/Platforms/iOS/Program.cs
index c88f4d1..4989611 100644
--- a/Syncfusion_Dot_NET_MAUI_Column_Charts/ColumnChartDemo/Platforms/iOS/Program.cs
+++ b/Syncfusion_Dot_NET_MAUI_Column_Charts/ColumnChartDemo/Platforms/iOS/Program.cs
@@ -1,15 +1,16 @@
using ObjCRuntime;
using UIKit;
-namespace ColumnChartDemo;
-
-public class Program
+namespace ColumnChartDemo
{
- // 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/Syncfusion_Dot_NET_MAUI_Column_Charts/ColumnChartDemo/Platforms/iOS/Resources/PrivacyInfo.xcprivacy b/Syncfusion_Dot_NET_MAUI_Column_Charts/ColumnChartDemo/Platforms/iOS/Resources/PrivacyInfo.xcprivacy
new file mode 100644
index 0000000..24ab3b4
--- /dev/null
+++ b/Syncfusion_Dot_NET_MAUI_Column_Charts/ColumnChartDemo/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/Syncfusion_Dot_NET_MAUI_Column_Charts/ColumnChartDemo/Properties/launchSettings.json b/Syncfusion_Dot_NET_MAUI_Column_Charts/ColumnChartDemo/Properties/launchSettings.json
index c16206a..f4c6c8d 100644
--- a/Syncfusion_Dot_NET_MAUI_Column_Charts/ColumnChartDemo/Properties/launchSettings.json
+++ b/Syncfusion_Dot_NET_MAUI_Column_Charts/ColumnChartDemo/Properties/launchSettings.json
@@ -1,7 +1,7 @@
{
"profiles": {
"Windows Machine": {
- "commandName": "MsixPackage",
+ "commandName": "Project",
"nativeDebugging": false
}
}
diff --git a/Syncfusion_Dot_NET_MAUI_Column_Charts/ColumnChartDemo/Resources/appicon.svg b/Syncfusion_Dot_NET_MAUI_Column_Charts/ColumnChartDemo/Resources/AppIcon/appicon.svg
similarity index 98%
rename from Syncfusion_Dot_NET_MAUI_Column_Charts/ColumnChartDemo/Resources/appicon.svg
rename to Syncfusion_Dot_NET_MAUI_Column_Charts/ColumnChartDemo/Resources/AppIcon/appicon.svg
index 5f04fcf..9d63b65 100644
--- a/Syncfusion_Dot_NET_MAUI_Column_Charts/ColumnChartDemo/Resources/appicon.svg
+++ b/Syncfusion_Dot_NET_MAUI_Column_Charts/ColumnChartDemo/Resources/AppIcon/appicon.svg
@@ -1,4 +1,4 @@
-
-