Represents event arguments for chart's SeriesAdded and SeriesRemoved events

The DomainChartSeriesPointerEventArgs class provide events for chart's SeriesAdded and SeriesRemoved.

SeriesPointerDown get fired when the pointer is press down over a Series.

this.chart.seriesPointerDown = this.chart_seriesPointerDown();

Constructors

Accessors

  • get chartPosition(): IgPoint
  • Gets the mouse position relative to the chart.

    Returns IgPoint

  • get plotAreaPosition(): IgPoint
  • Gets the pointer position relative to the plot area.

    Returns IgPoint

  • set plotAreaPosition(v): void
  • Parameters

    • v: IgPoint

    Returns void

  • get series(): IgcSeriesComponent
  • Gets the series hit by the pointer.

    Use the Series property to get the series.

     var series= args.series;
    

    Returns IgcSeriesComponent

  • set series(v): void
  • Parameters

    Returns void