Class AxisRangeCalculatedEventArgs
Specifies the event arguments available for on range calculated events in the chart component.
Inheritance
System.Object
Syncfusion.Blazor.Charts.BaseEventArgs
AxisRangeCalculatedEventArgs
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. |
Bounds
Define current axis bounds.
Declaration
public Rect Bounds { get; }
Property Value
Type | Description |
---|---|
Rect | A Rect object that represents the current axis bounds. |
Interval
Defines axis current interval.
Declaration
public double Interval { get; set; }
Property Value
Type | Description |
---|---|
System.Double | Accepts the double value. |
Maximum
Defines axis current max range.
Declaration
public double Maximum { get; set; }
Property Value
Type | Description |
---|---|
System.Double | Accepts the double value. |
Minimum
Defines axis current min range.
Declaration
public double Minimum { get; set; }
Property Value
Type | Description |
---|---|
System.Double | Accepts the double value. |