Class AxisRangeCalculatedEventArgs
Specifies the event arguments available for on range calculated events in the chart component.
Inheritance
Namespace: Syncfusion.Blazor.Charts
Assembly: Syncfusion.Blazor.dll
Syntax
public class AxisRangeCalculatedEventArgs : BaseEventArgs
Properties
AxisName
Defines current axis name.
Declaration
public string AxisName { get; }
Property Value
Type | Description |
---|---|
System.String | Accepts the string value. |
Remarks
This property is a read-only value that provides the name of the axis for which the range has been calculated.
Bounds
Define current axis bounds.
Declaration
public Rect Bounds { get; }
Property Value
Remarks
This property is a read-only value that provides the bounding rectangle for the axis based on the calculated range.
Interval
Defines the interval of the axis range.
Declaration
public double Interval { get; set; }
Property Value
Type | Description |
---|---|
System.Double | A System.Double value representing the interval of the axis range. |
Remarks
This property indicates the interval between values in the axis range calculated during the event.
Maximum
Defines the maximum range of the axis.
Declaration
public double Maximum { get; set; }
Property Value
Type | Description |
---|---|
System.Double | A System.Double value representing the maximum range of the axis. |
Remarks
This property provides the maximum value of the axis range calculated during the event.
Minimum
Defines the minimum range of the axis.
Declaration
public double Minimum { get; set; }
Property Value
Type | Description |
---|---|
System.Double | A System.Double value representing the minimum range of the axis. |
Remarks
This property provides the minimum value of the axis range calculated during the event.