From 573ce78705391eca868bbe82db2f75cf56e52191 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Thu, 21 May 2026 16:10:41 +0000 Subject: [PATCH 1/3] Initial plan From 99af7a0d07dc66f3749604bb41b6dd6e785723b3 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Thu, 21 May 2026 16:14:05 +0000 Subject: [PATCH 2/3] docs: add checkmark marker type docs Agent-Logs-Url: https://github.com/Infragistics/docs-win-forms/sessions/8085ed80-5941-423a-bf70-eb944ba0d595 Co-authored-by: gedinakova <16817847+gedinakova@users.noreply.github.com> --- topics/en/changelog.adoc | 13 ++++++++++++- topics/en/data-pie-chart-legend.adoc | 4 ++-- topics/en/whats-new-in-2026-volume-1.adoc | 14 ++++++++++++++ topics/en/win-revision-history.adoc | 3 ++- topics/ja/changelog.ja-JP.adoc | 13 ++++++++++++- topics/ja/data-pie-chart-legend.ja-JP.adoc | 4 ++-- topics/ja/whats-new-in-2026-volume-1.ja-JP.adoc | 14 ++++++++++++++ topics/ja/win-revision-history.ja-JP.adoc | 3 ++- 8 files changed, 60 insertions(+), 8 deletions(-) create mode 100644 topics/en/whats-new-in-2026-volume-1.adoc create mode 100644 topics/ja/whats-new-in-2026-volume-1.ja-JP.adoc diff --git a/topics/en/changelog.adoc b/topics/en/changelog.adoc index abecbd2..002a2d3 100644 --- a/topics/en/changelog.adoc +++ b/topics/en/changelog.adoc @@ -4,6 +4,7 @@ This topic contains the following sections: +* <> * <> * <> * <> @@ -20,6 +21,16 @@ This topic contains the following sections: * <> * <> +[[Ref_26_1]] + +== 26.1 (May 2026) + +=== Enhancements + +==== Charts + +- Added the `Checkmark` marker type to supported chart marker enumerations, including `LegendItemBadgeShape`. + [[Ref_25_2_111]] == 25.2.111 (March 2026) @@ -758,4 +769,4 @@ This feature includes a new filter syntax that is OData-like that you can use wi The following documentation describes the various ways that you can apply the highlight filter to the chart controls: - link:datachart-highlight-filter.html[{DataChartName} Highlight Filter] -- link:categorychart-highlight-filter.html[{CategoryChartName} Highlight Filter] \ No newline at end of file +- link:categorychart-highlight-filter.html[{CategoryChartName} Highlight Filter] diff --git a/topics/en/data-pie-chart-legend.adoc b/topics/en/data-pie-chart-legend.adoc index 4c59be3..8d5c63d 100644 --- a/topics/en/data-pie-chart-legend.adoc +++ b/topics/en/data-pie-chart-legend.adoc @@ -24,7 +24,7 @@ In order to display a legend for the {DataPieChartName} an ItemLegend needs to b By default, the ItemLegend will show the same content as the label that is shown for each slice in the {DataPieChartName}. This can be modified by utilizing the `LegendSliceLabelContentMode` property on the chart. This exposes a `RadialLabelMode` enumeration that can allow you to show the label, value, percentage, or any combination of those as the legend's content for each data pie chart slice. -The ItemLegend badge is also able to be modified. By default, it will appear as a filled circle corresponding to the color of the associated data pie chart slice. This can be configured by using the `LegendItemBadgeShape` property of the chart and you can set this to be a circle, line, bar, column, and more. +The ItemLegend badge is also able to be modified. By default, it will appear as a filled circle corresponding to the color of the associated data pie chart slice. This can be configured by using the `LegendItemBadgeShape` property of the chart and you can set this to be a circle, line, bar, column, `Checkmark`, and more. [[CodeExample]] === Code Example @@ -76,4 +76,4 @@ endif::win-forms[] [[RelatedContent]] === Related Content -* link:data-pie-chart-data-binding.html[Data Binding] \ No newline at end of file +* link:data-pie-chart-data-binding.html[Data Binding] diff --git a/topics/en/whats-new-in-2026-volume-1.adoc b/topics/en/whats-new-in-2026-volume-1.adoc new file mode 100644 index 0000000..67176ae --- /dev/null +++ b/topics/en/whats-new-in-2026-volume-1.adoc @@ -0,0 +1,14 @@ +//// +|metadata| +{ + "tags": [], + "controlName": [""] +} +|metadata| +//// + += What's New in 2026 Volume 1 + +=== Charts + +Marker-related chart enums now include the `Checkmark` marker type in v26.1. For example, you can use `Checkmark` with link:{DataChartLink}.LegendItemBadgeShape.html[LegendItemBadgeShape] to display checkmark badges in legends for supported charts. diff --git a/topics/en/win-revision-history.adoc b/topics/en/win-revision-history.adoc index 360746b..7a99da7 100644 --- a/topics/en/win-revision-history.adoc +++ b/topics/en/win-revision-history.adoc @@ -15,6 +15,7 @@ This section makes it easy for you to track down all the new features and enhancements that were made to our Windows Forms controls and components in the following volume releases: +* link:whats-new-in-2026-volume-1.html[2026 Volume 1] * link:whats-new-in-2022-volume-1.html[2022 Volume 1] * link:whats-new-in-2021-volume-2.html[2021 Volume 2] * link:whats-new-in-2021-volume-1.html[2021 Volume 1] @@ -55,4 +56,4 @@ This section makes it easy for you to track down all the new features and enhanc * link:win-whats-new-in-2005-volume-3.html[2005 Volume 3] * link:win-whats-new-in-2005-volume-2.html[2005 Volume 2] * link:win-whats-new-in-2005-volume-1.html[2005 Volume 1] -* link:win-whats-new-in-2004-volume-3.html[2004 Volume 3] \ No newline at end of file +* link:win-whats-new-in-2004-volume-3.html[2004 Volume 3] diff --git a/topics/ja/changelog.ja-JP.adoc b/topics/ja/changelog.ja-JP.adoc index c95e314..9837bfe 100644 --- a/topics/ja/changelog.ja-JP.adoc +++ b/topics/ja/changelog.ja-JP.adoc @@ -4,6 +4,7 @@ このトピックは、以下のセクションで構成されます。 +* <> * <> * <> * <> @@ -20,6 +21,16 @@ * <> * <> +[[Ref_26_1]] + +== 26.1 (2026 年 5 月) + +=== 機能拡張 + +==== チャート + +- `LegendItemBadgeShape` を含む、サポートされているチャートのマーカー列挙体に `Checkmark` マーカー タイプが追加されました。 + [[Ref_25_2_111]] == 25.2.111 (2026 年 3 月) @@ -755,4 +766,4 @@ image:images/chart-highlight-filter.png[] 次のドキュメントでは、チャート コントロールに強調表示フィルターを適用するさまざまな方法について説明します。 - link:datachart-highlight-filter.html[{DataChartName} 強調表示フィルター] -- link:categorychart-highlight-filter.html[{CategoryChartName} 強調表示フィルター] \ No newline at end of file +- link:categorychart-highlight-filter.html[{CategoryChartName} 強調表示フィルター] diff --git a/topics/ja/data-pie-chart-legend.ja-JP.adoc b/topics/ja/data-pie-chart-legend.ja-JP.adoc index be16919..9d41d10 100644 --- a/topics/ja/data-pie-chart-legend.ja-JP.adoc +++ b/topics/ja/data-pie-chart-legend.ja-JP.adoc @@ -24,7 +24,7 @@ デフォルトでは、ItemLegend は {DataPieChartName} の各スライスに表示されるラベルと同じ内容を表示します。これを変更するには、チャートの `LegendSliceLabelContentMode` プロパティを利用します。これにより、`RadialLabelMode` 列挙型が公開され、ラベル、値、パーセンテージ、またはそれらの組み合わせをデータ円チャート スライスごとの凡例の内容として表示できます。 -また、ItemLegend のバッジも変更可能です。デフォルトでは、関連するデータ円チャート スライスの色に対応する塗りつぶされた円として表示されます。これを設定するには、チャートの `LegendItemBadgeShape` プロパティを使用し、円、折れ線、棒、柱状などに設定できます。 +また、ItemLegend のバッジも変更可能です。デフォルトでは、関連するデータ円チャート スライスの色に対応する塗りつぶされた円として表示されます。これを設定するには、チャートの `LegendItemBadgeShape` プロパティを使用し、円、折れ線、棒、柱状、`Checkmark` などに設定できます。 [[CodeExample]] === コード例 @@ -76,4 +76,4 @@ endif::win-forms[] [[RelatedContent]] === 関連コンテンツ -* link:data-pie-chart-data-binding.html[データ バインディング] \ No newline at end of file +* link:data-pie-chart-data-binding.html[データ バインディング] diff --git a/topics/ja/whats-new-in-2026-volume-1.ja-JP.adoc b/topics/ja/whats-new-in-2026-volume-1.ja-JP.adoc new file mode 100644 index 0000000..8dfd6f3 --- /dev/null +++ b/topics/ja/whats-new-in-2026-volume-1.ja-JP.adoc @@ -0,0 +1,14 @@ +//// +|metadata| +{ + "tags": [], + "controlName": [""] +} +|metadata| +//// + += 2026 Volume 1 の新機能 + +=== チャート + +v26.1 では、マーカー関連のチャート列挙体に `Checkmark` マーカー タイプが追加されました。たとえば、link:{DataChartLink}.LegendItemBadgeShape.html[LegendItemBadgeShape] で `Checkmark` を使用すると、サポートされているチャートの凡例にチェックマーク バッジを表示できます。 diff --git a/topics/ja/win-revision-history.ja-JP.adoc b/topics/ja/win-revision-history.ja-JP.adoc index dbc1f39..b1284a5 100644 --- a/topics/ja/win-revision-history.ja-JP.adoc +++ b/topics/ja/win-revision-history.ja-JP.adoc @@ -15,6 +15,7 @@ このセクションを理解すれば、次のボリューム リリースで Windows Forms のコントロールおよびコンポーネントに加えられたすべての新しい機能および拡張機能を簡単にたどることができます。 +* link:whats-new-in-2026-volume-1.html[2026 Volume 1] * link:whats-new-in-2022-volume-1.html[2022 Volume 1] * link:whats-new-in-2021-volume-2.html[2021 Volume 2] * link:whats-new-in-2021-volume-1.html[2021 Volume 1] @@ -55,4 +56,4 @@ * link:win-whats-new-in-2005-volume-3.html[2005 Volume 3] * link:win-whats-new-in-2005-volume-2.html[2005 Volume 2] * link:win-whats-new-in-2005-volume-1.html[2005 Volume 1] -* link:win-whats-new-in-2004-volume-3.html[2004 Volume 3] \ No newline at end of file +* link:win-whats-new-in-2004-volume-3.html[2004 Volume 3] From b4fbc9e97dc948e30ec7b09559aa4deee411b0aa Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Tue, 26 May 2026 21:35:46 +0000 Subject: [PATCH 3/3] docs: remove unused whats-new topics --- topics/en/whats-new-in-2026-volume-1.adoc | 14 -------------- topics/en/win-revision-history.adoc | 3 +-- topics/ja/whats-new-in-2026-volume-1.ja-JP.adoc | 14 -------------- topics/ja/win-revision-history.ja-JP.adoc | 3 +-- 4 files changed, 2 insertions(+), 32 deletions(-) delete mode 100644 topics/en/whats-new-in-2026-volume-1.adoc delete mode 100644 topics/ja/whats-new-in-2026-volume-1.ja-JP.adoc diff --git a/topics/en/whats-new-in-2026-volume-1.adoc b/topics/en/whats-new-in-2026-volume-1.adoc deleted file mode 100644 index 67176ae..0000000 --- a/topics/en/whats-new-in-2026-volume-1.adoc +++ /dev/null @@ -1,14 +0,0 @@ -//// -|metadata| -{ - "tags": [], - "controlName": [""] -} -|metadata| -//// - -= What's New in 2026 Volume 1 - -=== Charts - -Marker-related chart enums now include the `Checkmark` marker type in v26.1. For example, you can use `Checkmark` with link:{DataChartLink}.LegendItemBadgeShape.html[LegendItemBadgeShape] to display checkmark badges in legends for supported charts. diff --git a/topics/en/win-revision-history.adoc b/topics/en/win-revision-history.adoc index 7a99da7..360746b 100644 --- a/topics/en/win-revision-history.adoc +++ b/topics/en/win-revision-history.adoc @@ -15,7 +15,6 @@ This section makes it easy for you to track down all the new features and enhancements that were made to our Windows Forms controls and components in the following volume releases: -* link:whats-new-in-2026-volume-1.html[2026 Volume 1] * link:whats-new-in-2022-volume-1.html[2022 Volume 1] * link:whats-new-in-2021-volume-2.html[2021 Volume 2] * link:whats-new-in-2021-volume-1.html[2021 Volume 1] @@ -56,4 +55,4 @@ This section makes it easy for you to track down all the new features and enhanc * link:win-whats-new-in-2005-volume-3.html[2005 Volume 3] * link:win-whats-new-in-2005-volume-2.html[2005 Volume 2] * link:win-whats-new-in-2005-volume-1.html[2005 Volume 1] -* link:win-whats-new-in-2004-volume-3.html[2004 Volume 3] +* link:win-whats-new-in-2004-volume-3.html[2004 Volume 3] \ No newline at end of file diff --git a/topics/ja/whats-new-in-2026-volume-1.ja-JP.adoc b/topics/ja/whats-new-in-2026-volume-1.ja-JP.adoc deleted file mode 100644 index 8dfd6f3..0000000 --- a/topics/ja/whats-new-in-2026-volume-1.ja-JP.adoc +++ /dev/null @@ -1,14 +0,0 @@ -//// -|metadata| -{ - "tags": [], - "controlName": [""] -} -|metadata| -//// - -= 2026 Volume 1 の新機能 - -=== チャート - -v26.1 では、マーカー関連のチャート列挙体に `Checkmark` マーカー タイプが追加されました。たとえば、link:{DataChartLink}.LegendItemBadgeShape.html[LegendItemBadgeShape] で `Checkmark` を使用すると、サポートされているチャートの凡例にチェックマーク バッジを表示できます。 diff --git a/topics/ja/win-revision-history.ja-JP.adoc b/topics/ja/win-revision-history.ja-JP.adoc index b1284a5..dbc1f39 100644 --- a/topics/ja/win-revision-history.ja-JP.adoc +++ b/topics/ja/win-revision-history.ja-JP.adoc @@ -15,7 +15,6 @@ このセクションを理解すれば、次のボリューム リリースで Windows Forms のコントロールおよびコンポーネントに加えられたすべての新しい機能および拡張機能を簡単にたどることができます。 -* link:whats-new-in-2026-volume-1.html[2026 Volume 1] * link:whats-new-in-2022-volume-1.html[2022 Volume 1] * link:whats-new-in-2021-volume-2.html[2021 Volume 2] * link:whats-new-in-2021-volume-1.html[2021 Volume 1] @@ -56,4 +55,4 @@ * link:win-whats-new-in-2005-volume-3.html[2005 Volume 3] * link:win-whats-new-in-2005-volume-2.html[2005 Volume 2] * link:win-whats-new-in-2005-volume-1.html[2005 Volume 1] -* link:win-whats-new-in-2004-volume-3.html[2004 Volume 3] +* link:win-whats-new-in-2004-volume-3.html[2004 Volume 3] \ No newline at end of file