Skip to content

Commit 944e77a

Browse files
committed
Update docs: correct tables and demo links for components
Corrected the documentation pages for multiple components by updating the parameter, method, and event tables to reference the correct component types instead of "Alert". Also fixed the demo links to point to the appropriate demo pages for each component. Added missing parameter tables for nested or related component types (e.g., CardBody, CardFooter, ChartData, etc.) to improve documentation completeness and accuracy.
1 parent 32130cd commit 944e77a

15 files changed

Lines changed: 226 additions & 126 deletions

BlazorBootstrap.Demo.RCL/Components/Pages/Docs/Accordion/Accordion_Doc_01_Documentation.razor

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -18,10 +18,6 @@
1818
<DocxTable TItem="Accordion" DocType="DocType.Parameters" />
1919
</Section>
2020

21-
<Section Class="p-0" Size="HeadingSize.H3" Name="AccordionItem Parameters" PageUrl="@pageUrl" Link="accordion-item-parameters">
22-
<DocxTable TItem="AccordionItem" DocType="DocType.Parameters" />
23-
</Section>
24-
2521
<Section Class="p-0" Size="HeadingSize.H3" Name="Accordion Methods" PageUrl="@pageUrl" Link="accordion-methods">
2622
<DocxTable TItem="Accordion" DocType="DocType.Methods" />
2723
</Section>
@@ -30,6 +26,10 @@
3026
<DocxTable TItem="Accordion" DocType="DocType.Events" />
3127
</Section>
3228

29+
<Section Class="p-0" Size="HeadingSize.H3" Name="AccordionItem Parameters" PageUrl="@pageUrl" Link="accordion-item-parameters">
30+
<DocxTable TItem="AccordionItem" DocType="DocType.Parameters" />
31+
</Section>
32+
3333
@code {
3434
private const string componentName = nameof(Accordion);
3535
private const string pageUrl = DemoRouteConstants.Docs_URL_Accordion;

BlazorBootstrap.Demo.RCL/Components/Pages/Docs/Badge/Badge_Doc_01_Documentation.razor

Lines changed: 4 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -8,27 +8,19 @@
88
MetaDescription="@metaDescription"
99
ImageUrl="@imageUrl" />
1010

11-
<DemoLink Href="@DemoRouteConstants.Demos_URL_Alerts" />
11+
<DemoLink Href="@DemoRouteConstants.Demos_URL_Badge" />
1212

1313
<Section Class="p-0" Size="HeadingSize.H3" Name="Screenshot" PageUrl="@pageUrl" Link="screenshot">
1414
<img src="@imageUrl" class="img-fluid" alt="@metaTitle" />
1515
</Section>
1616

1717
<Section Class="p-0" Size="HeadingSize.H3" Name="Parameters" PageUrl="@pageUrl" Link="parameters">
18-
<DocxTable TItem="Alert" DocType="DocType.Parameters" />
19-
</Section>
20-
21-
<Section Class="p-0" Size="HeadingSize.H3" Name="Methods" PageUrl="@pageUrl" Link="methods">
22-
<DocxTable TItem="Alert" DocType="DocType.Methods" />
23-
</Section>
24-
25-
<Section Class="p-0" Size="HeadingSize.H3" Name="Events" PageUrl="@pageUrl" Link="events">
26-
<DocxTable TItem="Alert" DocType="DocType.Events" />
18+
<DocxTable TItem="Badge" DocType="DocType.Parameters" />
2719
</Section>
2820

2921
@code {
30-
private const string componentName = nameof(Alert);
31-
private const string pageUrl = DemoRouteConstants.Docs_URL_Alerts;
22+
private const string componentName = nameof(Badge);
23+
private const string pageUrl = DemoRouteConstants.Docs_URL_Badge;
3224
private const string pageTitle = componentName;
3325
private const string pageDescription = $"This documentation provides a comprehensive reference for the <code>{componentName}</code> component, guiding you through its configuration options.";
3426
private const string metaTitle = $"Blazor {componentName} Component";

BlazorBootstrap.Demo.RCL/Components/Pages/Docs/Breadcrumb/Breadcrumb_Doc_01_Documentation.razor

Lines changed: 7 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -8,27 +8,23 @@
88
MetaDescription="@metaDescription"
99
ImageUrl="@imageUrl" />
1010

11-
<DemoLink Href="@DemoRouteConstants.Demos_URL_Alerts" />
11+
<DemoLink Href="@DemoRouteConstants.Demos_URL_Breadcrumb" />
1212

1313
<Section Class="p-0" Size="HeadingSize.H3" Name="Screenshot" PageUrl="@pageUrl" Link="screenshot">
1414
<img src="@imageUrl" class="img-fluid" alt="@metaTitle" />
1515
</Section>
1616

17-
<Section Class="p-0" Size="HeadingSize.H3" Name="Parameters" PageUrl="@pageUrl" Link="parameters">
18-
<DocxTable TItem="Alert" DocType="DocType.Parameters" />
17+
<Section Class="p-0" Size="HeadingSize.H3" Name="Breadcrumb Parameters" PageUrl="@pageUrl" Link="breadcrumb-parameters">
18+
<DocxTable TItem="Breadcrumb" DocType="DocType.Parameters" />
1919
</Section>
2020

21-
<Section Class="p-0" Size="HeadingSize.H3" Name="Methods" PageUrl="@pageUrl" Link="methods">
22-
<DocxTable TItem="Alert" DocType="DocType.Methods" />
23-
</Section>
24-
25-
<Section Class="p-0" Size="HeadingSize.H3" Name="Events" PageUrl="@pageUrl" Link="events">
26-
<DocxTable TItem="Alert" DocType="DocType.Events" />
21+
<Section Class="p-0" Size="HeadingSize.H3" Name="BreadcrumbItem Parameters" PageUrl="@pageUrl" Link="breadcrumb-item-parameters">
22+
<DocxTable TItem="BreadcrumbItem" DocType="DocType.Parameters" />
2723
</Section>
2824

2925
@code {
30-
private const string componentName = nameof(Alert);
31-
private const string pageUrl = DemoRouteConstants.Docs_URL_Alerts;
26+
private const string componentName = nameof(Breadcrumb);
27+
private const string pageUrl = DemoRouteConstants.Docs_URL_Breadcrumb;
3228
private const string pageTitle = componentName;
3329
private const string pageDescription = $"This documentation provides a comprehensive reference for the <code>{componentName}</code> component, guiding you through its configuration options.";
3430
private const string metaTitle = $"Blazor {componentName} Component";

BlazorBootstrap.Demo.RCL/Components/Pages/Docs/Buttons/Buttons_Doc_01_Documentation.razor

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -8,27 +8,27 @@
88
MetaDescription="@metaDescription"
99
ImageUrl="@imageUrl" />
1010

11-
<DemoLink Href="@DemoRouteConstants.Demos_URL_Alerts" />
11+
<DemoLink Href="@DemoRouteConstants.Demos_URL_Buttons" />
1212

1313
<Section Class="p-0" Size="HeadingSize.H3" Name="Screenshot" PageUrl="@pageUrl" Link="screenshot">
1414
<img src="@imageUrl" class="img-fluid" alt="@metaTitle" />
1515
</Section>
1616

1717
<Section Class="p-0" Size="HeadingSize.H3" Name="Parameters" PageUrl="@pageUrl" Link="parameters">
18-
<DocxTable TItem="Alert" DocType="DocType.Parameters" />
18+
<DocxTable TItem="Button" DocType="DocType.Parameters" />
1919
</Section>
2020

2121
<Section Class="p-0" Size="HeadingSize.H3" Name="Methods" PageUrl="@pageUrl" Link="methods">
22-
<DocxTable TItem="Alert" DocType="DocType.Methods" />
22+
<DocxTable TItem="Button" DocType="DocType.Methods" />
2323
</Section>
2424

2525
<Section Class="p-0" Size="HeadingSize.H3" Name="Events" PageUrl="@pageUrl" Link="events">
26-
<DocxTable TItem="Alert" DocType="DocType.Events" />
26+
<DocxTable TItem="Button" DocType="DocType.Events" />
2727
</Section>
2828

2929
@code {
30-
private const string componentName = nameof(Alert);
31-
private const string pageUrl = DemoRouteConstants.Docs_URL_Alerts;
30+
private const string componentName = nameof(Button);
31+
private const string pageUrl = DemoRouteConstants.Docs_URL_Buttons;
3232
private const string pageTitle = componentName;
3333
private const string pageDescription = $"This documentation provides a comprehensive reference for the <code>{componentName}</code> component, guiding you through its configuration options.";
3434
private const string metaTitle = $"Blazor {componentName} Component";

BlazorBootstrap.Demo.RCL/Components/Pages/Docs/Callout/Callout_Doc_01_Documentation.razor

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -8,27 +8,27 @@
88
MetaDescription="@metaDescription"
99
ImageUrl="@imageUrl" />
1010

11-
<DemoLink Href="@DemoRouteConstants.Demos_URL_Alerts" />
11+
<DemoLink Href="@DemoRouteConstants.Demos_URL_Callout" />
1212

1313
<Section Class="p-0" Size="HeadingSize.H3" Name="Screenshot" PageUrl="@pageUrl" Link="screenshot">
1414
<img src="@imageUrl" class="img-fluid" alt="@metaTitle" />
1515
</Section>
1616

1717
<Section Class="p-0" Size="HeadingSize.H3" Name="Parameters" PageUrl="@pageUrl" Link="parameters">
18-
<DocxTable TItem="Alert" DocType="DocType.Parameters" />
18+
<DocxTable TItem="Callout" DocType="DocType.Parameters" />
1919
</Section>
2020

2121
<Section Class="p-0" Size="HeadingSize.H3" Name="Methods" PageUrl="@pageUrl" Link="methods">
22-
<DocxTable TItem="Alert" DocType="DocType.Methods" />
22+
<DocxTable TItem="Callout" DocType="DocType.Methods" />
2323
</Section>
2424

2525
<Section Class="p-0" Size="HeadingSize.H3" Name="Events" PageUrl="@pageUrl" Link="events">
26-
<DocxTable TItem="Alert" DocType="DocType.Events" />
26+
<DocxTable TItem="Callout" DocType="DocType.Events" />
2727
</Section>
2828

2929
@code {
30-
private const string componentName = nameof(Alert);
31-
private const string pageUrl = DemoRouteConstants.Docs_URL_Alerts;
30+
private const string componentName = nameof(Callout);
31+
private const string pageUrl = DemoRouteConstants.Docs_URL_Callout;
3232
private const string pageTitle = componentName;
3333
private const string pageDescription = $"This documentation provides a comprehensive reference for the <code>{componentName}</code> component, guiding you through its configuration options.";
3434
private const string metaTitle = $"Blazor {componentName} Component";

BlazorBootstrap.Demo.RCL/Components/Pages/Docs/Card/Card_Doc_01_Documentation.razor

Lines changed: 33 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -8,27 +8,51 @@
88
MetaDescription="@metaDescription"
99
ImageUrl="@imageUrl" />
1010

11-
<DemoLink Href="@DemoRouteConstants.Demos_URL_Alerts" />
11+
<DemoLink Href="@DemoRouteConstants.Demos_URL_Card" />
1212

1313
<Section Class="p-0" Size="HeadingSize.H3" Name="Screenshot" PageUrl="@pageUrl" Link="screenshot">
1414
<img src="@imageUrl" class="img-fluid" alt="@metaTitle" />
1515
</Section>
1616

17-
<Section Class="p-0" Size="HeadingSize.H3" Name="Parameters" PageUrl="@pageUrl" Link="parameters">
18-
<DocxTable TItem="Alert" DocType="DocType.Parameters" />
17+
<Section Class="p-0" Size="HeadingSize.H3" Name="Card Parameters" PageUrl="@pageUrl" Link="card-parameters">
18+
<DocxTable TItem="Card" DocType="DocType.Parameters" />
1919
</Section>
2020

21-
<Section Class="p-0" Size="HeadingSize.H3" Name="Methods" PageUrl="@pageUrl" Link="methods">
22-
<DocxTable TItem="Alert" DocType="DocType.Methods" />
21+
<Section Class="p-0" Size="HeadingSize.H3" Name="CardBody Parameters" PageUrl="@pageUrl" Link="card-body-parameters">
22+
<DocxTable TItem="CardBody" DocType="DocType.Parameters" />
2323
</Section>
2424

25-
<Section Class="p-0" Size="HeadingSize.H3" Name="Events" PageUrl="@pageUrl" Link="events">
26-
<DocxTable TItem="Alert" DocType="DocType.Events" />
25+
<Section Class="p-0" Size="HeadingSize.H3" Name="CardFooter Parameters" PageUrl="@pageUrl" Link="card-footer-parameters">
26+
<DocxTable TItem="CardFooter" DocType="DocType.Parameters" />
27+
</Section>
28+
29+
<Section Class="p-0" Size="HeadingSize.H3" Name="CardGroup Parameters" PageUrl="@pageUrl" Link="card-group-parameters">
30+
<DocxTable TItem="CardGroup" DocType="DocType.Parameters" />
31+
</Section>
32+
33+
<Section Class="p-0" Size="HeadingSize.H3" Name="CardHeader Parameters" PageUrl="@pageUrl" Link="card-header-parameters">
34+
<DocxTable TItem="CardHeader" DocType="DocType.Parameters" />
35+
</Section>
36+
37+
<Section Class="p-0" Size="HeadingSize.H3" Name="CardLink Parameters" PageUrl="@pageUrl" Link="card-link-parameters">
38+
<DocxTable TItem="CardLink" DocType="DocType.Parameters" />
39+
</Section>
40+
41+
<Section Class="p-0" Size="HeadingSize.H3" Name="CardSubTitle Parameters" PageUrl="@pageUrl" Link="card-subtitle-parameters">
42+
<DocxTable TItem="CardSubTitle" DocType="DocType.Parameters" />
43+
</Section>
44+
45+
<Section Class="p-0" Size="HeadingSize.H3" Name="CardText Parameters" PageUrl="@pageUrl" Link="card-text-parameters">
46+
<DocxTable TItem="CardText" DocType="DocType.Parameters" />
47+
</Section>
48+
49+
<Section Class="p-0" Size="HeadingSize.H3" Name="CardTitle Parameters" PageUrl="@pageUrl" Link="card-title-parameters">
50+
<DocxTable TItem="CardTitle" DocType="DocType.Parameters" />
2751
</Section>
2852

2953
@code {
30-
private const string componentName = nameof(Alert);
31-
private const string pageUrl = DemoRouteConstants.Docs_URL_Alerts;
54+
private const string componentName = nameof(Card);
55+
private const string pageUrl = DemoRouteConstants.Docs_URL_Card;
3256
private const string pageTitle = componentName;
3357
private const string pageDescription = $"This documentation provides a comprehensive reference for the <code>{componentName}</code> component, guiding you through its configuration options.";
3458
private const string metaTitle = $"Blazor {componentName} Component";

BlazorBootstrap.Demo.RCL/Components/Pages/Docs/Carousel/Carousel_Doc_01_Documentation.razor

Lines changed: 13 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -8,27 +8,31 @@
88
MetaDescription="@metaDescription"
99
ImageUrl="@imageUrl" />
1010

11-
<DemoLink Href="@DemoRouteConstants.Demos_URL_Alerts" />
11+
<DemoLink Href="@DemoRouteConstants.Demos_URL_Carousel" />
1212

1313
<Section Class="p-0" Size="HeadingSize.H3" Name="Screenshot" PageUrl="@pageUrl" Link="screenshot">
1414
<img src="@imageUrl" class="img-fluid" alt="@metaTitle" />
1515
</Section>
1616

17-
<Section Class="p-0" Size="HeadingSize.H3" Name="Parameters" PageUrl="@pageUrl" Link="parameters">
18-
<DocxTable TItem="Alert" DocType="DocType.Parameters" />
17+
<Section Class="p-0" Size="HeadingSize.H3" Name="Carousel Parameters" PageUrl="@pageUrl" Link="carousel-parameters">
18+
<DocxTable TItem="Carousel" DocType="DocType.Parameters" />
1919
</Section>
2020

21-
<Section Class="p-0" Size="HeadingSize.H3" Name="Methods" PageUrl="@pageUrl" Link="methods">
22-
<DocxTable TItem="Alert" DocType="DocType.Methods" />
21+
<Section Class="p-0" Size="HeadingSize.H3" Name="Carousel Methods" PageUrl="@pageUrl" Link="carousel-methods">
22+
<DocxTable TItem="Carousel" DocType="DocType.Methods" />
2323
</Section>
2424

25-
<Section Class="p-0" Size="HeadingSize.H3" Name="Events" PageUrl="@pageUrl" Link="events">
26-
<DocxTable TItem="Alert" DocType="DocType.Events" />
25+
<Section Class="p-0" Size="HeadingSize.H3" Name="Carousel Events" PageUrl="@pageUrl" Link="carousel-events">
26+
<DocxTable TItem="Carousel" DocType="DocType.Events" />
27+
</Section>
28+
29+
<Section Class="p-0" Size="HeadingSize.H3" Name="CarouselItem Parameters" PageUrl="@pageUrl" Link="carousel-item-parameters">
30+
<DocxTable TItem="CarouselItem" DocType="DocType.Parameters" />
2731
</Section>
2832

2933
@code {
30-
private const string componentName = nameof(Alert);
31-
private const string pageUrl = DemoRouteConstants.Docs_URL_Alerts;
34+
private const string componentName = nameof(Carousel);
35+
private const string pageUrl = DemoRouteConstants.Docs_URL_Carousel;
3236
private const string pageTitle = componentName;
3337
private const string pageDescription = $"This documentation provides a comprehensive reference for the <code>{componentName}</code> component, guiding you through its configuration options.";
3438
private const string metaTitle = $"Blazor {componentName} Component";

BlazorBootstrap.Demo.RCL/Components/Pages/Docs/Charts/BarCharts/BarChart_Doc_01_Documentation.razor

Lines changed: 21 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -8,27 +8,39 @@
88
MetaDescription="@metaDescription"
99
ImageUrl="@imageUrl" />
1010

11-
<DemoLink Href="@DemoRouteConstants.Demos_URL_Alerts" />
11+
<DemoLink Href="@DemoRouteConstants.Demos_URL_BarChart" />
1212

1313
<Section Class="p-0" Size="HeadingSize.H3" Name="Screenshot" PageUrl="@pageUrl" Link="screenshot">
1414
<img src="@imageUrl" class="img-fluid" alt="@metaTitle" />
1515
</Section>
1616

17-
<Section Class="p-0" Size="HeadingSize.H3" Name="Parameters" PageUrl="@pageUrl" Link="parameters">
18-
<DocxTable TItem="Alert" DocType="DocType.Parameters" />
17+
<Section Class="p-0" Size="HeadingSize.H3" Name="BarChart Parameters" PageUrl="@pageUrl" Link="bar-chart-parameters">
18+
<DocxTable TItem="BarChart" DocType="DocType.Parameters" />
1919
</Section>
2020

21-
<Section Class="p-0" Size="HeadingSize.H3" Name="Methods" PageUrl="@pageUrl" Link="methods">
22-
<DocxTable TItem="Alert" DocType="DocType.Methods" />
21+
<Section Class="p-0" Size="HeadingSize.H3" Name="BarChart Methods" PageUrl="@pageUrl" Link="bar-chart-methods">
22+
<DocxTable TItem="BarChart" DocType="DocType.Methods" />
2323
</Section>
2424

25-
<Section Class="p-0" Size="HeadingSize.H3" Name="Events" PageUrl="@pageUrl" Link="events">
26-
<DocxTable TItem="Alert" DocType="DocType.Events" />
25+
<Section Class="p-0" Size="HeadingSize.H3" Name="ChartData Members" PageUrl="@pageUrl" Link="chart-data-members">
26+
<DocxTable TItem="ChartData" DocType="DocType.Parameters" />
27+
</Section>
28+
29+
<Section Class="p-0" Size="HeadingSize.H3" Name="BarChartDataset Members" PageUrl="@pageUrl" Link="bar-chart-dataset-members">
30+
<DocxTable TItem="BarChartDataset" DocType="DocType.Parameters" />
31+
</Section>
32+
33+
<Section Class="p-0" Size="HeadingSize.H3" Name="BarChartDatasetDataLabels Members" PageUrl="@pageUrl" Link="bar-chart-dataset-datalabels-members">
34+
<DocxTable TItem="BarChartDatasetDataLabels" DocType="DocType.Parameters" />
35+
</Section>
36+
37+
<Section Class="p-0" Size="HeadingSize.H3" Name="BarChartOptions Members" PageUrl="@pageUrl" Link="bar-chart-options-members">
38+
<DocxTable TItem="BarChartOptions" DocType="DocType.Parameters" />
2739
</Section>
2840

2941
@code {
30-
private const string componentName = nameof(Alert);
31-
private const string pageUrl = DemoRouteConstants.Docs_URL_Alerts;
42+
private const string componentName = nameof(BarChart);
43+
private const string pageUrl = DemoRouteConstants.Docs_URL_BarChart;
3244
private const string pageTitle = componentName;
3345
private const string pageDescription = $"This documentation provides a comprehensive reference for the <code>{componentName}</code> component, guiding you through its configuration options.";
3446
private const string metaTitle = $"Blazor {componentName} Component";

BlazorBootstrap.Demo.RCL/Components/Pages/Docs/Charts/DoughnutCharts/DoughnutChart_Doc_01_Documentation.razor

Lines changed: 21 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -8,27 +8,39 @@
88
MetaDescription="@metaDescription"
99
ImageUrl="@imageUrl" />
1010

11-
<DemoLink Href="@DemoRouteConstants.Demos_URL_Alerts" />
11+
<DemoLink Href="@DemoRouteConstants.Demos_URL_DoughnutChart" />
1212

1313
<Section Class="p-0" Size="HeadingSize.H3" Name="Screenshot" PageUrl="@pageUrl" Link="screenshot">
1414
<img src="@imageUrl" class="img-fluid" alt="@metaTitle" />
1515
</Section>
1616

17-
<Section Class="p-0" Size="HeadingSize.H3" Name="Parameters" PageUrl="@pageUrl" Link="parameters">
18-
<DocxTable TItem="Alert" DocType="DocType.Parameters" />
17+
<Section Class="p-0" Size="HeadingSize.H3" Name="DoughnutChart Parameters" PageUrl="@pageUrl" Link="doughnut-chart-parameters">
18+
<DocxTable TItem="DoughnutChart" DocType="DocType.Parameters" />
1919
</Section>
2020

21-
<Section Class="p-0" Size="HeadingSize.H3" Name="Methods" PageUrl="@pageUrl" Link="methods">
22-
<DocxTable TItem="Alert" DocType="DocType.Methods" />
21+
<Section Class="p-0" Size="HeadingSize.H3" Name="DoughnutChart Methods" PageUrl="@pageUrl" Link="doughnut-chart-methods">
22+
<DocxTable TItem="DoughnutChart" DocType="DocType.Methods" />
2323
</Section>
2424

25-
<Section Class="p-0" Size="HeadingSize.H3" Name="Events" PageUrl="@pageUrl" Link="events">
26-
<DocxTable TItem="Alert" DocType="DocType.Events" />
25+
<Section Class="p-0" Size="HeadingSize.H3" Name="ChartData Members" PageUrl="@pageUrl" Link="chart-data-members">
26+
<DocxTable TItem="ChartData" DocType="DocType.Parameters" />
27+
</Section>
28+
29+
<Section Class="p-0" Size="HeadingSize.H3" Name="DoughnutChartDataset Members" PageUrl="@pageUrl" Link="doughnut-chart-dataset-members">
30+
<DocxTable TItem="DoughnutChartDataset" DocType="DocType.Parameters" />
31+
</Section>
32+
33+
<Section Class="p-0" Size="HeadingSize.H3" Name="DoughnutChartDatasetDataLabels Members" PageUrl="@pageUrl" Link="doughnut-chart-dataset-datalabels-members">
34+
<DocxTable TItem="DoughnutChartDatasetDataLabels" DocType="DocType.Parameters" />
35+
</Section>
36+
37+
<Section Class="p-0" Size="HeadingSize.H3" Name="DoughnutChartOptions Members" PageUrl="@pageUrl" Link="doughnut-chart-options-members">
38+
<DocxTable TItem="DoughnutChartOptions" DocType="DocType.Parameters" />
2739
</Section>
2840

2941
@code {
30-
private const string componentName = nameof(Alert);
31-
private const string pageUrl = DemoRouteConstants.Docs_URL_Alerts;
42+
private const string componentName = nameof(DoughnutChart);
43+
private const string pageUrl = DemoRouteConstants.Docs_URL_DoughnutChart;
3244
private const string pageTitle = componentName;
3345
private const string pageDescription = $"This documentation provides a comprehensive reference for the <code>{componentName}</code> component, guiding you through its configuration options.";
3446
private const string metaTitle = $"Blazor {componentName} Component";

0 commit comments

Comments
 (0)