Class AxisSettingsModel
Interface for a class AxisSettings
Inheritance
System.Object
AxisSettingsModel
Implements
System.IEquatable<AxisSettingsModel>
Namespace: Syncfusion.Blazor.Charts
Assembly: Syncfusion.Blazor.dll
Syntax
public class AxisSettingsModel : Object, IEquatable<AxisSettingsModel>
Constructors
AxisSettingsModel()
Declaration
public AxisSettingsModel()
Properties
LineSettings
To configure Sparkline axis line settings.
Declaration
public LineSettingsModel LineSettings { get; set; }
Property Value
Type | Description |
---|---|
LineSettingsModel |
MaxX
To configure Sparkline x axis max value.
Declaration
public double MaxX { get; set; }
Property Value
Type | Description |
---|---|
System.Double |
MaxY
To configure Sparkline y axis max value.
Declaration
public double MaxY { get; set; }
Property Value
Type | Description |
---|---|
System.Double |
MinX
To configure Sparkline x axis min value.
Declaration
public double MinX { get; set; }
Property Value
Type | Description |
---|---|
System.Double |
MinY
To configure Sparkline y axis min value.
Declaration
public double MinY { get; set; }
Property Value
Type | Description |
---|---|
System.Double |
Value
To configure Sparkline horizontal axis line position.
Declaration
public double Value { get; set; }
Property Value
Type | Description |
---|---|
System.Double |
Methods
Equals(AxisSettingsModel)
Returns a boolean by comparing with axisSettingsModel
Declaration
public bool Equals(AxisSettingsModel axisSettingsModel)
Parameters
Type | Name | Description |
---|---|---|
AxisSettingsModel | axisSettingsModel |
Returns
Type | Description |
---|---|
System.Boolean |
Implements
System.IEquatable<>