Class IgbLegendMouseEventArgs
Provides data for legend mouse button related events.
Inheritance
System.Object
IgbLegendMouseEventArgs
Assembly: IgniteUI.Blazor.dll
Syntax
public class IgbLegendMouseEventArgs : BaseRendererElement, JsonSerializable
Constructors
IgbLegendMouseEventArgs()
Declaration
public IgbLegendMouseEventArgs()
Properties
Item
Gets the ItemsSource item associated with the current event.
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 |
|
LegendItem
The legend item in context.
Declaration
public object LegendItem { get; set; }
Property Value
Type |
Description |
System.Object |
|
LegendItemScript
Provides a means of setting LegendItem in the JavaScript environment.
Declaration
public string LegendItemScript { get; set; }
Property Value
Type |
Description |
System.String |
|
OriginalSource
Gets a reference to the object that raised the event.
Declaration
public object OriginalSource { get; protected set; }
Property Value
Type |
Description |
System.Object |
|
OriginalSourceScript
Provides a means of setting OriginalSource in the JavaScript environment.
Declaration
public string OriginalSourceScript { get; set; }
Property Value
Type |
Description |
System.String |
|
Type
Declaration
public override string Type { get; }
Property Value
Type |
Description |
System.String |
|
Overrides
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