Class BulletTooltipSettingsModel
Interface for a class BulletTooltipSettings
Inheritance
System.Object
BulletTooltipSettingsModel
Implements
System.IEquatable<BulletTooltipSettingsModel>
Namespace: Syncfusion.Blazor.Charts
Assembly: Syncfusion.Blazor.dll
Syntax
public class BulletTooltipSettingsModel : Object, IEquatable<BulletTooltipSettingsModel>
Constructors
BulletTooltipSettingsModel()
Declaration
public BulletTooltipSettingsModel()
Properties
Border
Options to customize tooltip borders.
Declaration
public BorderModel Border { get; set; }
Property Value
Type | Description |
---|---|
BorderModel |
Enable
Enables / Disables the visibility of the tooltip.
Declaration
public bool Enable { get; set; }
Property Value
Type | Description |
---|---|
System.Boolean |
Fill
The fill color of the tooltip that accepts value in hex and rgba as a valid CSS color string.
Declaration
public string Fill { get; set; }
Property Value
Type | Description |
---|---|
System.String |
Template
The default value of tooltip template .
Declaration
public string Template { get; set; }
Property Value
Type | Description |
---|---|
System.String |
TextStyle
Options to customize the ToolTip text.
Declaration
public BulletLabelStyleModel TextStyle { get; set; }
Property Value
Type | Description |
---|---|
BulletLabelStyleModel |
Methods
Equals(BulletTooltipSettingsModel)
Returns boolean value by comparing bulletTooltipSettingsModel
Declaration
public bool Equals(BulletTooltipSettingsModel bulletTooltipSettingsModel)
Parameters
Type | Name | Description |
---|---|---|
BulletTooltipSettingsModel | bulletTooltipSettingsModel |
Returns
Type | Description |
---|---|
System.Boolean |
Implements
System.IEquatable<>