Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
17 changes: 16 additions & 1 deletion topics/en/changelog.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,8 @@

This topic contains the following sections:

* <<Ref_25_2_59, 25.2.107 (March 2026)>>
* <<Ref_26_1, 26.1 (May 2026)>>
* <<Ref_25_2_107, 25.2.107 (March 2026)>>
* <<Ref_25_2_59, 25.2.59 (December 2025)>>
* <<Ref_25_2_45, 25.2.45 (November 2025)>>
* <<Ref_25_1_117, 25.1.117 (October 2025)>>
Expand All @@ -20,6 +21,20 @@ This topic contains the following sections:
* <<Ref_23_2_157,23.2.157 (April 2024)>>
* <<Ref_23_2, 23.2 (2023)>>

[[Ref_26_1]]

== 26.1 (May 2026)

=== New Chart Features

==== Range Bar Series

Added support for the link:{DataChartLink}.RangeBarSeries.html[RangeBarSeries], a new xamDataChart series type for rendering value ranges as horizontal bars. It is the bar-oriented counterpart to the link:{DataChartLink}.RangeColumnSeries.html[RangeColumnSeries] and uses a link:{DataChartLink}.NumericXAxis.html[NumericXAxis] together with a link:{DataChartLink}.CategoryYAxis.html[CategoryYAxis].

The following topic reviews this new series type in more detail:

- link:datachart-series-range-bar.html[Range Bar Series]

[[Ref_25_2_107]]

== 25.2.107 (March 2026)
Expand Down
68 changes: 68 additions & 0 deletions topics/en/datachart-series-range-bar.adoc
Original file line number Diff line number Diff line change
@@ -0,0 +1,68 @@
////
|metadata|
{
"name": "datachart-series-range-bar",
"controlName": [],
"tags": ["xamDataChart", "RangeBarSeries"],
"guid": "",
"buildFlags": [],
"createdOn": "2026-05-21T00:00:00Z"
}
|metadata|
////

= Range Bar Series

The link:{DataChartLink}.RangeBarSeries.html[RangeBarSeries] is a new xamDataChart series type that displays value ranges as horizontal bars. It is the bar-oriented counterpart to the link:{DataChartLink}.RangeColumnSeries.html[RangeColumnSeries].

== Requirements

To plot a `RangeBarSeries` in xamDataChart:

* Use a link:{DataChartLink}.NumericXAxis.html[NumericXAxis] for the value range on the X axis.
* Use a link:{DataChartLink}.CategoryYAxis.html[CategoryYAxis] for the category labels on the Y axis.
* Set the `LowMemberPath` and `HighMemberPath` properties to the data fields that define each range.

== Example

[source,xaml]
----
<ig:XamDataChart x:Name="DataChart">
<ig:XamDataChart.Axes>
<ig:NumericXAxis x:Name="xAxis" />
<ig:CategoryYAxis x:Name="yAxis"
ItemsSource="{Binding}"
Label="{}{Label}" />
</ig:XamDataChart.Axes>
<ig:XamDataChart.Series>
<ig:RangeBarSeries ItemsSource="{Binding}"
LowMemberPath="Low"
HighMemberPath="High"
XAxis="{Binding ElementName=xAxis}"
YAxis="{Binding ElementName=yAxis}"
Title="Range" />
</ig:XamDataChart.Series>
</ig:XamDataChart>
----

== Key Properties

[options="header", cols="a,a"]
|===
| Property | Description
| `HighMemberPath` | Specifies the path to the data column that contains the upper value for each bar.
| `LowMemberPath` | Specifies the path to the data column that contains the lower value for each bar.
| `XAxis` | Specifies the numeric X axis used to render the value range.
| `YAxis` | Specifies the category Y axis used to render the item labels.
| `RadiusX` | Sets the horizontal corner radius for the bar shape.
| `RadiusY` | Sets the vertical corner radius for the bar shape.
| `LowMemberAsLegendLabel` | Specifies the label shown before the low value in the data legend.
| `HighMemberAsLegendLabel` | Specifies the label shown before the high value in the data legend.
| `LowMemberAsLegendUnit` | Specifies the unit shown after the low value in the data legend.
| `HighMemberAsLegendUnit` | Specifies the unit shown after the high value in the data legend.
|===

== Related Topics

* link:whats-new-in-2026-volume-1.html[What’s New in 2026 Volume 1]
* link:datachart-datachart.html[xamDataChart]
Original file line number Diff line number Diff line change
Expand Up @@ -77,6 +77,8 @@ For example:

* link:{ApiPlatform}controls.charts.xamdatachart{ApiVersion}~infragistics.controls.charts.barseries_members.html[BarSeries]

* link:{ApiPlatform}controls.charts.xamdatachart{ApiVersion}~infragistics.controls.charts.rangebarseries_members.html[RangeBarSeries]

* link:{ApiPlatform}controls.charts.xamdatachart{ApiVersion}~infragistics.controls.charts.stackedbarseries_members.html[StackedBarSeries]

* link:{ApiPlatform}controls.charts.xamdatachart{ApiVersion}~infragistics.controls.charts.stacked100barseries_members.html[Stacked100BarSeries]
Expand Down
9 changes: 9 additions & 0 deletions topics/en/whats-new-in-2026-volume-1.adoc
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
= What’s New in 2026 Volume 1

=== Range Bar Series

The link:{DataChartLink}.RangeBarSeries.html[RangeBarSeries] is a new xamDataChart series type that displays value ranges as horizontal bars. It is the bar-oriented counterpart to the link:{DataChartLink}.RangeColumnSeries.html[RangeColumnSeries].

The following topic reviews this new series type in more detail:

- link:datachart-series-range-bar.html[Range Bar Series]
6 changes: 5 additions & 1 deletion topics/en/wpf-whats-new.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,10 @@

Find out what new features have been added to recent releases of the Ultimate UI for WPF product.

== link:whats-new-in-2026-volume-1.html[What’s New in 2026 Volume 1]

Review the 2026 Volume 1 feature highlights, including the new Range Bar Series for xamDataChart.

== link:wpf-revision-history.html[Revision History]

Need to find out if or when a specific feature was added to our controls? Use this section to quickly and easily track down any new feature since our 2007 Volume 2 release.
Need to find out if or when a specific feature was added to our controls? Use this section to quickly and easily track down any new feature since our 2007 Volume 2 release.
15 changes: 15 additions & 0 deletions topics/ja/changelog.ja-JP.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@

このトピックは、以下のセクションで構成されます。

* <<Ref_26_1, 26.1 (2026 年 5 月)>>
* <<Ref_25_2_107, 25.2.107 (2026 年 3 月)>>
* <<Ref_25_2_59, 25.2.59 (2025 年 12 月)>>
* <<Ref_25_2_45, 25.2.45 (2025 年 11 月)>>
Expand All @@ -20,6 +21,20 @@
* <<Ref_23_2_157,23.2.157 (2024 年 4 月)>>
* <<Ref_23_2, 23.2 (2023 年)>>

[[Ref_26_1]]

== 26.1 (2026 年 5 月)

=== 新しいチャート機能

==== Range Bar シリーズ

link:{DataChartLink}.RangeBarSeries.html[RangeBarSeries] のサポートが追加されました。これは、値の範囲を水平バーとして描画する新しい xamDataChart シリーズ タイプです。link:{DataChartLink}.RangeColumnSeries.html[RangeColumnSeries] のバー向きの対応シリーズであり、link:{DataChartLink}.NumericXAxis.html[NumericXAxis] と link:{DataChartLink}.CategoryYAxis.html[CategoryYAxis] を使用します。

この新しいシリーズ タイプの詳細については、以下のトピックを参照してください。

- link:datachart-series-range-bar.html[Range Bar シリーズ]

[[Ref_25_2_107]]

== 25.2.107 (2026 年 3 月)
Expand Down
68 changes: 68 additions & 0 deletions topics/ja/datachart-series-range-bar.ja-JP.adoc
Original file line number Diff line number Diff line change
@@ -0,0 +1,68 @@
////
|metadata|
{
"name": "datachart-series-range-bar",
"controlName": [],
"tags": ["xamDataChart", "RangeBarSeries"],
"guid": "",
"buildFlags": [],
"createdOn": "2026-05-21T00:00:00Z"
}
|metadata|
////

= Range Bar シリーズ

link:{DataChartLink}.RangeBarSeries.html[RangeBarSeries] は、値の範囲を水平バーとして表示する新しい xamDataChart シリーズ タイプです。これは link:{DataChartLink}.RangeColumnSeries.html[RangeColumnSeries] のバー向きの対応シリーズです。

== 要件

xamDataChart で `RangeBarSeries` をプロットするには、以下を設定します。

* X 軸の値範囲には link:{DataChartLink}.NumericXAxis.html[NumericXAxis] を使用します。
* Y 軸のカテゴリ ラベルには link:{DataChartLink}.CategoryYAxis.html[CategoryYAxis] を使用します。
* 各範囲を定義するデータ フィールドに `LowMemberPath` と `HighMemberPath` を設定します。

== 例

[source,xaml]
----
<ig:XamDataChart x:Name="DataChart">
<ig:XamDataChart.Axes>
<ig:NumericXAxis x:Name="xAxis" />
<ig:CategoryYAxis x:Name="yAxis"
ItemsSource="{Binding}"
Label="{}{Label}" />
</ig:XamDataChart.Axes>
<ig:XamDataChart.Series>
<ig:RangeBarSeries ItemsSource="{Binding}"
LowMemberPath="Low"
HighMemberPath="High"
XAxis="{Binding ElementName=xAxis}"
YAxis="{Binding ElementName=yAxis}"
Title="Range" />
</ig:XamDataChart.Series>
</ig:XamDataChart>
----

== 主なプロパティ

[options="header", cols="a,a"]
|===
| プロパティ | 説明
| `HighMemberPath` | 各バーの上限値を含むデータ列のパスを指定します。
| `LowMemberPath` | 各バーの下限値を含むデータ列のパスを指定します。
| `XAxis` | 値範囲を描画する数値 X 軸を指定します。
| `YAxis` | 項目ラベルを描画するカテゴリ Y 軸を指定します。
| `RadiusX` | バー形状の水平方向の角丸半径を設定します。
| `RadiusY` | バー形状の垂直方向の角丸半径を設定します。
| `LowMemberAsLegendLabel` | データ凡例で下限値の前に表示するラベルを指定します。
| `HighMemberAsLegendLabel` | データ凡例で上限値の前に表示するラベルを指定します。
| `LowMemberAsLegendUnit` | データ凡例で下限値の後に表示する単位を指定します。
| `HighMemberAsLegendUnit` | データ凡例で上限値の後に表示する単位を指定します。
|===

== 関連トピック

* link:whats-new-in-2026-volume-1.html[2026 Volume 1 の新機能]
* link:datachart-datachart.html[xamDataChart]
Original file line number Diff line number Diff line change
Expand Up @@ -77,6 +77,8 @@ endif::wpf,sl[]

* link:{ApiPlatform}controls.charts.xamdatachart{ApiVersion}~infragistics.controls.charts.barseries_members.html[BarSeries]

* link:{ApiPlatform}controls.charts.xamdatachart{ApiVersion}~infragistics.controls.charts.rangebarseries_members.html[RangeBarSeries]

* link:{ApiPlatform}controls.charts.xamdatachart{ApiVersion}~infragistics.controls.charts.stackedbarseries_members.html[StackedBarSeries]

* link:{ApiPlatform}controls.charts.xamdatachart{ApiVersion}~infragistics.controls.charts.stacked100barseries_members.html[Stacked100BarSeries]
Expand Down
9 changes: 9 additions & 0 deletions topics/ja/whats-new-in-2026-volume-1.ja-JP.adoc
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
= 2026 Volume 1 の新機能

=== Range Bar シリーズ

link:{DataChartLink}.RangeBarSeries.html[RangeBarSeries] は、値の範囲を水平バーとして表示する新しい xamDataChart シリーズ タイプです。これは link:{DataChartLink}.RangeColumnSeries.html[RangeColumnSeries] のバー向きの対応シリーズです。

この新しいシリーズ タイプの詳細については、以下のトピックを参照してください。

- link:datachart-series-range-bar.html[Range Bar シリーズ]
6 changes: 5 additions & 1 deletion topics/ja/wpf-whats-new.ja-JP.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,10 @@

Ultimate UI for WPF 製品の最新リリースに追加された新機能。

== link:whats-new-in-2026-volume-1.html[2026 Volume 1 の新機能]

2026 Volume 1 の主な新機能 (xamDataChart の新しい Range Bar シリーズを含む) を確認できます。

== link:wpf-revision-history.html[改訂履歴]

特定の機能がコントロールに追加されたかどうか、いつ追加されたかを確認できます。このセクションでは 2007 Volume 2 以降の新機能についてすばやく簡単に調べることができます。
特定の機能がコントロールに追加されたかどうか、いつ追加されたかを確認できます。このセクションでは 2007 Volume 2 以降の新機能についてすばやく簡単に調べることができます。