Class CrosshairSettingsModel
Interface for a class CrosshairSettings
Inheritance
System.Object
CrosshairSettingsModel
Implements
System.IEquatable<CrosshairSettingsModel>
Namespace: Syncfusion.Blazor.Charts
Assembly: Syncfusion.Blazor.dll
Syntax
public class CrosshairSettingsModel : Object, IEquatable<CrosshairSettingsModel>
Constructors
CrosshairSettingsModel()
Declaration
public CrosshairSettingsModel()
Properties
DashArray
DashArray for crosshair.
Declaration
public string DashArray { get; set; }
Property Value
Type | Description |
---|---|
System.String |
Enable
If set to true, crosshair line becomes visible.
Declaration
public bool Enable { get; set; }
Property Value
Type | Description |
---|---|
System.Boolean |
Line
Options to customize the crosshair line.
Declaration
public BorderModel Line { get; set; }
Property Value
Type | Description |
---|---|
BorderModel |
LineType
Specifies the line type. Horizontal mode enables the horizontal line and Vertical mode enables the vertical line. They are, None: Hides both vertical and horizontal crosshair lines. Both: Shows both vertical and horizontal crosshair lines. Vertical: Shows the vertical line. Horizontal: Shows the horizontal line.
Declaration
public LineType LineType { get; set; }
Property Value
Type | Description |
---|---|
LineType |
Methods
Equals(CrosshairSettingsModel)
Returns a boolean by comparing crosshairSettingsModel
Declaration
public bool Equals(CrosshairSettingsModel crosshairSettingsModel)
Parameters
Type | Name | Description |
---|---|---|
CrosshairSettingsModel | crosshairSettingsModel |
Returns
Type | Description |
---|---|
System.Boolean |
Implements
System.IEquatable<>