diff --git a/Examples/Chart.UWP/Gallery/Area/FirstLook.xaml.cs b/Examples/Chart.UWP/Gallery/Area/FirstLook.xaml.cs index f35e0e8..6391a78 100644 --- a/Examples/Chart.UWP/Gallery/Area/FirstLook.xaml.cs +++ b/Examples/Chart.UWP/Gallery/Area/FirstLook.xaml.cs @@ -21,7 +21,7 @@ namespace Chart.Gallery.Area model.Data1 = ChartGalleryModel.GetCategoricalData(); model.Data2 = ChartGalleryModel.GetCategoricalData(); model.SelectedItem = model.Items[0]; - model.Title = "MONTLY SALES REVENUE, 2011"; + model.Title = "MONTHLY SALES REVENUE, 2011"; this.DataContext = model; } diff --git a/Examples/Chart.UWP/Gallery/Line/FirstLook.xaml.cs b/Examples/Chart.UWP/Gallery/Line/FirstLook.xaml.cs index b270305..6897f51 100644 --- a/Examples/Chart.UWP/Gallery/Line/FirstLook.xaml.cs +++ b/Examples/Chart.UWP/Gallery/Line/FirstLook.xaml.cs @@ -21,7 +21,7 @@ namespace Chart.Gallery.Line model.Data1 = ChartGalleryModel.GetCategoricalData(); model.Data2 = ChartGalleryModel.GetCategoricalData(); model.SelectedItem = model.Items[0]; - model.Title = "MONTLY SALES REVENUE, 2011"; + model.Title = "MONTHLY SALES REVENUE, 2011"; this.DataContext = model; } diff --git a/Examples/Chart.UWP/Gallery/Step/FirstLook.xaml.cs b/Examples/Chart.UWP/Gallery/Step/FirstLook.xaml.cs index 1c23429..ea51e28 100644 --- a/Examples/Chart.UWP/Gallery/Step/FirstLook.xaml.cs +++ b/Examples/Chart.UWP/Gallery/Step/FirstLook.xaml.cs @@ -21,7 +21,7 @@ namespace Chart.Gallery.Step model.Data1 = ChartGalleryModel.GetStepSeriesData(true); model.Data2 = ChartGalleryModel.GetStepSeriesData(false); model.SelectedItem = model.Items[0]; - model.Title = "MONTLY SALES REVENUE, 2010"; + model.Title = "MONTHLY SALES REVENUE, 2010"; this.DataContext = model; }