Skip to content

Commit 512dcfe

Browse files
committed
docs: Migrate to simpler slug syntax
1 parent 9cd193c commit 512dcfe

File tree

1,252 files changed

+5785
-5785
lines changed

Some content is hidden

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

1,252 files changed

+5785
-5785
lines changed

_contentTemplates/chart/chart-tooltip-context-templates.md

+5-5
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,16 @@
11
#context-parameter-information
22
* `FormattedValue` - maps to the default rendering of the tooltip, formatted as a string.
3-
* Use this when the chart's data is bound by [Independent Series Binding](slug://components/chart/databind#independent-series-binding). You can parse this to a numerical value (`int`, `double`, etc.) in order to apply formatting. Otherwise, use the `DataItem` to get the value of the point.
3+
* Use this when the chart's data is bound by [Independent Series Binding](slug:components/chart/databind#independent-series-binding). You can parse this to a numerical value (`int`, `double`, etc.) in order to apply formatting. Otherwise, use the `DataItem` to get the value of the point.
44

55
* `DataItem` - provides the data model of the current series item. You need to cast it to the type from your datasource, which needs to be serializable.
66

7-
* If you are using a [Date Axis](slug://components/chart/date-axis), the `DataItem` will contain the only the aggregated value in the corresponding y-value field, because it is a collection of more than one items. See the `Category` below for details.
7+
* If you are using a [Date Axis](slug:components/chart/date-axis), the `DataItem` will contain the only the aggregated value in the corresponding y-value field, because it is a collection of more than one items. See the `Category` below for details.
88

9-
* `Category` - provides information on the category the data point is located in. You need to cast it to the type in your data source, for example `DateTime`, `string`, `int` or another type. The `Category` parameter is applicable to [Categorical Charts](slug://components/chart/databind#series-types).
9+
* `Category` - provides information on the category the data point is located in. You need to cast it to the type in your data source, for example `DateTime`, `string`, `int` or another type. The `Category` parameter is applicable to [Categorical Charts](slug:components/chart/databind#series-types).
1010

11-
* When using a [Date Axis](slug://components/chart/date-axis), you can use it, together with the `BaseUnit` value of the axis, to filter the data source and obtain the actual data items from the data source in case you want to provide extra information about them.
11+
* When using a [Date Axis](slug:components/chart/date-axis), you can use it, together with the `BaseUnit` value of the axis, to filter the data source and obtain the actual data items from the data source in case you want to provide extra information about them.
1212

13-
* `Percentage` - applicable to [Donut](slug://components/chart/types/donut), [Pie](slug://components/chart/types/pie) and [Stacked 100%](slug://components/chart/stack#stack-100) Charts - the percentage value of the current data point from the whole.
13+
* `Percentage` - applicable to [Donut](slug:components/chart/types/donut), [Pie](slug:components/chart/types/pie) and [Stacked 100%](slug:components/chart/stack#stack-100) Charts - the percentage value of the current data point from the whole.
1414

1515
* `SeriesIndex` - provides the index of the `<ChartSeries>` the data point belongs to.
1616

_contentTemplates/chart/link-to-basics.md

+6-6
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#understand-basics-and-databinding-first
2-
This article assumes you are familiar with the [chart basics](slug://components/chart/overview) and [data binding](slug://components/chart/databind).
2+
This article assumes you are familiar with the [chart basics](slug:components/chart/overview) and [data binding](slug:components/chart/databind).
33
#end
44

55
#color-field-bar-column
@@ -109,9 +109,9 @@ You can render the lines between the points with different styles. The supported
109109

110110
* `Normal`—This is the default style. It produces a straight line between data points.
111111

112-
* `Step`—The style renders the connection between data points through vertical and horizontal lines. It is suitable for indicating that the value is constant between the changes. Supported for [categorical](slug://components/chart/databind#series-types) types of [Line](slug://components/chart/types/line) charts only, but not for scatter charts.
112+
* `Step`—The style renders the connection between data points through vertical and horizontal lines. It is suitable for indicating that the value is constant between the changes. Supported for [categorical](slug:components/chart/databind#series-types) types of [Line](slug:components/chart/types/line) charts only, but not for scatter charts.
113113

114-
* `Smooth`—This style causes the Chart to display a fitted curve through data points. It is suitable when the data requires to be displayed with a curve, or when you wish to connect the points with smooth instead of straight lines. Not supported with [stacked](slug://components/chart/stack) series with missing values.
114+
* `Smooth`—This style causes the Chart to display a fitted curve through data points. It is suitable when the data requires to be displayed with a curve, or when you wish to connect the points with smooth instead of straight lines. Not supported with [stacked](slug:components/chart/stack) series with missing values.
115115

116116
#end
117117

@@ -150,7 +150,7 @@ When configuring nested properties and child elements in your chart, the inner t
150150

151151
#configurable-nested-chart-settings-categorical
152152

153-
An example of this is the rotation the Labels of a [categorical](slug://components/chart/databind#series-types) chart. You can use the
153+
An example of this is the rotation the Labels of a [categorical](slug:components/chart/databind#series-types) chart. You can use the
154154

155155
`ChartCategoryAxes` > `ChartCategoryAxis` > `ChartCategoryAxisLabels` > `ChartCategoryAxisLabelsRotation` tag
156156

@@ -162,7 +162,7 @@ This approach is not limited only to the Labels - it can be used with all tags t
162162

163163
#configurable-nested-chart-settings-numerical
164164

165-
For example, for [numerical](slug://components/chart/databind#series-types) charts you can rotate the Labels for `ChartXAxes` or `ChartYAxes` depending on your application design needs and layout. This can be done through the
165+
For example, for [numerical](slug:components/chart/databind#series-types) charts you can rotate the Labels for `ChartXAxes` or `ChartYAxes` depending on your application design needs and layout. This can be done through the
166166

167167
`ChartXAxes` > `ChartXAxis` > `ChartXAxisLabelsRotation` tag
168168

@@ -174,7 +174,7 @@ This approach is not limited only to the Labels - it can be used with to all tag
174174

175175
#configurable-nested-chart-settings-axis-free
176176

177-
For example, for [axis-free](slug://components/chart/databind#series-types) charts you can rotate their Labels, Title, Legend and others. Example for doing so is customizing the Chart Series Labels by using the parameters in the
177+
For example, for [axis-free](slug:components/chart/databind#series-types) charts you can rotate their Labels, Title, Legend and others. Example for doing so is customizing the Chart Series Labels by using the parameters in the
178178

179179
`ChartSeriesItems` > `ChartSeries` > `ChartSeriesLabels` tag and its child tags.
180180

_contentTemplates/common/click-events.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ The `OnRowContextMenu` event fires when the user:
5252
* Right-clicks or taps-and-holds a data row;
5353
* Hits the context menu keyboard button while the row has focus. This scenario requires enabled keyboard navigation (`Navigable="true"`).
5454

55-
Use `OnRowContextMenu` to [integrate the Context menu](slug://contextmenu-integration#context-menu-for-a-grid-row) with the table rows.
55+
Use `OnRowContextMenu` to [integrate the Context menu](slug:contextmenu-integration#context-menu-for-a-grid-row) with the table rows.
5656

5757
#end
5858

_contentTemplates/common/dropdowns-virtualization.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ This section will explain the parameters and behaviors that are related to the v
1111
>caption To enable UI virtualization, you need to set the following parameters of the component:
1212
1313
* `ScrollMode` - `Telerik.Blazor.DropDownScrollMode` - set it to `DropDownScrollMode.Virtual`. It defaults to the "regular" scrolling.
14-
* `Height` - `string` - [set the height](slug://common-features/dimensions) in the nested **popup settings** tag of the component. It must **not** be a `null/empty` string.
14+
* `Height` - `string` - [set the height](slug:common-features/dimensions) in the nested **popup settings** tag of the component. It must **not** be a `null/empty` string.
1515
* `ItemHeight` - `decimal` - set it to the height each individual item will have in the dropdown. Make sure to accommodate the content your items will have and any item template.
1616
* `PageSize` - `int` - defines how many items will actually be rendered and reused. The value determines how many items are loaded on each scroll. The number of items must be large enough according to the `ItemHeight` and popup `Height`, so that there are more items than the dropdown so there is a scrollbar.
1717

_contentTemplates/common/filtering.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@
44

55
| Parameter | Type and Default Value | Description |
66
| --- | --- | --- |
7-
| `DefaultFilterOperator` | `FilterOperator` | Sets the default filter operator in the column it is declared for. Accepts a member of the `FilterOperator` enum. The selected operator must be applicable for the specific data type. Check the supported options in the [Filter Operators](slug://common-features-filter-operators) article.
8-
| `FilterOperators` | `List<FilterListOperator>` | Specifies the available operators. Must contain only [supported filter operators](slug://common-features-filter-operators) for the specific data type. If not defined, the component will use a default list of available operators based on the field type.
7+
| `DefaultFilterOperator` | `FilterOperator` | Sets the default filter operator in the column it is declared for. Accepts a member of the `FilterOperator` enum. The selected operator must be applicable for the specific data type. Check the supported options in the [Filter Operators](slug:common-features-filter-operators) article.
8+
| `FilterOperators` | `List<FilterListOperator>` | Specifies the available operators. Must contain only [supported filter operators](slug:common-features-filter-operators) for the specific data type. If not defined, the component will use a default list of available operators based on the field type.
99
| `ShowFilterCellButtons` | `bool` <br/> (`true`) | controls the visibility of the filter buttons
1010
#end
1111

@@ -15,8 +15,8 @@
1515

1616
| Parameter | Type and Default Value | Description
1717
| ----------- | ----------- | -----------|
18-
| `DefaultFilterOperator` | `FilterOperator` | Sets the default filter operator in the column it is declared for. Accepts a member of the `FilterOperator` enum. The selected operator must be applicable for the specific data type Check the supported options in the [Filter Operators](slug://common-features-filter-operators) article. The provided default filter operator will be applied for both filters in the menu.
19-
| `FilterOperators` | `List<FilterListOperator>` | Specifies the available operators. Must contain only [supported filter operators](slug://common-features-filter-operators) for the specific data type. If not defined, the component will use a default list of available operators based on the field type.
18+
| `DefaultFilterOperator` | `FilterOperator` | Sets the default filter operator in the column it is declared for. Accepts a member of the `FilterOperator` enum. The selected operator must be applicable for the specific data type Check the supported options in the [Filter Operators](slug:common-features-filter-operators) article. The provided default filter operator will be applied for both filters in the menu.
19+
| `FilterOperators` | `List<FilterListOperator>` | Specifies the available operators. Must contain only [supported filter operators](slug:common-features-filter-operators) for the specific data type. If not defined, the component will use a default list of available operators based on the field type.
2020
#end
2121

2222
#filter-debounce-delay-customization

_contentTemplates/common/form-validation.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,5 +7,5 @@ The Telerik Blazor validation tools let you match the style of your validation m
77
#end
88

99
#note-editcontext-formitem-template
10-
> When using the [Form `EditContext` parameter](slug://form-overview#creating-blazor-form) together with [validation components](slug://validation-tools-overview) or [Form item `<Template>`s](slug://form-formitems-template), make sure to create the `EditContext` from the model instance, which is used by the validation components and inside the Form item templates. Otherwise, the Form will not update the correct object instance and validation will not work as expected.
10+
> When using the [Form `EditContext` parameter](slug:form-overview#creating-blazor-form) together with [validation components](slug:validation-tools-overview) or [Form item `<Template>`s](slug:form-formitems-template), make sure to create the `EditContext` from the model instance, which is used by the validation components and inside the Form item templates. Otherwise, the Form will not update the correct object instance and validation will not work as expected.
1111
#end

0 commit comments

Comments
 (0)