Show / Hide Table of Contents

Class IgbChartMouseEventArgs

Provides data for IgbDataChart mouse button related events.

Inheritance
System.Object
BaseRendererElement
IgbChartMouseEventArgs
Implements
JsonSerializable
Inherited Members
BaseRendererElement._name
BaseRendererElement.eventCallbacksCache
BaseRendererElement._cachedSerializedContent
BaseRendererElement.EnsureModulesLoaded()
BaseRendererElement.BuildRenderTree(RenderTreeBuilder)
BaseRendererElement.OnElementNameChanged(BaseRendererElement, String, String)
BaseRendererElement.InvokeMethod(String, Object[], String[], ElementReference[])
BaseRendererElement.InvokeMethodSync(String, Object[], String[], ElementReference[])
BaseRendererElement.InvokeMethodHelper(String, String, Object[], String[], ElementReference[])
BaseRendererElement.InvokeMethodHelperSync(String, String, Object[], String[], ElementReference[])
BaseRendererElement.IsPropDirty(String)
BaseRendererElement.Serialize(SerializationContext, String)
BaseRendererElement.Serialize()
BaseRendererElement.EnsureValid()
BaseRendererElement.SetResourceStringAsync(String, String, String)
BaseRendererElement.SetResourceStringAsync(String, String)
BaseRendererElement.CompareEventCallbacks<T>(T, T, Dictionary<Type, Dictionary<String, FieldInfo>>)
BaseRendererElement.IgBlazor
BaseRendererElement.IsComponentRooted
BaseRendererElement.ParentTypeName
BaseRendererElement.UseDirectRender
BaseRendererElement.ChildContent
BaseRendererElement.SupportsVisualChildren
BaseRendererElement.Name
BaseRendererElement.Parent
BaseRendererElement.MethodTarget
BaseRendererElement.CurrParent
Namespace: IgniteUI.Blazor.Controls
Assembly: IgniteUI.Blazor.dll
Syntax
public class IgbChartMouseEventArgs : BaseRendererElement, JsonSerializable

Constructors

IgbChartMouseEventArgs()

Declaration
public IgbChartMouseEventArgs()

Properties

Chart

Gets the Chart associated with the current event.

Declaration
public IgbSeriesViewer Chart { get; set; }
Property Value
Type Description
IgbSeriesViewer

ChartPosition

Gets the mouse position relative to the chart.

Declaration
public Point ChartPosition { get; protected set; }
Property Value
Type Description
Point

Item

Gets the ItemsSource item associated with the current event.

Declaration
public object Item { get; set; }
Property Value
Type Description
System.Object

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

PlotAreaPosition

Gets the mouse position relative to the plot area.

Declaration
public Point PlotAreaPosition { get; set; }
Property Value
Type Description
Point

Series

Gets the series associated with the current event.

Declaration
public IgbSeries Series { get; set; }
Property Value
Type Description
IgbSeries

SeriesScript

Provides a means of setting Series in the JavaScript environment.

Declaration
public string SeriesScript { get; set; }
Property Value
Type Description
System.String

Type

Declaration
public override string Type { get; }
Property Value
Type Description
System.String
Overrides
BaseRendererElement.Type

WorldPosition

Declaration
public Point WorldPosition { get; set; }
Property Value
Type Description
Point

Methods

FindByName(String)

Declaration
public override object FindByName(string name)
Parameters
Type Name Description
System.String name
Returns
Type Description
System.Object
Overrides
BaseRendererElement.FindByName(String)

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
BaseRendererElement.FromEventJson(BaseRendererControl, Dictionary<String, Object>)

GetPosition(Object)

Declaration
public Point GetPosition(object relativeTo)
Parameters
Type Name Description
System.Object relativeTo
Returns
Type Description
Point

GetPositionAsync(Object)

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>

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
BaseRendererElement.ToEventJson(BaseRendererControl, Dictionary<String, Object>)

Implements

JsonSerializable