Class
ChartAxisRangeDescriptor

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:

cs-api-definition
public class ChartAxisRangeDescriptor

Inheritance: objectChartAxisRangeDescriptor

Constructors

ChartAxisRangeDescriptor()

Declaration

cs-api-definition
public ChartAxisRangeDescriptor()

Properties

Max

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

Declaration

cs-api-definition
public object Max { get; set; }

Property Value

object

Min

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

Declaration

cs-api-definition
public object Min { get; set; }

Property Value

object