Class IgbDomainChartSeriesPointerEventArgs
Represents event arguments for chart's SeriesAdded and SeriesRemoved events
Inheritance
System.Object
IgbDomainChartSeriesPointerEventArgs
Assembly: IgniteUI.Blazor.dll
Syntax
public class IgbDomainChartSeriesPointerEventArgs : BaseRendererElement, JsonSerializable
Constructors
IgbDomainChartSeriesPointerEventArgs()
Declaration
public IgbDomainChartSeriesPointerEventArgs()
Properties
ChartPosition
Gets the mouse position relative to the chart.
Declaration
public Point ChartPosition { get; protected set; }
Property Value
Item
Gets the item hit by the pointer.
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 |
|
PlotAreaPosition
Gets the pointer position relative to the plot area.
Declaration
public Point PlotAreaPosition { get; set; }
Property Value
Series
Gets the series hit by the pointer.
Declaration
public IgbSeries Series { get; set; }
Property Value
Type
Declaration
public override string Type { get; }
Property Value
| Type |
Description |
| System.String |
|
Overrides
WorldPosition
Declaration
public Point WorldPosition { get; set; }
Property Value
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