-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
c638187
commit 427b785
Showing
20 changed files
with
107 additions
and
107 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
...ingStarted/GettingStarted/Model/Person.cs → ...arted/GettingStarted/Model/PersonModel.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
18 changes: 18 additions & 0 deletions
18
CartesianChart/GettingStarted/GettingStarted/ViewModel/PersonViewModel.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
namespace GettingStarted | ||
{ | ||
public class PersonViewModel | ||
{ | ||
public List<PersonModel> Data { get; set; } | ||
public PersonViewModel() | ||
{ | ||
Data = new List<PersonModel>() | ||
{ | ||
new PersonModel { Name = "David", Height = 170 }, | ||
new PersonModel { Name = "Michael", Height = 96 }, | ||
new PersonModel { Name = "Steve", Height = 65 }, | ||
new PersonModel { Name = "Joel", Height = 182 }, | ||
new PersonModel { Name = "Bob", Height = 134 } | ||
}; | ||
} | ||
} | ||
} |
18 changes: 0 additions & 18 deletions
18
CartesianChart/GettingStarted/GettingStarted/ViewModel/ViewModel.cs
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
...tingStarted/GettingStarted/Model/Sales.cs → ...tarted/GettingStarted/Model/SalesModel.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
19 changes: 19 additions & 0 deletions
19
CircularChart/GettingStarted/GettingStarted/ViewModel/SalesViewModel.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
namespace GettingStarted | ||
{ | ||
public class SalesViewModel | ||
{ | ||
public List<SalesModel> Data { get; set; } | ||
|
||
public SalesViewModel() | ||
{ | ||
Data = new List<SalesModel>() | ||
{ | ||
new SalesModel(){Product = "iPad", SalesRate = 70}, | ||
new SalesModel(){Product = "iPhone", SalesRate = 65}, | ||
new SalesModel(){Product = "MacBook", SalesRate = 60}, | ||
new SalesModel(){Product = "Mac", SalesRate = 55}, | ||
new SalesModel(){Product = "Others", SalesRate = 50}, | ||
}; | ||
} | ||
} | ||
} |
19 changes: 0 additions & 19 deletions
19
CircularChart/GettingStarted/GettingStarted/ViewModel/ViewModel.cs
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
...Started/GettingStarted/Model/Admission.cs → ...ed/GettingStarted/Model/AdmissionModel.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
19 changes: 19 additions & 0 deletions
19
FunnelChart/GettingStarted/GettingStarted/ViewModel/AdmissionViewModel.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
namespace GettingStarted | ||
{ | ||
public class AdmissionViewModel | ||
{ | ||
public List<AdmissionModel> Data { get; set; } | ||
|
||
public AdmissionViewModel() | ||
{ | ||
Data = new List<AdmissionModel>() | ||
{ | ||
new AdmissionModel() {XValue = "Enrolled", YValue=175}, | ||
new AdmissionModel() {XValue = "Admits", YValue=190}, | ||
new AdmissionModel() {XValue = "Applicants", YValue=245}, | ||
new AdmissionModel() {XValue = "Inquiries ", YValue=290}, | ||
new AdmissionModel() {XValue = "Prospects ", YValue=320}, | ||
}; | ||
} | ||
} | ||
} |
19 changes: 0 additions & 19 deletions
19
FunnelChart/GettingStarted/GettingStarted/ViewModel/ChartViewModel.cs
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
...tingStarted/GettingStarted/Model/Model.cs → ...tarted/GettingStarted/Model/PlantModel.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
23 changes: 23 additions & 0 deletions
23
PolarChart/GettingStarted/GettingStarted/ViewModel/PlantViewModel.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
using System.Collections.ObjectModel; | ||
|
||
namespace GettingStarted | ||
{ | ||
public class PlantViewModel | ||
{ | ||
public ObservableCollection<PlantModel> PlantDetails { get; set; } | ||
public PlantViewModel() | ||
{ | ||
PlantDetails = new ObservableCollection<PlantModel>() | ||
{ | ||
new PlantModel(){ Direction = "North", Tree = 80, Flower = 42, Weed = 63}, | ||
new PlantModel(){ Direction = "NorthEast", Tree = 85, Flower = 40, Weed = 70}, | ||
new PlantModel(){ Direction = "East", Tree = 78 , Flower = 47, Weed = 65}, | ||
new PlantModel(){ Direction = "SouthEast", Tree = 90 , Flower = 40, Weed = 70}, | ||
new PlantModel(){ Direction = "South", Tree = 78 , Flower = 27, Weed = 47}, | ||
new PlantModel(){ Direction = "SouthWest", Tree = 83 , Flower = 45, Weed = 65}, | ||
new PlantModel(){ Direction = "West", Tree = 79 , Flower = 40, Weed = 58}, | ||
new PlantModel(){ Direction = "NorthWest", Tree = 88 , Flower = 38, Weed = 73} | ||
}; | ||
} | ||
} | ||
} |
23 changes: 0 additions & 23 deletions
23
PolarChart/GettingStarted/GettingStarted/ViewModel/ViewModel.cs
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
...tingStarted/GettingStarted/Model/Stage.cs → ...tarted/GettingStarted/Model/StageModel.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
18 changes: 0 additions & 18 deletions
18
PyramidChart/GettingStarted/GettingStarted/ViewModel/ChartViewModel.cs
This file was deleted.
Oops, something went wrong.
18 changes: 18 additions & 0 deletions
18
PyramidChart/GettingStarted/GettingStarted/ViewModel/StageViewModel.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
namespace GettingStarted | ||
{ | ||
public class StageViewModel | ||
{ | ||
public List<StageModel> Data { get; set; } | ||
|
||
public StageViewModel() | ||
{ | ||
Data = new List<StageModel>() | ||
{ | ||
new StageModel(){Name = "Stage A", Value=12}, | ||
new StageModel(){Name = "Stage B", Value=21}, | ||
new StageModel(){Name = "Stage C", Value=29}, | ||
new StageModel(){Name = "Stage D", Value=37}, | ||
}; | ||
} | ||
} | ||
} |