Telerik UI StockChartNavigatorCategoryAxisLabels. Children: StockChartNavigatorCategoryAxisLabelsBorder, StockChartNavigatorCategoryAxisLabelsMargin, StockChartNavigatorCategoryAxisLabelsPadding, StockChartNavigatorCategoryAxisLabelsRotation.
Definition
Namespace:Telerik.Blazor.Components
Assembly:Telerik.Blazor.dll
Syntax:
public class StockChartNavigatorCategoryAxisLabels : DataVizChildComponent, IComponent, IHandleEvent, IHandleAfterRender, IDisposable
Inheritance: objectComponentBaseDataVizChildComponentStockChartNavigatorCategoryAxisLabels
Implements:
Inherited Members
Constructors
public StockChartNavigatorCategoryAxisLabels()
Methods
protected override void BuildRenderTree(RenderTreeBuilder __builder)
Overrides:
protected override void OnInitialized()
Overrides:
protected override void OnParametersSet()
Overrides:
Properties
The background color of the labels. Accepts a valid CSS color string, including hex and rgb.
[Parameter]
public string Background { get; set; }
[Parameter]
public RenderFragment ChildContent { get; set; }
The text color of the labels. Accepts a valid CSS color string, including hex and rgb.
[Parameter]
public string Color { get; set; }
The format used to display the labels. Uses kendo.format. Contains one placeholder ("{0}") which represents the category value.
[Parameter]
public string Format { get; set; }
The number of labels to skip. By default no labels are skipped.
[Parameter]
public double? Skip { get; set; }
The label rendering step - render every n-th label. By default every label is rendered.
[Parameter]
public double? Step { get; set; }
The template which renders the labels.The fields which can be used in the template are: value - the category value.
[Parameter]
[Obsolete("\r\n The syntax with template literals, e.g. '#= dataItem.Value #' is now deprecated and will be removed in the future.\r\n You need to migrate to using the name of a JavaScript function that returns the value, e.g. Template='getTemplateValue'\r\n See https://www.telerik.com/blazor-ui/documentation/components/chart/labels-template-and-format#templates\r\n and https://www.telerik.com/blazor-ui/documentation/troubleshooting/csp#legacy-settings.\r\n ")]
public string Template { get; set; }