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

Definition

Constructors

C#
public StockChartValueAxis()

Methods

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

Overrides: ComponentBase.BuildRenderTree(RenderTreeBuilder)

C#
protected override void Dispose(bool disposing)
Parameters:disposingbool

Overrides: DataVizChildComponent.Dispose(bool)

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()

Properties

Value at which the category axis crosses this axis. (Only for object)Value indicies at which the category axes cross the value axis. (Only for array)Date at which the category axis crosses this axis. (Only for date)

C#
[Parameter]
public object[] AxisCrossingValue { get; set; }

The background color of the axis.

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

Color to apply to all axis elements. Individual color settings for line and labels take priority. Any valid CSS color string will work here, including hex and rgb.

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

The maximum value of the axis. This is often used in combination with the min configuration option.

C#
[Parameter]
public double? Max { get; set; }

The minimum value of the axis. This is often used in combination with the max configuration option.

C#
[Parameter]
public double? Min { get; set; }

The unique axis name.

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

Specifies the axis type.

C#
[Parameter]
public ChartValueAxisType? Type { get; set; }

The visibility of the axis.

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