Files
radzen-blazor/RadzenBlazorDemos/Pages/LiveChartPage.razor
Atanas Korchev 3301acaece Add chart SEO: structured data, FAQs, and consistent copy
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.
2026-06-18 17:24:21 +03:00

13 lines
614 B
Plaintext

@page "/live-chart"
<RadzenText TextStyle="TextStyle.H2" TagName="TagName.H1" class="rz-pt-8">
Radzen Blazor Chart with live data
</RadzenText>
<RadzenText TextStyle="TextStyle.Subtitle1" TagName="TagName.P" class="rz-pb-4">
A live chart streams new points over a rolling window, so the view scrolls as fresh data arrives - the shape you want for a CPU monitor, a telemetry feed, or any real-time metric.
</RadzenText>
<RadzenExample ComponentName="Chart" Example="LiveChartConfig" DocumentationLink="https://blazor.radzen.com/docs/guides/components/chart.html">
<LiveChartConfig />
</RadzenExample>