Class IgbCalloutLabelUpdatingEventArgs
Represents event arguments for updating label of callout layer
Inheritance
System.Object
IgbCalloutLabelUpdatingEventArgs
Assembly: IgniteUI.Blazor.dll
Syntax
public class IgbCalloutLabelUpdatingEventArgs : BaseRendererElement, JsonSerializable
Constructors
IgbCalloutLabelUpdatingEventArgs()
Declaration
public IgbCalloutLabelUpdatingEventArgs()
Properties
Item
Gets data item associated with callout layer
Declaration
public object Item { get; set; }
Property Value
| Type |
Description |
| System.Object |
|
ItemScript
Provides a means of setting Item in the JavaScript environment.
Declaration
public string ItemScript { get; set; }
Property Value
| Type |
Description |
| System.String |
|
Label
Gets or sets label displayed by callout layer
Declaration
public object Label { get; set; }
Property Value
| Type |
Description |
| System.Object |
|
LabelScript
Provides a means of setting Label in the JavaScript environment.
Declaration
public string LabelScript { get; set; }
Property Value
| Type |
Description |
| System.String |
|
Series
Gets series associated with callout item, if available
Declaration
public IgbSeries Series { get; set; }
Property Value
SeriesName
Gets series name associated with callout item, if available
Declaration
public string SeriesName { get; set; }
Property Value
| Type |
Description |
| System.String |
|
Type
Declaration
public override string Type { get; }
Property Value
| Type |
Description |
| System.String |
|
Overrides
XValue
Gets data X-value associated with callout layer
Declaration
public object XValue { get; set; }
Property Value
| Type |
Description |
| System.Object |
|
XValueScript
Provides a means of setting XValue in the JavaScript environment.
Declaration
public string XValueScript { get; set; }
Property Value
| Type |
Description |
| System.String |
|
YValue
Gets data Y-value associated with callout layer
Declaration
public object YValue { get; set; }
Property Value
| Type |
Description |
| System.Object |
|
YValueScript
Provides a means of setting YValue in the JavaScript environment.
Declaration
public string YValueScript { get; set; }
Property Value
| Type |
Description |
| System.String |
|
Methods
FindByName(String)
Declaration
public override object FindByName(string name)
Parameters
| Type |
Name |
Description |
| System.String |
name |
|
Returns
| Type |
Description |
| System.Object |
|
Overrides
FromEventJson(BaseRendererControl, Dictionary<String, Object>)
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
ToEventJson(BaseRendererControl, Dictionary<String, Object>)
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