Class CrosshairTooltipModel
Interface for a class CrosshairTooltip
Inheritance
System.Object
CrosshairTooltipModel
Implements
System.IEquatable<CrosshairTooltipModel>
Namespace: Syncfusion.Blazor.Charts
Assembly: Syncfusion.Blazor.dll
Syntax
public class CrosshairTooltipModel : Object, IEquatable<CrosshairTooltipModel>
Constructors
CrosshairTooltipModel()
Declaration
public CrosshairTooltipModel()
Properties
Enable
If set to true, crosshair ToolTip will be visible. @default false
Declaration
public bool Enable { get; set; }
Property Value
Type | Description |
---|---|
System.Boolean |
Fill
The fill color of the ToolTip accepts value in hex and rgba as a valid CSS color string.
Declaration
public string Fill { get; set; }
Property Value
Type | Description |
---|---|
System.String |
TextStyle
Options to customize the crosshair ToolTip text.
Declaration
public FontModel TextStyle { get; set; }
Property Value
Type | Description |
---|---|
FontModel |
Methods
Equals(CrosshairTooltipModel)
Returns a boolean by comparing crosshairTooltipModel
Declaration
public bool Equals(CrosshairTooltipModel crosshairTooltipModel)
Parameters
Type | Name | Description |
---|---|---|
CrosshairTooltipModel | crosshairTooltipModel |
Returns
Type | Description |
---|---|
System.Boolean |
Implements
System.IEquatable<>