Class Chart3DAxisRangeRenderedEventArgs
Specifies the event arguments available for the axis range calculated events in the SfChart3D component.
Namespace: Syncfusion.Blazor.Chart3D
Assembly: Syncfusion.Blazor.dll
Syntax
public class Chart3DAxisRangeRenderedEventArgs : Chart3DEventArgs
Properties
AxisName
Gets or sets the axis name for the SfChart3D.
Declaration
public string AxisName { get; }
Property Value
Type | Description |
---|---|
System.String | The default value is currently processed axis name of the SfChart3D. |
Remarks
This is a readonly property.
Bounds
Define current axis bounds for the SfChart3D.
Declaration
public Rect Bounds { get; }
Property Value
Type | Description |
---|---|
Rect | A Rect object that represents the current axis bounds. |
Interval
Defines the current interval of the SfChart3D axis.
Declaration
public double Interval { get; set; }
Property Value
Type | Description |
---|---|
System.Double | Accepts the double value. The default value is currently calculated interval. |
Maximum
Gets or sets the current maximum range of the SfChart3D axis.
Declaration
public double Maximum { get; set; }
Property Value
Type | Description |
---|---|
System.Double | Accepts the double value. The default value is currently calculated maximum range. |
Minimum
Gets or sets the current minimum range of the SfChart3D axis.
Declaration
public double Minimum { get; set; }
Property Value
Type | Description |
---|---|
System.Double | Accepts the double value. The default value is currently calculated minimum range. |