New to Telerik UI for BlazorStart a free 30-day trial

Telerik UI StockChartNavigatorCategoryAxisTitle. Children: StockChartNavigatorCategoryAxisTitleBorder, StockChartNavigatorCategoryAxisTitleMargin.

Definition

Constructors

C#
public StockChartNavigatorCategoryAxisTitle()

Methods

C#
protected override void BuildRenderTree(RenderTreeBuilder __builder)
Parameters:__builderRenderTreeBuilder

Overrides: ComponentBase.BuildRenderTree(RenderTreeBuilder)

C#
protected override void OnAfterRender(bool firstRender)
Parameters:firstRenderbool

Overrides: ComponentBase.OnAfterRender(bool)

C#
protected override void OnInitialized()

Overrides: DataVizChildComponent.OnInitialized()

C#
protected override void OnParametersSet()

Overrides: ComponentBase.OnParametersSet()

C#
public Dictionary<string, object> Serialize()
Returns:

Dictionary<string, object>

Properties

The background color of the title. Accepts a valid CSS color string, including hex and rgb.

C#
[Parameter]
public string Background { get; set; }
C#
[Parameter]
public RenderFragment ChildContent { get; set; }

The text color of the title. Accepts a valid CSS color string, including hex and rgb.

C#
[Parameter]
public string Color { get; set; }

The font style of the title.

C#
[Parameter]
public string Font { get; set; }

The position of the title.The supported values are: "top" - the axis title is positioned on the top (applicable to vertical axis); "bottom" - the axis title is positioned on the bottom (applicable to vertical axis); "left" - the axis title is positioned on the left (applicable to horizontal axis); "right" - the axis title is positioned on the right (applicable to horizontal axis) or "center" - the axis title is positioned in the center.

C#
[Parameter]
public ChartAxisTitlePosition? Position { get; set; }

The text of the title.

C#
[Parameter]
public string Text { get; set; }

If set to true the chart will display the category axis title. By default the category axis title is visible.

C#
[Parameter]
public bool? Visible { get; set; }