Skip to content

Add WinForms 26.1 Range Bar Series documentation and release notes#9

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

Add WinForms 26.1 Range Bar Series documentation and release notes#9
Copilot wants to merge 2 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 plus the corresponding 26.1 release-note surfaces 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
  • 26.1 release note coverage

    • Added new What's New in 2026 Volume 1 topics in English and Japanese.
    • Documented RangeBarSeries as a new chart feature and linked to the new topic.
  • Changelog and history updates

    • Added a 26.1 (2026) entry to the WinForms changelog in English and Japanese.
    • Updated revision history in both languages to surface the new 2026 Volume 1 page.
  • 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

Firewall rules blocked me from connecting to one or more addresses (expand for details)

I tried to connect to the following addresses, but was blocked by firewall rules:

  • www.infragistics.com
    • Triggering command: /home/REDACTED/work/_temp/ghcca-node/node/bin/node /home/REDACTED/work/_temp/ghcca-node/node/bin/node --enable-source-maps /home/REDACTED/work/_temp/copilot-developer-action-main/dist/index.js (dns block)

If you need me to access, download, or install something from one of these locations, you can either:

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

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