Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Binary file modified Getting_start_images/MAUI_polar_chart.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
12 changes: 6 additions & 6 deletions Polar_chart_sample/PolarChartSample/ViewModel.cs
Original file line number Diff line number Diff line change
Expand Up @@ -15,13 +15,13 @@ public ViewModel()
PlantDetails = new ObservableCollection<Model>()
{
new Model(){ Direction = "North", Tree = 80, Flower = 42, Weed = 63},
new Model(){ Direction = "NorthWest", Tree = 85, Flower = 40, Weed = 70},
new Model(){ Direction = "West", Tree = 78 , Flower = 47, Weed = 65},
new Model(){ Direction = "SouthWest", Tree = 90 , Flower = 40, Weed = 70},
new Model(){ Direction = "NorthEast", Tree = 85, Flower = 40, Weed = 70},
new Model(){ Direction = "East", Tree = 78 , Flower = 47, Weed = 65},
new Model(){ Direction = "SouthEast", Tree = 90 , Flower = 40, Weed = 70},
new Model(){ Direction = "South", Tree = 78 , Flower = 27, Weed = 47},
new Model(){ Direction = "SouthEast", Tree = 83 , Flower = 45, Weed = 65},
new Model(){ Direction = "East", Tree = 79 , Flower = 40, Weed = 58},
new Model(){ Direction = "NorthEast", Tree = 88 , Flower = 38, Weed = 73}
new Model(){ Direction = "SouthWest", Tree = 83 , Flower = 45, Weed = 65},
new Model(){ Direction = "West", Tree = 79 , Flower = 40, Weed = 58},
new Model(){ Direction = "NorthWest", Tree = 88 , Flower = 38, Weed = 73}
};
}
}
Expand Down
16 changes: 9 additions & 7 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -98,13 +98,13 @@ Next, create a view model class and initialize a list of `PlantData` objects as
PlantDetails = new List<PlantData>()
{
new PlantData(){ Direction = "North", Tree = 80, Flower = 42, Weed = 63},
new PlantData(){ Direction = "NorthWest", Tree = 85, Flower = 40, Weed = 70},
new PlantData(){ Direction = "West", Tree = 78 , Flower = 47, Weed = 65},
new PlantData(){ Direction = "SouthWest", Tree = 90 , Flower = 40, Weed = 70},
new PlantData(){ Direction = "NorthEast", Tree = 85, Flower = 40, Weed = 70},
new PlantData(){ Direction = "East", Tree = 78 , Flower = 47, Weed = 65},
new PlantData(){ Direction = "SouthEast", Tree = 90 , Flower = 40, Weed = 70},
new PlantData(){ Direction = "South", Tree = 78 , Flower = 27, Weed = 47},
new PlantData(){ Direction = "SouthEast", Tree = 83 , Flower = 45, Weed = 65},
new PlantData(){ Direction = "East", Tree = 79 , Flower = 40, Weed = 58},
new PlantData(){ Direction = "NorthEast", Tree = 88 , Flower = 38, Weed = 73}
new PlantData(){ Direction = "SouthWest", Tree = 83 , Flower = 45, Weed = 65},
new PlantData(){ Direction = "West", Tree = 79 , Flower = 40, Weed = 58},
new PlantData(){ Direction = "NorthWest", Tree = 88 , Flower = 38, Weed = 73}
};
}
}
Expand Down Expand Up @@ -465,5 +465,7 @@ The following code example gives you the complete code of above configurations.

The following chart is created as a result of the previous codes.

<img width="554" alt="polar-README" src="https://github.com/SyncfusionExamples/Creating-a-Getting-Started-application-for-NET-MAUI-Polar-Chart/assets/103025761/01e0c860-be28-4051-b9cb-1d87a4532f07">
![MAUI_polar_chartdemo](https://github.com/user-attachments/assets/9903e1f6-0410-41f2-a66f-4c5433fba84f)