Skip to content

Commit cd1bbec

Browse files
Merge pull request #2 from SyncfusionExamples/895065-Update-blog-sample-and-readme
Sample chart type modified
2 parents caa3b33 + 7c344be commit cd1bbec

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

61 files changed

+494
-322
lines changed

DoughnutChartWithDrillDown/DoughnutChart/MainPage.xaml

Lines changed: 0 additions & 85 deletions
This file was deleted.

DoughnutChartWithDrillDown/DoughnutChart/Model/DataModel.cs

Lines changed: 0 additions & 25 deletions
This file was deleted.
Binary file not shown.

DoughnutChartWithDrillDown/DoughnutChart/SecondaryPage.xaml

Lines changed: 0 additions & 51 deletions
This file was deleted.

DoughnutChartWithDrillDown/DoughnutChart/SecondaryPage.xaml.cs

Lines changed: 0 additions & 13 deletions
This file was deleted.

DoughnutChartWithDrillDown/DoughnutChart/ViewModel/DataViewModel.cs

Lines changed: 0 additions & 93 deletions
This file was deleted.
Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,27 +1,27 @@
11

22
Microsoft Visual Studio Solution File, Format Version 12.00
33
# Visual Studio Version 17
4-
VisualStudioVersion = 17.10.35013.160
4+
VisualStudioVersion = 17.9.34701.34
55
MinimumVisualStudioVersion = 10.0.40219.1
6-
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "DoughnutChart", "DoughnutChart\DoughnutChart.csproj", "{4FD7603D-239C-45BC-9F3C-F1828D8FAC3E}"
6+
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "DrillDownChart", "DrillDownChart\DrillDownChart.csproj", "{C7A1F1C8-2D12-4C3D-BE41-B34F770F85CD}"
77
EndProject
88
Global
99
GlobalSection(SolutionConfigurationPlatforms) = preSolution
1010
Debug|Any CPU = Debug|Any CPU
1111
Release|Any CPU = Release|Any CPU
1212
EndGlobalSection
1313
GlobalSection(ProjectConfigurationPlatforms) = postSolution
14-
{4FD7603D-239C-45BC-9F3C-F1828D8FAC3E}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
15-
{4FD7603D-239C-45BC-9F3C-F1828D8FAC3E}.Debug|Any CPU.Build.0 = Debug|Any CPU
16-
{4FD7603D-239C-45BC-9F3C-F1828D8FAC3E}.Debug|Any CPU.Deploy.0 = Debug|Any CPU
17-
{4FD7603D-239C-45BC-9F3C-F1828D8FAC3E}.Release|Any CPU.ActiveCfg = Release|Any CPU
18-
{4FD7603D-239C-45BC-9F3C-F1828D8FAC3E}.Release|Any CPU.Build.0 = Release|Any CPU
19-
{4FD7603D-239C-45BC-9F3C-F1828D8FAC3E}.Release|Any CPU.Deploy.0 = Release|Any CPU
14+
{C7A1F1C8-2D12-4C3D-BE41-B34F770F85CD}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
15+
{C7A1F1C8-2D12-4C3D-BE41-B34F770F85CD}.Debug|Any CPU.Build.0 = Debug|Any CPU
16+
{C7A1F1C8-2D12-4C3D-BE41-B34F770F85CD}.Debug|Any CPU.Deploy.0 = Debug|Any CPU
17+
{C7A1F1C8-2D12-4C3D-BE41-B34F770F85CD}.Release|Any CPU.ActiveCfg = Release|Any CPU
18+
{C7A1F1C8-2D12-4C3D-BE41-B34F770F85CD}.Release|Any CPU.Build.0 = Release|Any CPU
19+
{C7A1F1C8-2D12-4C3D-BE41-B34F770F85CD}.Release|Any CPU.Deploy.0 = Release|Any CPU
2020
EndGlobalSection
2121
GlobalSection(SolutionProperties) = preSolution
2222
HideSolutionNode = FALSE
2323
EndGlobalSection
2424
GlobalSection(ExtensibilityGlobals) = postSolution
25-
SolutionGuid = {F549FB43-CE95-40A3-9A56-72E1337BC5FA}
25+
SolutionGuid = {0D8DD2F6-7523-4676-BC2F-6156FEFCFE6E}
2626
EndGlobalSection
2727
EndGlobal

DoughnutChartWithDrillDown/DoughnutChart/App.xaml renamed to DrillDownChart/DrillDownChart/App.xaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
<?xml version = "1.0" encoding = "UTF-8" ?>
22
<Application xmlns="http://schemas.microsoft.com/dotnet/2021/maui"
33
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
4-
xmlns:local="clr-namespace:DoughnutChart"
5-
x:Class="DoughnutChart.App">
4+
xmlns:local="clr-namespace:DrillDownChart"
5+
x:Class="DrillDownChart.App">
66
<Application.Resources>
77
<ResourceDictionary>
88
<ResourceDictionary.MergedDictionaries>

DoughnutChartWithDrillDown/DoughnutChart/App.xaml.cs renamed to DrillDownChart/DrillDownChart/App.xaml.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
namespace DoughnutChart
1+
namespace DrillDownChart
22
{
33
public partial class App : Application
44
{

DoughnutChartWithDrillDown/DoughnutChart/AppShell.xaml renamed to DrillDownChart/DrillDownChart/AppShell.xaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
<?xml version="1.0" encoding="UTF-8" ?>
22
<Shell
3-
x:Class="DoughnutChart.AppShell"
3+
x:Class="DrillDownChart.AppShell"
44
xmlns="http://schemas.microsoft.com/dotnet/2021/maui"
55
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
6-
xmlns:local="clr-namespace:DoughnutChart"
6+
xmlns:local="clr-namespace:DrillDownChart"
77
Shell.FlyoutBehavior="Disabled"
8-
Title="DoughnutChart">
8+
Title="DrillDownChart">
99

1010
<ShellContent
1111
ContentTemplate="{DataTemplate local:MainPage}"

DoughnutChartWithDrillDown/DoughnutChart/AppShell.xaml.cs renamed to DrillDownChart/DrillDownChart/AppShell.xaml.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
namespace DoughnutChart
1+
namespace DrillDownChart
22
{
33
public partial class AppShell : Shell
44
{

0 commit comments

Comments
 (0)