diff --git a/components/chart/templates.md b/components/chart/templates.md index 0b35fcc33f..fe744c4533 100644 --- a/components/chart/templates.md +++ b/components/chart/templates.md @@ -85,5 +85,5 @@ Starting in **version 7.0.0**, when all Chart series have no data to show, a def ## See Also * [Live Demo: Chart - No Data Template](https://demos.telerik.com/blazor-ui/chart/no-data-template) - * [How to Show Empty Chart Instead the Default No Data Template](slug: chart-kb-display-empty-chart) + * [How to Show Empty Chart Instead the Default No Data Template](slug:chart-kb-display-empty-chart) diff --git a/knowledge-base/chart-series-gradient-color.md b/knowledge-base/chart-series-gradient-color.md index fe17903cdf..617d4901a6 100644 --- a/knowledge-base/chart-series-gradient-color.md +++ b/knowledge-base/chart-series-gradient-color.md @@ -54,8 +54,8 @@ How can I apply a gradient color effect on the Telerik UI for Blazor Chart serie @code { private List ChartData = new List() { 10, 2, 7, 5, 15 }; } -``` +```` ## See Also -* [Chart - Overview](slug:components/chart/overview) +* [Chart Overview](slug:components/chart/overview) diff --git a/knowledge-base/drawer-small-screen.md b/knowledge-base/drawer-small-screen.md index fdf3f9d56b..624f023826 100644 --- a/knowledge-base/drawer-small-screen.md +++ b/knowledge-base/drawer-small-screen.md @@ -29,7 +29,7 @@ I would like to put the Drawer in [MiniMode](slug:drawer-mini-mode) on small scr ## Solution 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). -2. Use the MediaQuery `[OnChange event](slug:mediaquery-events)` to put the Drawer in MiniMode. +2. Use the MediaQuery [`OnChange` event](slug:mediaquery-events) to put the Drawer in MiniMode. >caption Put the Drawer in MiniMode on small screens diff --git a/knowledge-base/gauge-pointer-tooltip.md b/knowledge-base/gauge-pointer-tooltip.md index 4d903a1852..89c5029d99 100644 --- a/knowledge-base/gauge-pointer-tooltip.md +++ b/knowledge-base/gauge-pointer-tooltip.md @@ -35,7 +35,7 @@ How can I add a Tooltip to the Blazor Arc or Radial Gauge? I want to show a Tool To add a Tooltip for the pointer of the Gauge: 1. Set the [`Color` of the Gauge Pointer](slug:arc-gauge-pointers#color). -1. Declare an instance of `TelerikTooltip` ([Telerik UI for Blazor Tooltip])(slug:tooltip-overview). +1. Declare [`TelerikTooltip`](slug:tooltip-overview) component instance. 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. The example below demonstrates how to add a Tooltip to the Arc Gauge. The same approach applies to all other Gauge types. diff --git a/knowledge-base/grid-combobox-in-filtermenu-empty.md b/knowledge-base/grid-combobox-in-filtermenu-empty.md index d771739f75..466324bd17 100644 --- a/knowledge-base/grid-combobox-in-filtermenu-empty.md +++ b/knowledge-base/grid-combobox-in-filtermenu-empty.md @@ -33,7 +33,7 @@ The behavior is related to the filter menu popup. It is rendered outside the Gri ## Suggested Workarounds * 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. -* 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). +* 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). * Load the ComboBox data synchronously. * Enable Grid filtering with a delay, after the ComboBox data has been loaded. diff --git a/knowledge-base/grid-dynamically-adjusting-column-header-styles.md b/knowledge-base/grid-dynamically-adjusting-column-header-styles.md index 62b107d9ee..b637145fd7 100644 --- a/knowledge-base/grid-dynamically-adjusting-column-header-styles.md +++ b/knowledge-base/grid-dynamically-adjusting-column-header-styles.md @@ -125,7 +125,7 @@ Note that the [`HeaderTemplate`](slug:grid-templates-column-header) does not rec public double? StartYear10 { get; set; } } } -``` +```` ## See Also