Static ngStatic ngStatic ngStatic ngStatic ngGets or sets whether to cancel series selection.
Gets the Chart associated with the current event.
Use the Chart property to get the chart associated with the current event.
var dataChart= args.chart;
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.
Gets the ItemsSource item associated with the current event.
Use the Item property to get the ItemsSource item associated with the current event.
var item1= args.item;
Gets a reference to the object that raised the event.
Use the OriginalSource property for the raised object event.
args.originalSource;
Gets the series associated with the current event.
Use the Series property for the associated current event.
var DataSeries= args.series;
Returns the x- and y- coordinates of the mouse pointer position, optionally evaluated against the origin of a supplied UIElement.
To get mouse X and Y position.
var args.getPosition;
Provides data for IgxDataChartComponent mouse button related events.
DataChartMouseButtonEventHandlerclass represents the method that will handle IgxDataChartComponent mouse button related events.