Class IgbLabelFormatOverrideEventArgs
Event args used byt the LabelFormatOverride Delegate to provide a way to override default label functionality..
Inheritance
System.Object
IgbLabelFormatOverrideEventArgs
Assembly: IgniteUI.Blazor.dll
public class IgbLabelFormatOverrideEventArgs : BaseRendererElement, JsonSerializable
Constructors
Declaration
public IgbLabelFormatOverrideEventArgs()
Properties
The DateTime the override is invoked with.
Declaration
public DateTime DateTime { get; set; }
Property Value
| Type |
Description |
| System.DateTime |
|
The format to which this override is attached.
Declaration
public IgbTimeAxisLabelFormat Format { get; set; }
Property Value
Gets or sets the label that should be used.
Declaration
public string Label { get; set; }
Property Value
| Type |
Description |
| System.String |
|
Declaration
public override string Type { get; }
Property Value
| Type |
Description |
| System.String |
|
Overrides
Methods
Declaration
public override object FindByName(string name)
Parameters
| Type |
Name |
Description |
| System.String |
name |
|
Returns
| Type |
Description |
| System.Object |
|
Overrides
Declaration
protected override void FromEventJson(BaseRendererControl control, Dictionary<string, object> args)
Parameters
| Type |
Name |
Description |
| BaseRendererControl |
control |
|
| System.Collections.Generic.Dictionary<System.String, System.Object> |
args |
|
Overrides
Declaration
protected override void ToEventJson(BaseRendererControl control, Dictionary<string, object> args)
Parameters
| Type |
Name |
Description |
| BaseRendererControl |
control |
|
| System.Collections.Generic.Dictionary<System.String, System.Object> |
args |
|
Overrides
Implements