Skip to content

Add WinForms 26.1 Range Bar Series documentation and changelog updates#9

Open
Copilot wants to merge 3 commits into
mainfrom
copilot/update-bar-chart-topic-rangebar-series
Open

Add WinForms 26.1 Range Bar Series documentation and changelog updates#9
Copilot wants to merge 3 commits into
mainfrom
copilot/update-bar-chart-topic-rangebar-series

Conversation

Copy link
Copy Markdown

Copilot AI commented May 21, 2026

Updates the WinForms bar chart documentation to cover the new RangeBarSeries introduced in 26.1. This adds the missing feature topic and the corresponding 26.1 changelog entries in both English and Japanese.

  • New Range Bar Series topic

    • Added a new WinForms topic for RangeBarSeries in English and Japanese.
    • Covers:
      • series purpose and orientation
      • required axes (NumericXAxis + CategoryYAxis)
      • HighMemberPath / LowMemberPath
      • rendering behavior for horizontal range bars
      • commonly used properties such as RadiusX, RadiusY, and Data Legend label/unit settings
      • related links to existing bar/range topics
  • Changelog updates

    • Added a 26.1 (2026) entry to the WinForms changelog in English and Japanese.
    • Documented RangeBarSeries as a new chart feature and linked to the new topic.
  • Example usage

    var xAxis = new NumericXAxis();
    var yAxis = new CategoryYAxis();
    yAxis.DataSource = data;
    yAxis.Label = "{Country}";
    
    var series = new RangeBarSeries();
    series.DataSource = data;
    series.HighMemberPath = "Coal";
    series.LowMemberPath = "Oil";
    series.XAxis = xAxis;
    series.YAxis = yAxis;

> [!WARNING]
>
>

Agent-Logs-Url: https://github.com/Infragistics/docs-win-forms/sessions/1ff2adaa-bdf2-4b84-89fa-b9c2f6ab7403

Co-authored-by: gedinakova <16817847+gedinakova@users.noreply.github.com>
Copilot AI changed the title [WIP] Update bar chart topic with new RangeBar series Add WinForms 26.1 Range Bar Series documentation and release notes May 21, 2026
Copilot AI requested a review from gedinakova May 21, 2026 16:18
@gedinakova gedinakova requested a review from IGvaleries May 21, 2026 16:48
Copy link
Copy Markdown
Contributor

@IGvaleries IGvaleries left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Same comment again we no longer doing "what's new" docs.
we also stopped adding VB code snippets, but that's just an FYI, since they are heer I don't see any need to remove them

Also, not sure if that datasource was the best to demonstrate how the chart might actually be used but I guess it is OK

@gedinakova gedinakova marked this pull request as ready for review May 26, 2026 21:34
@gedinakova
Copy link
Copy Markdown
Contributor

@copilot Delete the newly added what's new topics (both english and japanese) as they are no longer used.

Copy link
Copy Markdown
Author

Copilot AI commented May 26, 2026

@copilot Delete the newly added what's new topics (both english and japanese) as they are no longer used.

Addressed in 4f625a1.

Copilot AI changed the title Add WinForms 26.1 Range Bar Series documentation and release notes Add WinForms 26.1 Range Bar Series documentation and changelog updates May 26, 2026
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

Update Bar chart topic with the new range bar series

3 participants