Skip to content

Add 26.1 WPF docs for RangeBarSeries across chart, changelog, and what's new topics#12

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

Add 26.1 WPF docs for RangeBarSeries across chart, changelog, and what's new topics#12
Copilot wants to merge 2 commits into
mainfrom
copilot/update-bar-chart-topic-with-rangebar-series

Conversation

Copy link
Copy Markdown

Copilot AI commented May 21, 2026

This updates the WPF bar chart documentation for the new RangeBarSeries introduced in 26.1. It adds the feature to the main release surfaces and mirrors the relevant content in Japanese.

  • New chart topic

    • Added dedicated English and Japanese topics for RangeBarSeries
    • Documented:
      • series purpose and orientation vs. RangeColumnSeries
      • required axes (NumericXAxis + CategoryYAxis)
      • core member paths and legend-related properties
      • a minimal XAML example
  • Release documentation

    • Added new 2026 Volume 1 what's new topics in English and Japanese
    • Linked the new 2026 Volume 1 topics from the existing what's new index pages
    • Added 26.1 changelog entries in English and Japanese calling out RangeBarSeries
  • Related chart references

    • Updated the xamDataChart styling/reference topics to include RangeBarSeries alongside the other supported series types
  • Docs consistency

    • Kept topic naming/linking aligned with existing datachart-* conventions
    • Corrected the nearby changelog TOC anchor for 25.2.107 while touching that section
<ig:XamDataChart>
    <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}" />
    </ig:XamDataChart.Series>
</ig:XamDataChart>

Copilot AI changed the title [WIP] Update bar chart topic with new RangeBar series Add 26.1 WPF docs for RangeBarSeries across chart, changelog, and what's new topics May 21, 2026
Copilot AI requested a review from gedinakova May 21, 2026 16:25
@gedinakova gedinakova requested a review from IGvaleries May 21, 2026 16:49
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 as other PRS that we haven't been using whats-new topics anymore and have just been using the changelog

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