Gets or sets a value that indicates the present state of the event handling for a routed
event as it travels the route.
ChartMouseButton events are not routed events; setting this property effects the underlying
MouseButtonEvent.
Use the handled property to indicates the present state of the event handling for a routed event.
Returns boolean
set handled(v): void
Parameters
v: boolean
Returns void
item
get item(): any
Gets the ItemsSource item associated with the current event.
Use the Item property to get the ItemsSource item associated with the current event.
varitem1= args.item;
Returns any
set item(v): void
Parameters
v: any
Returns void
originalSource
get originalSource(): any
Gets a reference to the object that raised the event.
Use the OriginalSource property for the raised object event.
args.originalSource;
Returns any
plotAreaPosition
get plotAreaPosition(): IgPoint
Gets the mouse position relative to the plot area.
Returns the x- and y- coordinates of the mouse pointer position, optionally evaluated
against the origin of a supplied UIElement.
Parameters
relativeTo: any
Any UIElement derived object that is contained by the the engine plug-in
and connected to the object tree. To specify the object relative to the overall the engine
coordinate system, use a relativeTo value of null.
To get mouse X and Y position.
varargs.getPosition;
Returns IgPoint
toString
toString(): string
Provides a human readable description of the mouse button event.
Use the ToString property to provides a human readable discription.
Provides data for IgxDataChartComponent mouse button related events.
DataChartMouseButtonEventHandler
class represents the method that will handle IgxDataChartComponent mouse button related events.