mirror of
https://github.com/radzenhq/radzen-blazor.git
synced 2026-07-08 18:16:08 +00:00
Extend the chart SEO work to the 15 chart configuration and feature demo pages (axis, legend, tooltip, interpolation, data labels, crosshair, etc.): - GetChartConfigPages() + SeoSchema treats these pages as article- eligible (TechArticle + BreadcrumbList + FAQPage), without adding them to the /charts gallery ItemList - Human-readable intros, "how do I..." FAQs, and related links per page
14 lines
627 B
Plaintext
14 lines
627 B
Plaintext
@page "/multiple-axes-chart"
|
|
|
|
<RadzenText TextStyle="TextStyle.H2" TagName="TagName.H1" class="rz-pt-8">
|
|
Radzen Blazor Chart with multiple value axes
|
|
</RadzenText>
|
|
<RadzenText TextStyle="TextStyle.Subtitle1" TagName="TagName.P" class="rz-pb-4">
|
|
Multiple value axes let you plot series with very different scales on the same chart - revenue in thousands next to a percentage, each with its own axis.
|
|
</RadzenText>
|
|
|
|
<RadzenExample ComponentName="Chart" Example="MultipleAxesChartConfig"
|
|
DocumentationLink="https://blazor.radzen.com/docs/guides/components/chart.html">
|
|
<MultipleAxesChartConfig />
|
|
</RadzenExample>
|