You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: _contentTemplates/chart/chart-tooltip-context-templates.md
+5-5
Original file line number
Diff line number
Diff line change
@@ -1,16 +1,16 @@
1
1
#context-parameter-information
2
2
*`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.
4
4
5
5
*`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.
6
6
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.
8
8
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).
10
10
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.
12
12
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.
14
14
15
15
*`SeriesIndex` - provides the index of the `<ChartSeries>` the data point belongs to.
Copy file name to clipboardexpand all lines: _contentTemplates/chart/link-to-basics.md
+6-6
Original file line number
Diff line number
Diff line change
@@ -1,5 +1,5 @@
1
1
#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).
3
3
#end
4
4
5
5
#color-field-bar-column
@@ -109,9 +109,9 @@ You can render the lines between the points with different styles. The supported
109
109
110
110
*`Normal`—This is the default style. It produces a straight line between data points.
111
111
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.
113
113
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.
115
115
116
116
#end
117
117
@@ -150,7 +150,7 @@ When configuring nested properties and child elements in your chart, the inner t
150
150
151
151
#configurable-nested-chart-settings-categorical
152
152
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
154
154
155
155
`ChartCategoryAxes` > `ChartCategoryAxis` > `ChartCategoryAxisLabels` > `ChartCategoryAxisLabelsRotation` tag
156
156
@@ -162,7 +162,7 @@ This approach is not limited only to the Labels - it can be used with all tags t
162
162
163
163
#configurable-nested-chart-settings-numerical
164
164
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
166
166
167
167
`ChartXAxes` > `ChartXAxis` > `ChartXAxisLabelsRotation` tag
168
168
@@ -174,7 +174,7 @@ This approach is not limited only to the Labels - it can be used with to all tag
174
174
175
175
#configurable-nested-chart-settings-axis-free
176
176
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
178
178
179
179
`ChartSeriesItems` > `ChartSeries` > `ChartSeriesLabels` tag and its child tags.
Copy file name to clipboardexpand all lines: _contentTemplates/common/dropdowns-virtualization.md
+1-1
Original file line number
Diff line number
Diff line change
@@ -11,7 +11,7 @@ This section will explain the parameters and behaviors that are related to the v
11
11
>caption To enable UI virtualization, you need to set the following parameters of the component:
12
12
13
13
*`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.
15
15
*`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.
16
16
*`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.
Copy file name to clipboardexpand all lines: _contentTemplates/common/filtering.md
+4-4
Original file line number
Diff line number
Diff line change
@@ -4,8 +4,8 @@
4
4
5
5
| Parameter | Type and Default Value | Description |
6
6
| --- | --- | --- |
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.
9
9
| `ShowFilterCellButtons` | `bool` <br/> (`true`) | controls the visibility of the filter buttons
10
10
#end
11
11
@@ -15,8 +15,8 @@
15
15
16
16
| Parameter | Type and Default Value | Description
17
17
| ----------- | ----------- | -----------|
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.
Copy file name to clipboardexpand all lines: _contentTemplates/common/form-validation.md
+1-1
Original file line number
Diff line number
Diff line change
@@ -7,5 +7,5 @@ The Telerik Blazor validation tools let you match the style of your validation m
7
7
#end
8
8
9
9
#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.
0 commit comments