Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion components/chart/templates.md
Original file line number Diff line number Diff line change
Expand Up @@ -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)

4 changes: 2 additions & 2 deletions knowledge-base/chart-series-gradient-color.md
Original file line number Diff line number Diff line change
Expand Up @@ -54,8 +54,8 @@ How can I apply a gradient color effect on the Telerik UI for Blazor Chart serie
@code {
private List<object> ChartData = new List<object>() { 10, 2, 7, 5, 15 };
}
```
````

## See Also

* [Chart - Overview](slug:components/chart/overview)
* [Chart Overview](slug:components/chart/overview)
2 changes: 1 addition & 1 deletion knowledge-base/drawer-small-screen.md
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
2 changes: 1 addition & 1 deletion knowledge-base/gauge-pointer-tooltip.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down
2 changes: 1 addition & 1 deletion knowledge-base/grid-combobox-in-filtermenu-empty.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -125,7 +125,7 @@ Note that the [`HeaderTemplate`](slug:grid-templates-column-header) does not rec
public double? StartYear10 { get; set; }
}
}
```
````

## See Also

Expand Down
Loading