Class IgbDataChartMouseButtonEventArgs
Provides data for IgbDataChart mouse button related events.
Inheritance
System.Object
IgbDataChartMouseButtonEventArgs
Assembly: IgniteUI.Blazor.dll
public class IgbDataChartMouseButtonEventArgs : BaseRendererElement, JsonSerializable
Constructors
Declaration
public IgbDataChartMouseButtonEventArgs()
Properties
Gets the Chart associated with the current event.
Declaration
public IgbSeriesViewer Chart { get; set; }
Property Value
Declaration
public Point ChartPosition { get; protected set; }
Property Value
Gets or sets a value that indicates the present state of the event handling for a routed
event as it travels the route.
Declaration
public bool Handled { get; set; }
Property Value
| Type |
Description |
| System.Boolean |
|
Gets the ItemsSource item associated with the current event.
Declaration
public object Item { get; set; }
Property Value
| Type |
Description |
| System.Object |
|
Provides a means of setting Item in the JavaScript environment.
Declaration
public string ItemScript { get; set; }
Property Value
| Type |
Description |
| System.String |
|
Gets a reference to the object that raised the event.
Declaration
public object OriginalSource { get; protected set; }
Property Value
| Type |
Description |
| System.Object |
|
Provides a means of setting OriginalSource in the JavaScript environment.
Declaration
public string OriginalSourceScript { get; set; }
Property Value
| Type |
Description |
| System.String |
|
Declaration
public Point PlotAreaPosition { get; set; }
Property Value
Gets the series associated with the current event.
Declaration
public IgbSeries Series { get; set; }
Property Value
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
public Point GetPosition(object relativeTo)
Parameters
| Type |
Name |
Description |
| System.Object |
relativeTo |
|
Returns
Returns the x- and y- coordinates of the mouse pointer position, optionally evaluated
against the origin of a supplied UIElement.
Declaration
public Task<Point> GetPositionAsync(object relativeTo)
Parameters
| Type |
Name |
Description |
| System.Object |
relativeTo |
Any UIElement derived object that is contained by the the engine plug-inand connected to the object tree. To specify the object relative to the overall the enginecoordinate system, use a relativeTo value of null.
|
Returns
| Type |
Description |
| System.Threading.Tasks.Task<Point> |
|
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