diff --git a/src/WPFDevelopers.Samples.Shared/ExampleViews/ChartLineExample.xaml.cs b/src/WPFDevelopers.Samples.Shared/ExampleViews/ChartLineExample.xaml.cs index 6da42b8a..57da0420 100644 --- a/src/WPFDevelopers.Samples.Shared/ExampleViews/ChartLineExample.xaml.cs +++ b/src/WPFDevelopers.Samples.Shared/ExampleViews/ChartLineExample.xaml.cs @@ -30,19 +30,19 @@ public ChartLineExample() new KeyValuePair("Tue", 530), new KeyValuePair("Wed", 1060), new KeyValuePair("Thu", 140), - new KeyValuePair("Fri", 8000) , + new KeyValuePair("Fri", 8000.12) , new KeyValuePair("Sat", 200) , new KeyValuePair("Sun", 300) , }; var models2 = new[] { - new KeyValuePair("(1)月", 120), - new KeyValuePair("(2)月", 170), - new KeyValuePair("(3)月", 30), - new KeyValuePair("(4)月", 200), - new KeyValuePair("(5)月", 100) , - new KeyValuePair("(6)月", 180) , - new KeyValuePair("(7)月", 90) , + new KeyValuePair("Bing", 120), + new KeyValuePair("Google", 170), + new KeyValuePair("Baidu", 30), + new KeyValuePair("Github", 200), + new KeyValuePair("Stack Overflow", 100) , + new KeyValuePair("Runoob", 180) , + new KeyValuePair("Open AI", 90) , }; keyValues.Add("1", models1); keyValues.Add("2", models2);