Skip to content

Add 26.1 WPF docs for RangeBarSeries across chart and changelog topics#12

Merged
gedinakova merged 3 commits into
mainfrom
copilot/update-bar-chart-topic-with-rangebar-series
May 27, 2026
Merged

Add 26.1 WPF docs for RangeBarSeries across chart and changelog topics#12
gedinakova merged 3 commits into
mainfrom
copilot/update-bar-chart-topic-with-rangebar-series

Conversation

Copy link
Copy Markdown
Contributor

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 active release documentation 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 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
    • Updated the new RangeBarSeries topics to reference the changelog as the release surface
  • 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

@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.

@gedinakova gedinakova marked this pull request as ready for review May 26, 2026 21:31
Copy link
Copy Markdown
Contributor 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 0d77a07.

Copilot AI changed the title Add 26.1 WPF docs for RangeBarSeries across chart, changelog, and what's new topics Add 26.1 WPF docs for RangeBarSeries across chart and changelog topics May 26, 2026
@gedinakova gedinakova merged commit 41e43a2 into main May 27, 2026
@gedinakova gedinakova requested a review from jsakamotoIGJP May 29, 2026 08:29
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