diff --git a/Examples/IGDataChart/Resources/DataChartStrings.Designer.cs b/Examples/IGDataChart/Resources/DataChartStrings.Designer.cs index 2020b90f..877dcb08 100644 --- a/Examples/IGDataChart/Resources/DataChartStrings.Designer.cs +++ b/Examples/IGDataChart/Resources/DataChartStrings.Designer.cs @@ -1905,6 +1905,15 @@ public static string XWDC_CategorySeries_RangeColumnSeries { } } + /// + /// Looks up a localized string similar to Range Bar Series. + /// + public static string XWDC_CategorySeries_RangeBarSeries { + get { + return ResourceManager.GetString("XWDC_CategorySeries_RangeBarSeries", resourceCulture); + } + } + /// /// Looks up a localized string similar to Spline Area Series. /// diff --git a/Examples/IGDataChart/Resources/DataChartStrings.ja.resx b/Examples/IGDataChart/Resources/DataChartStrings.ja.resx index fe9b82c2..dfe53bfe 100644 --- a/Examples/IGDataChart/Resources/DataChartStrings.ja.resx +++ b/Examples/IGDataChart/Resources/DataChartStrings.ja.resx @@ -250,6 +250,10 @@ 範囲列シリーズ Category Series type + + 範囲棒シリーズ + Category Series type + スプライン領域シリーズ Category Series type @@ -1900,4 +1904,4 @@ ハイライト値 - \ No newline at end of file + diff --git a/Examples/IGDataChart/Resources/DataChartStrings.resx b/Examples/IGDataChart/Resources/DataChartStrings.resx index bf5528ef..65c1c66e 100644 --- a/Examples/IGDataChart/Resources/DataChartStrings.resx +++ b/Examples/IGDataChart/Resources/DataChartStrings.resx @@ -224,6 +224,10 @@ Range Column Series Category Series type + + Range Bar Series + Category Series type + Spline Area Series Category Series type @@ -1967,4 +1971,4 @@ Highlight Value - \ No newline at end of file + diff --git a/Examples/IGDataChart/Samples/Display/Series/GalleryCategorySeries.xaml b/Examples/IGDataChart/Samples/Display/Series/GalleryCategorySeries.xaml index 7b9af655..19cc9984 100644 --- a/Examples/IGDataChart/Samples/Display/Series/GalleryCategorySeries.xaml +++ b/Examples/IGDataChart/Samples/Display/Series/GalleryCategorySeries.xaml @@ -427,6 +427,33 @@ + + + + + + + + + + + + + + + + + diff --git a/Examples/IGDataChart/Samples/Display/Series/GalleryCategorySeries.xaml.cs b/Examples/IGDataChart/Samples/Display/Series/GalleryCategorySeries.xaml.cs index 73a3bc0c..66d0a5c2 100644 --- a/Examples/IGDataChart/Samples/Display/Series/GalleryCategorySeries.xaml.cs +++ b/Examples/IGDataChart/Samples/Display/Series/GalleryCategorySeries.xaml.cs @@ -32,6 +32,7 @@ private void InitializeSample() _vm.AddSample(this.StepAreaChart, DataChartStrings.XWDC_CategorySeries_StepAreaSeries); _vm.AddSample(this.RangeColumnChart, DataChartStrings.XWDC_CategorySeries_RangeColumnSeries); _vm.AddSample(this.RangeAreaChart, DataChartStrings.XWDC_CategorySeries_RangeAreaSeries); + _vm.AddSample(this.RangeBarChart, DataChartStrings.XWDC_CategorySeries_RangeBarSeries); _vm.AddSample(this.WaterfallChart, DataChartStrings.XWDC_CategorySeries_WaterfallSeries); _vm.AddSample(this.BarChart, DataChartStrings.XWDC_CategorySeries_BarSeries);