Skip to content

Commit fc61ad2

Browse files
committed
Demo.RCK - Section component updates
1 parent 8fbcb9e commit fc61ad2

File tree

45 files changed

+260
-260
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

45 files changed

+260
-260
lines changed

BlazorBootstrap.Demo.RCL/Components/Pages/Buttons/ButtonDocumentation.razor

Lines changed: 14 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -11,31 +11,31 @@
1111

1212
<CarbonAds />
1313

14-
<Section Size="HeadingSize.H2" Text="Examples" PageUrl="@pageUrl" HashTagName="examples">
14+
<Section Size="HeadingSize.H2" Name="Examples" PageUrl="@pageUrl" HashTagName="examples">
1515
<div>Bootstrap includes several predefined button styles, each serving its own semantic purpose, with a few extras thrown in for more control.</div>
1616
<Demo Type="typeof(Button_Demo_01_Examples)" />
1717
</Section>
1818

19-
<Section Size="HeadingSize.H2" Text="Button tags" PageUrl="@pageUrl" HashTagName="button-tags">
19+
<Section Size="HeadingSize.H2" Name="Button tags" PageUrl="@pageUrl" HashTagName="button-tags">
2020
<Demo Type="typeof(Button_Demo_02_Button_Tags)" />
2121
</Section>
2222

23-
<Section Size="HeadingSize.H2" Text="Outline buttons" PageUrl="@pageUrl" HashTagName="outline-buttons">
23+
<Section Size="HeadingSize.H2" Name="Outline buttons" PageUrl="@pageUrl" HashTagName="outline-buttons">
2424
<Demo Type="typeof(Button_Demo_03_Outline_Buttons)" />
2525

2626
<Callout Color="CalloutColor.Info">
2727
Some of the button styles use a relatively light foreground color, and should only be used on a dark background in order to have sufficient contrast.
2828
</Callout>
2929
</Section>
3030

31-
<Section Size="HeadingSize.H2" Text="Sizes" PageUrl="@pageUrl" HashTagName="sizes">
31+
<Section Size="HeadingSize.H2" Name="Sizes" PageUrl="@pageUrl" HashTagName="sizes">
3232
<div>Fancy larger or smaller buttons? Add <code>Size="ButtonSize.Large"</code> or <code>Size="ButtonSize.Small"</code> for additional sizes.</div>
3333
<Demo Type="typeof(Button_Demo_04_Sizes_A)" />
3434
<Demo Type="typeof(Button_Demo_04_Sizes_B)" />
3535
<Demo Type="typeof(Button_Demo_04_Sizes_C)" />
3636
</Section>
3737

38-
<Section Size="HeadingSize.H2" Text="Disabled state" PageUrl="@pageUrl" HashTagName="disabled-state">
38+
<Section Size="HeadingSize.H2" Name="Disabled state" PageUrl="@pageUrl" HashTagName="disabled-state">
3939
<div>Make buttons look inactive by adding the <code>Disabled="true"</code> boolean parameter to any <code>Button</code> component. Disabled buttons have <code>pointer-events: none</code> applied to, preventing hover and active states from triggering.</div>
4040

4141
<Callout Type="CalloutColor.Info">
@@ -46,43 +46,43 @@
4646
<Demo Type="typeof(Button_Demo_05_Disabled_State_B)" />
4747
</Section>
4848

49-
<Section Size="HeadingSize.H2" Text="Disable and enable state dynamically" PageUrl="@pageUrl" HashTagName="disable-and-enable-state-dynamically">
49+
<Section Size="HeadingSize.H2" Name="Disable and enable state dynamically" PageUrl="@pageUrl" HashTagName="disable-and-enable-state-dynamically">
5050
<Demo Type="typeof(Button_Demo_13_Disable_Enable_Dynamically)" />
5151
</Section>
5252

53-
<Section Size="HeadingSize.H2" Text="Block buttons" PageUrl="@pageUrl" HashTagName="block-buttons">
53+
<Section Size="HeadingSize.H2" Name="Block buttons" PageUrl="@pageUrl" HashTagName="block-buttons">
5454
<Demo Type="typeof(Button_Demo_06_Block_Buttons_A)" />
5555
<Demo Type="typeof(Button_Demo_06_Block_Buttons_B)" />
5656
<Demo Type="typeof(Button_Demo_06_Block_Buttons_C)" />
5757
<Demo Type="typeof(Button_Demo_06_Block_Buttons_D)" />
5858
</Section>
5959

60-
<Section Size="HeadingSize.H2" Text="Toggle states" PageUrl="@pageUrl" HashTagName="toggle-states">
60+
<Section Size="HeadingSize.H2" Name="Toggle states" PageUrl="@pageUrl" HashTagName="toggle-states">
6161
<Demo Type="typeof(Button_Demo_07_Toggle_States_A)" />
6262
<Demo Type="typeof(Button_Demo_07_Toggle_States_B)" />
6363
</Section>
6464

65-
<Section Size="HeadingSize.H2" Text="Loading spinner" PageUrl="@pageUrl" HashTagName="loading-spinner">
65+
<Section Size="HeadingSize.H2" Name="Loading spinner" PageUrl="@pageUrl" HashTagName="loading-spinner">
6666
<div>Use spinners within buttons to indicate an action is currently processing or taking place. You may also swap the text out of the spinner element and utilize button text as needed.</div>
6767
<Demo Type="typeof(Button_Demo_08_Loading_Spinner)" />
6868
</Section>
6969

70-
<Section Size="HeadingSize.H2" Text="Show/Hide loading spinner" PageUrl="@pageUrl" HashTagName="show-hide-loading-spinner">
70+
<Section Size="HeadingSize.H2" Name="Show/Hide loading spinner" PageUrl="@pageUrl" HashTagName="show-hide-loading-spinner">
7171
<Demo Type="typeof(Button_Demo_08_Show_Hide_Loading_Spinner)" Tabs="true" />
7272
</Section>
7373

74-
<Section Size="HeadingSize.H2" Text="Show Tooltip" PageUrl="@pageUrl" HashTagName="show-tooltip">
74+
<Section Size="HeadingSize.H2" Name="Show Tooltip" PageUrl="@pageUrl" HashTagName="show-tooltip">
7575
<div class="mb-3">
7676
Hover over the buttons below to see the four tooltips directions: top, right, bottom, and left.
7777
</div>
7878
<Demo Type="typeof(Button_Demo_09_A_Show_Tooltip)" />
7979
</Section>
8080

81-
<Section Size="HeadingSize.H2" Text="Dynamically update the tooltip text" PageUrl="@pageUrl" HashTagName="dynamically-update-the-tooltip-text">
81+
<Section Size="HeadingSize.H2" Name="Dynamically update the tooltip text" PageUrl="@pageUrl" HashTagName="dynamically-update-the-tooltip-text">
8282
<Demo Type="typeof(Button_Demo_09_B_Dynamically_update_the_tooltip_text)" />
8383
</Section>
8484

85-
<Section Size="HeadingSize.H2" Text="Custom tooltips" PageUrl="@pageUrl" HashTagName="custom-tooltips">
85+
<Section Size="HeadingSize.H2" Name="Custom tooltips" PageUrl="@pageUrl" HashTagName="custom-tooltips">
8686
<div class="mb-3">
8787
Blazor Bootstrap includes several predefined tooltip styles, each serving its own semantic purpose.
8888
The <b>TooltipColor</b> parameter can be used to customize the color of the tooltip.
@@ -94,7 +94,7 @@
9494
</Callout>
9595
</Section>
9696

97-
<Section Size="HeadingSize.H2" Text="Click events" PageUrl="@pageUrl" HashTagName="click-events">
97+
<Section Size="HeadingSize.H2" Name="Click events" PageUrl="@pageUrl" HashTagName="click-events">
9898
<Demo Type="typeof(Button_Demo_10_Click_Event)" />
9999
<Demo Type="typeof(Button_Demo_11_Double_Click_Event)" />
100100
<Demo Type="typeof(Button_Demo_12_Click_Event_With_Args)" />

BlazorBootstrap.Demo.RCL/Components/Pages/Callout/CalloutDocumentation.razor

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -11,19 +11,19 @@
1111

1212
<CarbonAds />
1313

14-
<Section Size="HeadingSize.H4" Text="Examples" PageUrl="@pageUrl" HashTagName="examples">
14+
<Section Size="HeadingSize.H4" Name="Examples" PageUrl="@pageUrl" HashTagName="examples">
1515
<Demo Type="typeof(Callout_Demo_01_Examples)" />
1616
</Section>
1717

18-
<Section Size="HeadingSize.H4" Text="Custom heading" PageUrl="@pageUrl" HashTagName="custom-heading">
18+
<Section Size="HeadingSize.H4" Name="Custom heading" PageUrl="@pageUrl" HashTagName="custom-heading">
1919
<Demo Type="typeof(Callout_Demo_02_Change_Heading)" />
2020
</Section>
2121

22-
<Section Size="HeadingSize.H4" Text="Large text" PageUrl="@pageUrl" HashTagName="large-text">
22+
<Section Size="HeadingSize.H4" Name="Large text" PageUrl="@pageUrl" HashTagName="large-text">
2323
<Demo Type="typeof(Callout_Demo_03_Large_Text)" />
2424
</Section>
2525

26-
<Section Size="HeadingSize.H4" Text="Hide heading" PageUrl="@pageUrl" HashTagName="hide-heading">
26+
<Section Size="HeadingSize.H4" Name="Hide heading" PageUrl="@pageUrl" HashTagName="hide-heading">
2727
<Demo Type="typeof(Callout_Demo_04_Hide_Heading)" />
2828
</Section>
2929

BlazorBootstrap.Demo.RCL/Components/Pages/Card/CardDocumentation.razor

Lines changed: 14 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -11,92 +11,92 @@
1111

1212
<CarbonAds />
1313

14-
<Section Size="HeadingSize.H2" Text="About" PageUrl="@pageUrl" HashTagName="about">
14+
<Section Size="HeadingSize.H2" Name="About" PageUrl="@pageUrl" HashTagName="about">
1515
<div class="mb-3">
1616
A card is a flexible and extensible content container. It includes options for headers and footers, a wide variety of content, contextual background colors, and powerful display options.
1717
</div>
1818
</Section>
1919

20-
<Section Size="HeadingSize.H2" Text="Examples" PageUrl="@pageUrl" HashTagName="examples">
20+
<Section Size="HeadingSize.H2" Name="Examples" PageUrl="@pageUrl" HashTagName="examples">
2121
<div class="mb-3">
2222
Below is an example of a basic card with mixed content and a fixed width.
2323
Cards have no fixed width to start, so they'll naturally fill the full width of its parent element.
2424
</div>
2525
<Demo Type="typeof(Card_Demo_01_Examples)" Tabs="false" />
2626
</Section>
2727

28-
<Section Size="HeadingSize.H2" Text="Content types" PageUrl="@pageUrl" HashTagName="content-types">
28+
<Section Size="HeadingSize.H2" Name="Content types" PageUrl="@pageUrl" HashTagName="content-types">
2929
<div class="mb-3">
3030
Cards support a wide variety of content, including images, text, list groups, links, and more.
3131
Below are examples of what’s supported.
3232
</div>
3333
</Section>
3434

35-
<Section Size="HeadingSize.H2" Text="Body" PageUrl="@pageUrl" HashTagName="body">
35+
<Section Size="HeadingSize.H2" Name="Body" PageUrl="@pageUrl" HashTagName="body">
3636
<div class="mb-3">
3737
The building block of a card is the <b>CardBody</b>. Use it whenever you need a padded section within a card.
3838
</div>
3939
<Demo Type="typeof(Card_Demo_02_Content_Types_Body)" Tabs="false" />
4040
</Section>
4141

42-
<Section Size="HeadingSize.H2" Text="Titles, text, and links" PageUrl="@pageUrl" HashTagName="titles-text-and-links">
42+
<Section Size="HeadingSize.H2" Name="Titles, text, and links" PageUrl="@pageUrl" HashTagName="titles-text-and-links">
4343
<Demo Type="typeof(Card_Demo_03_Content_Types_Titles_Text_And_Links)" Tabs="false" />
4444
</Section>
4545

46-
<Section Size="HeadingSize.H2" Text="Images" PageUrl="@pageUrl" HashTagName="images">
46+
<Section Size="HeadingSize.H2" Name="Images" PageUrl="@pageUrl" HashTagName="images">
4747
<Demo Type="typeof(Card_Demo_04_Content_Types_Images)" Tabs="true" />
4848
</Section>
4949

50-
<Section Size="HeadingSize.H2" Text="List groups" PageUrl="@pageUrl" HashTagName="list-groups">
50+
<Section Size="HeadingSize.H2" Name="List groups" PageUrl="@pageUrl" HashTagName="list-groups">
5151
<div class="mb-3">
5252
Create lists of content in a card with a flush list group.
5353
</div>
5454
<Demo Type="typeof(Card_Demo_05_Content_Types_List_Groups)" Tabs="false" />
5555
</Section>
5656

57-
<Section Size="HeadingSize.H2" Text="Kitchen sink" PageUrl="@pageUrl" HashTagName="kitchen-sink">
57+
<Section Size="HeadingSize.H2" Name="Kitchen sink" PageUrl="@pageUrl" HashTagName="kitchen-sink">
5858
<div class="mb-3">
5959
Mix and match multiple content types to create the card you need, or throw everything in there.
6060
Shown below are image styles, blocks, text styles, and a list group—all wrapped in a fixed-width card.
6161
</div>
6262
<Demo Type="typeof(Card_Demo_06_Content_Types_Kitchen_Sink)" Tabs="false" />
6363
</Section>
6464

65-
<Section Size="HeadingSize.H2" Text="Header and footer" PageUrl="@pageUrl" HashTagName="header-and-footer">
65+
<Section Size="HeadingSize.H2" Name="Header and footer" PageUrl="@pageUrl" HashTagName="header-and-footer">
6666
<div class="mb-3">
6767
Add an optional header and/or footer within a card.
6868
</div>
6969
<Demo Type="typeof(Card_Demo_07_Header_And_Footer)" Tabs="false" />
7070
</Section>
7171

72-
<Section Size="HeadingSize.H2" Text="Sizing" PageUrl="@pageUrl" HashTagName="sizing">
72+
<Section Size="HeadingSize.H2" Name="Sizing" PageUrl="@pageUrl" HashTagName="sizing">
7373
<div class="mb-3">
7474
Cards assume no specific width to start, so they’ll be 100% wide unless otherwise stated.
7575
You can change this as needed with custom CSS, grid classes, grid Sass mixins, or utilities.
7676
</div>
7777
<Demo Type="typeof(Card_Demo_08_Sizing)" Tabs="false" />
7878
</Section>
7979

80-
<Section Size="HeadingSize.H2" Text="Text alignment" PageUrl="@pageUrl" HashTagName="text-alignment">
80+
<Section Size="HeadingSize.H2" Name="Text alignment" PageUrl="@pageUrl" HashTagName="text-alignment">
8181
<div class="mb-3">
8282
You can quickly change the text alignment of any card—in its entirety or specific parts—with our <b>TextAlignment</b> parameter.
8383
</div>
8484
<Demo Type="typeof(Card_Demo_09_Text_Alignment)" Tabs="true" />
8585
</Section>
8686

87-
<Section Size="HeadingSize.H2" Text="Background and color" PageUrl="@pageUrl" HashTagName="background-and-color">
87+
<Section Size="HeadingSize.H2" Name="Background and color" PageUrl="@pageUrl" HashTagName="background-and-color">
8888
<Demo Type="typeof(Card_Demo_10_Background_And_Color)" Tabs="true" />
8989
</Section>
9090

91-
<Section Size="HeadingSize.H2" Text="Card groups" PageUrl="@pageUrl" HashTagName="card-groups">
91+
<Section Size="HeadingSize.H2" Name="Card groups" PageUrl="@pageUrl" HashTagName="card-groups">
9292
<div class="mb-3">
9393
Use card groups to render cards as a single, attached element with equal width and height columns.
9494
Card groups start off stacked and use display: flex; to become attached with uniform dimensions starting at the sm breakpoint.
9595
</div>
9696
<Demo Type="typeof(Card_Demo_11_Card_Groups)" Tabs="true" />
9797
</Section>
9898

99-
<Section Size="HeadingSize.H2" Text="Card groups with footer" PageUrl="@pageUrl" HashTagName="card-groups-with-footer">
99+
<Section Size="HeadingSize.H2" Name="Card groups with footer" PageUrl="@pageUrl" HashTagName="card-groups-with-footer">
100100
<div class="mb-3">
101101
When using card groups with footers, their content will automatically line up.
102102
</div>

BlazorBootstrap.Demo.RCL/Components/Pages/Carousel/CarouselDocumentation.razor

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -11,12 +11,12 @@
1111

1212
<CarbonAds />
1313

14-
<Section Size="HeadingSize.H2" Text="Examples" PageUrl="@pageUrl" HashTagName="examples">
14+
<Section Size="HeadingSize.H2" Name="Examples" PageUrl="@pageUrl" HashTagName="examples">
1515
<div class="mb-3">Here is a basic example of a carousel with three slides.</div>
1616
<Demo Type="typeof(Carousel_Demo_01_Examples)" Tabs="true" />
1717
</Section>
1818

19-
<Section Size="HeadingSize.H2" Text="Indicators" PageUrl="@pageUrl" HashTagName="indicators">
19+
<Section Size="HeadingSize.H2" Name="Indicators" PageUrl="@pageUrl" HashTagName="indicators">
2020
<div class="mb-3">
2121
You can add indicators to the carousel, alongside the previous/next controls.
2222
The indicators allow users to jump directly to a particular slide.
@@ -25,22 +25,22 @@
2525
<Demo Type="typeof(Carousel_Demo_02_Indicators)" Tabs="true" />
2626
</Section>
2727

28-
<Section Size="HeadingSize.H2" Text="Captions" PageUrl="@pageUrl" HashTagName="captions">
28+
<Section Size="HeadingSize.H2" Name="Captions" PageUrl="@pageUrl" HashTagName="captions">
2929
<div class="mb-3">
3030
You can add captions to your slides with the <code>CarouselCaption</code> component within any <code>CarouselItem</code>.
3131
They can be easily hidden on smaller viewports.
3232
</div>
3333
<Demo Type="typeof(Carousel_Demo_03_Captions)" Tabs="true" />
3434
</Section>
3535

36-
<Section Size="HeadingSize.H2" Text="Crossfade" PageUrl="@pageUrl" HashTagName="Crossfade">
36+
<Section Size="HeadingSize.H2" Name="Crossfade" PageUrl="@pageUrl" HashTagName="Crossfade">
3737
<div class="mb-3">
3838
To animate slides with a fading transition instead of sliding, set <code>Crossfade</code> to <code>true</code>.
3939
</div>
4040
<Demo Type="typeof(Carousel_Demo_04_Crossfade)" Tabs="true" />
4141
</Section>
4242

43-
<Section Size="HeadingSize.H2" Text="Autoplaying carousels" PageUrl="@pageUrl" HashTagName="autoplaying-carousels">
43+
<Section Size="HeadingSize.H2" Name="Autoplaying carousels" PageUrl="@pageUrl" HashTagName="autoplaying-carousels">
4444
<div class="mb-3">
4545
You can make your carousels autoplay on page load by setting the <code>Autoplay</code> parameter to <code>CarouselAutoPlay.StartOnPageLoad</code>.
4646
Autoplaying carousels automatically pause while hovered with the mouse.
@@ -53,29 +53,29 @@
5353
<Demo Type="typeof(Carousel_Demo_05_Autoplay_B_StartAfterUserInteraction)" Tabs="true" />
5454
</Section>
5555

56-
<Section Size="HeadingSize.H2" Text="Individual carousel item interval" PageUrl="@pageUrl" HashTagName="individual-carousel-item-interval">
56+
<Section Size="HeadingSize.H2" Name="Individual carousel item interval" PageUrl="@pageUrl" HashTagName="individual-carousel-item-interval">
5757
<div class="mb-3">
5858
Add <code>Interval</code> parameter to a <code>CarouselItem</code> component to change the amount of time to delay between automatically cycling to the next item.
5959
</div>
6060
<Demo Type="typeof(Carousel_Demo_06_Individual_Carouselitem_Interval)" Tabs="true" />
6161
</Section>
6262

63-
<Section Size="HeadingSize.H2" Text="Autoplaying carousels without controls" PageUrl="@pageUrl" HashTagName="autoplaying-carousels-without-controls">
63+
<Section Size="HeadingSize.H2" Name="Autoplaying carousels without controls" PageUrl="@pageUrl" HashTagName="autoplaying-carousels-without-controls">
6464
<div class="mb-3">
6565
Hide the controls by setting <code>ShowPreviousNextControls</code> parameter to <code>false</code>.
6666
</div>
6767
<Demo Type="typeof(Carousel_Demo_07_Autoplaying_Carousels_without_Controls)" Tabs="true" />
6868
</Section>
6969

70-
<Section Size="HeadingSize.H2" Text="Disable touch swiping" PageUrl="@pageUrl" HashTagName="disable-touch-swiping">
70+
<Section Size="HeadingSize.H2" Name="Disable touch swiping" PageUrl="@pageUrl" HashTagName="disable-touch-swiping">
7171
<div class="mb-3">
7272
Carousels support swiping left/right on touchscreen devices to move between slides.
7373
This can be disabled by setting the <code>Touch</code> option to <code>false</code>.
7474
</div>
7575
<Demo Type="typeof(Carousel_Demo_08_Touch)" Tabs="true" />
7676
</Section>
7777

78-
<Section Size="HeadingSize.H2" Text="Events" PageUrl="@pageUrl" HashTagName="events">
78+
<Section Size="HeadingSize.H2" Name="Events" PageUrl="@pageUrl" HashTagName="events">
7979
<div class="mb-3">
8080
Blazor Bootstrap Carousel component exposes a two events for hooking into Carousel functionality.
8181
<table class="table">

BlazorBootstrap.Demo.RCL/Components/Pages/Charts/BarCharts/BarChartDocumentation.razor

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -11,12 +11,12 @@
1111

1212
<CarbonAds />
1313

14-
<Section Size="HeadingSize.H4" Text="Prerequisites" PageUrl="@pageUrl" HashTagName="prerequisites" />
14+
<Section Size="HeadingSize.H4" Name="Prerequisites" PageUrl="@pageUrl" HashTagName="prerequisites" />
1515
<div class="mb-3">
1616
Refer to the <a href="/getting-started/blazor-webassembly">getting started guide</a> for setting up charts.
1717
</div>
1818

19-
<Section Size="HeadingSize.H4" Text="How it works" PageUrl="@pageUrl" HashTagName="how-it-works" />
19+
<Section Size="HeadingSize.H4" Name="How it works" PageUrl="@pageUrl" HashTagName="how-it-works" />
2020
<div class="mb-3">
2121
In the following example, a <a href="/utils/color-utility#categorical-12-color">categorical 12-color</a> palette is used.
2222
</div>
@@ -26,20 +26,20 @@
2626
</Callout>
2727
<Demo Type="typeof(BarChart_Demo_01_Examples)" Tabs="true" />
2828

29-
<Section Size="HeadingSize.H4" Text="Horizontal bar chart" PageUrl="@pageUrl" HashTagName="horizontal-bar-chart" />
29+
<Section Size="HeadingSize.H4" Name="Horizontal bar chart" PageUrl="@pageUrl" HashTagName="horizontal-bar-chart" />
3030
<Demo Type="typeof(BarChart_Demo_02_Horizontal_BarChart)" Tabs="true" />
3131

32-
<Section Size="HeadingSize.H4" Text="Stacked bar chart" PageUrl="@pageUrl" HashTagName="stacked-bar-chart" />
32+
<Section Size="HeadingSize.H4" Name="Stacked bar chart" PageUrl="@pageUrl" HashTagName="stacked-bar-chart" />
3333
<Demo Type="typeof(BarChart_Demo_03_Stacked_BarChart)" Tabs="true" />
3434

35-
<Section Size="HeadingSize.H4" Text="Locale" PageUrl="@pageUrl" HashTagName="locale" />
35+
<Section Size="HeadingSize.H4" Name="Locale" PageUrl="@pageUrl" HashTagName="locale" />
3636
<div class="my-3">
3737
By default, the chart is using the default locale of the platform on which it is running.
3838
In the following example, you will see the chart in the <b>German</b> locale (<b>de_DE</b>).
3939
</div>
4040
<Demo Type="typeof(BarChart_Demo_04_Locale)" Tabs="true" />
4141

42-
<Section Size="HeadingSize.H4" Text="Data labels" PageUrl="@pageUrl" HashTagName="data-labels" />
42+
<Section Size="HeadingSize.H4" Name="Data labels" PageUrl="@pageUrl" HashTagName="data-labels" />
4343
<Demo Type="typeof(BarChart_Demo_05_Stacked_BarChart_with_Datalabels)" Tabs="true" />
4444

4545
@code {

0 commit comments

Comments
 (0)