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

Describes the visible range of a chart axis at the time a zoom or drag event fires.

Definition

Namespace:Telerik.Blazor.Components

Assembly:Telerik.Blazor.dll

Syntax:

C#
public class ChartAxisRangeDescriptor

Inheritance: objectChartAxisRangeDescriptor

Constructors

C#
public ChartAxisRangeDescriptor()

Properties

The maximum boundary of the axis range. The runtime type depends on the axis type: numeric axes produce double, date axes produce DateTime, category axes produce int (category index).

C#
public object Max { get; set; }

The minimum boundary of the axis range. The runtime type depends on the axis type: numeric axes produce double, date axes produce DateTime, category axes produce int (category index).

C#
public object Min { get; set; }