From c0dae74bb6c4c9b2539339221d394ee680372579 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E9=97=AB=E9=A9=9A=E9=8F=B5?= Date: Wed, 24 Jul 2024 23:02:42 +0800 Subject: [PATCH] Update ChartLineExample.xaml.cs --- .../ExampleViews/ChartLineExample.xaml.cs | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) 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);