mirror of
https://github.com/radzenhq/radzen-blazor.git
synced 2026-07-08 18:16:08 +00:00
Enrich all 58 chart/dataviz demo pages on blazor.radzen.com for search
and AI discovery:
- JSON-LD via a new head-schemas section + SeoSchema/DemoSeo, emitted
once per page from MainLayout (CollectionPage+ItemList on /charts,
TechArticle+BreadcrumbList+FAQPage on each chart page)
- Human-readable intros, 1-3 FAQs, and related-chart links per page,
sourced once from ExampleService (rendered on-page and as FAQPage)
- Complete OG/Twitter tags; corrected gallery copy (30+ chart types /
40+ data-visualization components); dropped "native" wording
- Rename chart-spline/-histogram/-pareto to {type}-chart
Adds RadzenBlazorDemos/Services/SeoSchema.cs and Shared/DemoSeo.razor.
14 lines
684 B
Plaintext
14 lines
684 B
Plaintext
@page "/box-plot-chart"
|
|
|
|
<RadzenText TextStyle="TextStyle.H2" TagName="TagName.H1" class="rz-pt-8">
|
|
Radzen Blazor Chart box plot series
|
|
</RadzenText>
|
|
<RadzenText TextStyle="TextStyle.Subtitle1" TagName="TagName.P" class="rz-pb-4">
|
|
A box plot summarizes a distribution with quartiles and whiskers, so you can compare spread, median, and outliers across groups at a glance. Each box spans Q1 to Q3 with a median line, while the whiskers reach the minimum and maximum.
|
|
</RadzenText>
|
|
|
|
<RadzenExample ComponentName="Chart" Example="BoxPlotChartConfig"
|
|
DocumentationLink="https://blazor.radzen.com/docs/guides/components/chart.html">
|
|
<BoxPlotChartConfig />
|
|
</RadzenExample>
|