Files
radzen-blazor/RadzenBlazorDemos/Pages/MultipleAxesChartPage.razor
Atanas Korchev c918ce3d8c Add SEO schema and copy to chart configuration/feature demos
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
2026-06-18 17:49:54 +03:00

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>