Skip to content

Commit a392a8b

Browse files
committed
Fix slugs
1 parent 20b9197 commit a392a8b

6 files changed

+7
-7
lines changed

components/chart/templates.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -85,5 +85,5 @@ Starting in **version 7.0.0**, when all Chart series have no data to show, a def
8585
## See Also
8686

8787
* [Live Demo: Chart - No Data Template](https://demos.telerik.com/blazor-ui/chart/no-data-template)
88-
* [How to Show Empty Chart Instead the Default No Data Template](slug: chart-kb-display-empty-chart)
88+
* [How to Show Empty Chart Instead the Default No Data Template](slug:chart-kb-display-empty-chart)
8989

knowledge-base/chart-series-gradient-color.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -54,8 +54,8 @@ How can I apply a gradient color effect on the Telerik UI for Blazor Chart serie
5454
@code {
5555
private List<object> ChartData = new List<object>() { 10, 2, 7, 5, 15 };
5656
}
57-
```
57+
````
5858

5959
## See Also
6060

61-
* [Chart - Overview](slug:components/chart/overview)
61+
* [Chart Overview](slug:components/chart/overview)

knowledge-base/drawer-small-screen.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ I would like to put the Drawer in [MiniMode](slug:drawer-mini-mode) on small scr
2929
## Solution
3030

3131
1. The Blazor application has to be aware of the current browser width. One way to achieve this is to use the [TelerikMediaQuery component](slug:mediaquery-overview).
32-
2. Use the MediaQuery `[OnChange event](slug:mediaquery-events)` to put the Drawer in MiniMode.
32+
2. Use the MediaQuery [`OnChange` event](slug:mediaquery-events) to put the Drawer in MiniMode.
3333

3434
>caption Put the Drawer in MiniMode on small screens
3535

knowledge-base/gauge-pointer-tooltip.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ How can I add a Tooltip to the Blazor Arc or Radial Gauge? I want to show a Tool
3535
To add a Tooltip for the pointer of the Gauge:
3636

3737
1. Set the [`Color` of the Gauge Pointer](slug:arc-gauge-pointers#color).
38-
1. Declare an instance of `TelerikTooltip` ([Telerik UI for Blazor Tooltip])(slug:tooltip-overview).
38+
1. Declare [`TelerikTooltip`](slug:tooltip-overview) component instance.
3939
1. Set the [`TargetSelector`](slug:tooltip-overview#tooltip-parameters) of the Tooltip to a specific path element within the SVG rendered by the Gauge. Use the specified pointer color in the selector.
4040

4141
The example below demonstrates how to add a Tooltip to the Arc Gauge. The same approach applies to all other Gauge types.

knowledge-base/grid-combobox-in-filtermenu-empty.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ The behavior is related to the filter menu popup. It is rendered outside the Gri
3333

3434
## Suggested Workarounds
3535
* Upgrade to UI for Blazor **3.0** or later. It uses different `OnRead` mechanism for loading asynchronous data and updating the ComboBox. The component dropdown will update even after it has been opened.
36-
* Load the ComboBox data before the filter menu is opened for the first time. Use Blazor events like `OnInitializedAsync`, or Grid events like [**OnStateInit**](slug:grid-state #events) or [OnRead](slug:grid-events#read-event).
36+
* Load the ComboBox data before the filter menu is opened for the first time. Use Blazor events like `OnInitializedAsync`, or Grid events like [`OnStateInit`](slug:grid-state#events) or [`OnRead`](slug:grid-events#read-event).
3737
* Load the ComboBox data synchronously.
3838
* Enable Grid filtering with a delay, after the ComboBox data has been loaded.
3939

knowledge-base/grid-dynamically-adjusting-column-header-styles.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -125,7 +125,7 @@ Note that the [`HeaderTemplate`](slug:grid-templates-column-header) does not rec
125125
public double? StartYear10 { get; set; }
126126
}
127127
}
128-
```
128+
````
129129

130130
## See Also
131131

0 commit comments

Comments
 (0)