Skip to content

Commit 2ba8824

Browse files
resolved compilation error
1 parent f8df7ff commit 2ba8824

File tree

5 files changed

+37
-32
lines changed

5 files changed

+37
-32
lines changed

ChartAxisDemo/AppShell.xaml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,4 +6,9 @@
66
xmlns:local="clr-namespace:ChartAxisDemo"
77
Shell.FlyoutBehavior="Disabled">
88

9+
<ShellContent
10+
Title="Home"
11+
ContentTemplate="{DataTemplate local:MainPage}"
12+
Route="MainPage" />
13+
914
</Shell>

ChartAxisDemo/ChartAxisDemo.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616

1717
<!-- App Identifier -->
1818
<ApplicationId>com.companyname.chartaxisdemo</ApplicationId>
19-
<ApplicationIdGuid>3081FB79-818F-4208-B12E-CC0568BBBFB7</ApplicationIdGuid>
19+
<ApplicationIdGuid>C02D7503-2557-4DEC-B364-AFF1D7D5B06D</ApplicationIdGuid>
2020

2121
<!-- Versions -->
2222
<ApplicationDisplayVersion>1.0</ApplicationDisplayVersion>

ChartAxisDemo/ChartAxisDemo.sln

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -3,20 +3,20 @@ Microsoft Visual Studio Solution File, Format Version 12.00
33
# Visual Studio Version 17
44
VisualStudioVersion = 17.0.31611.283
55
MinimumVisualStudioVersion = 10.0.40219.1
6-
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "ChartAxisDemo", "ChartAxisDemo.csproj", "{95776C65-11FC-423F-9F57-F41E6383412F}"
6+
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "ChartAxisDemo", "ChartAxisDemo.csproj", "{52894750-6BC3-4938-B901-3AC7D8BAB8F2}"
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-
{95776C65-11FC-423F-9F57-F41E6383412F}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
15-
{95776C65-11FC-423F-9F57-F41E6383412F}.Debug|Any CPU.Build.0 = Debug|Any CPU
16-
{95776C65-11FC-423F-9F57-F41E6383412F}.Debug|Any CPU.Deploy.0 = Debug|Any CPU
17-
{95776C65-11FC-423F-9F57-F41E6383412F}.Release|Any CPU.ActiveCfg = Release|Any CPU
18-
{95776C65-11FC-423F-9F57-F41E6383412F}.Release|Any CPU.Build.0 = Release|Any CPU
19-
{95776C65-11FC-423F-9F57-F41E6383412F}.Release|Any CPU.Deploy.0 = Release|Any CPU
14+
{52894750-6BC3-4938-B901-3AC7D8BAB8F2}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
15+
{52894750-6BC3-4938-B901-3AC7D8BAB8F2}.Debug|Any CPU.Build.0 = Debug|Any CPU
16+
{52894750-6BC3-4938-B901-3AC7D8BAB8F2}.Debug|Any CPU.Deploy.0 = Debug|Any CPU
17+
{52894750-6BC3-4938-B901-3AC7D8BAB8F2}.Release|Any CPU.ActiveCfg = Release|Any CPU
18+
{52894750-6BC3-4938-B901-3AC7D8BAB8F2}.Release|Any CPU.Build.0 = Release|Any CPU
19+
{52894750-6BC3-4938-B901-3AC7D8BAB8F2}.Release|Any CPU.Deploy.0 = Release|Any CPU
2020
EndGlobalSection
2121
GlobalSection(SolutionProperties) = preSolution
2222
HideSolutionNode = FALSE

ChartAxisDemo/Model/Model.cs

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -7,15 +7,15 @@
77
namespace ChartAxisDemo
88
{
99
public class Model
10-
{
11-
public Model(string xValue, double yValue)
12-
{
13-
XValue = xValue;
14-
YValue = yValue;
15-
}
10+
{
11+
public Model(string xValue, double yValue)
12+
{
13+
XValue = xValue;
14+
YValue = yValue;
15+
}
1616

17-
public string XValue { get; set; }
17+
public string XValue { get; set; }
1818

19-
public double YValue { get; set; }
20-
}
19+
public double YValue { get; set; }
20+
}
2121
}

ChartAxisDemo/ViewModel/ViewModel.cs

Lines changed: 15 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -8,20 +8,20 @@
88
namespace ChartAxisDemo
99
{
1010
public class ViewModel
11-
{
12-
public ObservableCollection<Model> Data { get; set; }
11+
{
12+
public ObservableCollection<Model> Data { get; set; }
1313

14-
public ViewModel()
15-
{
16-
Data = new ObservableCollection<Model>()
17-
{
18-
new Model("Naveen", 25000),
19-
new Model("John", 15000),
20-
new Model("James", 35000),
21-
new Model("Magesh", 20000),
22-
new Model("Karthi", 25000),
23-
new Model("Ram", 17000),
24-
};
25-
}
26-
}
14+
public ViewModel()
15+
{
16+
Data = new ObservableCollection<Model>()
17+
{
18+
new Model("Naveen", 25000),
19+
new Model("John", 15000),
20+
new Model("James", 35000),
21+
new Model("Magesh", 20000),
22+
new Model("Karthi", 25000),
23+
new Model("Ram", 17000),
24+
};
25+
}
26+
}
2727
}

0 commit comments

Comments
 (0)