Class IIndicator
Class that defines indicator details.
Inheritance
System.Object
IIndicator
Implements
System.IEquatable<IIndicator>
Namespace: Syncfusion.Blazor.Gantt
Assembly: Syncfusion.Blazor.dll
Syntax
public class IIndicator : Object, IEquatable<IIndicator>
Constructors
IIndicator()
Declaration
public IIndicator()
Properties
Date
Defines the date of indicator.
Declaration
public object Date { get; set; }
Property Value
Type | Description |
---|---|
System.Object |
IconClass
Defines the icon class of indicator.
Declaration
public string IconClass { get; set; }
Property Value
Type | Description |
---|---|
System.String |
Name
Defines the name of indicator.
Declaration
public string Name { get; set; }
Property Value
Type | Description |
---|---|
System.String |
Tooltip
Defines the tooltip of indicator.
Declaration
public string Tooltip { get; set; }
Property Value
Type | Description |
---|---|
System.String |
Methods
Equals(IIndicator)
Returns boolean value by comparing iIndicator
Declaration
public bool Equals(IIndicator iIndicator)
Parameters
Type | Name | Description |
---|---|---|
IIndicator | iIndicator |
Returns
Type | Description |
---|---|
System.Boolean |
Equals(Object)
Returns boolean value by comparing object
Declaration
public override bool Equals(object obj)
Parameters
Type | Name | Description |
---|---|---|
System.Object | obj |
Returns
Type | Description |
---|---|
System.Boolean |
GetHashCode()
Returns hashcode for current object
Declaration
public override int GetHashCode()
Returns
Type | Description |
---|---|
System.Int32 |
Implements
System.IEquatable<>