Show / Hide Table of Contents

Class IgbDataChartMouseButtonEventArgs

Provides data for IgbDataChart mouse button related events.

Inheritance
System.Object
BaseRendererElement
IgbDataChartMouseButtonEventArgs
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 IgbDataChartMouseButtonEventArgs : BaseRendererElement, JsonSerializable

Constructors

IgbDataChartMouseButtonEventArgs()

Declaration
public IgbDataChartMouseButtonEventArgs()

Properties

Chart

Gets the Chart associated with the current event.

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

ChartPosition

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

Handled

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
Remarks

ChartMouseButton events are not routed events; setting this property effects the underlying MouseButtonEvent.

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

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

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

Type

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

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