From f9f78642484dea1f288c7bb00857703cf1623c63 Mon Sep 17 00:00:00 2001
From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com>
Date: Thu, 21 May 2026 17:00:34 +0000
Subject: [PATCH] Add RangeBarSeries demo to IGDataChart category gallery
Agent-Logs-Url: https://github.com/Infragistics/wpf-samples/sessions/37871793-114f-4670-86e8-9c2e0e28692b
Co-authored-by: gedinakova <16817847+gedinakova@users.noreply.github.com>
---
.../Resources/DataChartStrings.Designer.cs | 9 +++++++
.../Resources/DataChartStrings.ja.resx | 6 ++++-
.../Resources/DataChartStrings.resx | 6 ++++-
.../Display/Series/GalleryCategorySeries.xaml | 27 +++++++++++++++++++
.../Series/GalleryCategorySeries.xaml.cs | 1 +
5 files changed, 47 insertions(+), 2 deletions(-)
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);