Class IgxDomainChartSeriesPointerEventArgs

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.

 <igx-financial-chart
#chart
[dataSource]="data"
(seriesPointerDown)=chart_seriesPointerDown()
>
</igx-financial-chart>
this.chart.seriesPointerDown = this.chart_seriesPointerDown();

Hierarchy

Hierarchy

  • IgxDomainChartSeriesPointerEventArgs

Constructors

Properties

ngAcceptInputType_cancelSelection: string | boolean
ngAcceptInputType_chartPosition: string | IgPoint
ngAcceptInputType_plotAreaPosition: string | IgPoint
ngAcceptInputType_worldPosition: string | IgPoint

Accessors

  • get cancelSelection(): boolean
  • Gets or sets whether to cancel series selection.

    Returns boolean

  • set cancelSelection(v: boolean): void
  • Parameters

    • v: boolean

    Returns void

  • 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: IgPoint): void
  • Parameters

    Returns void

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

    Use the Series property to get the series.

     var series= args.series;
    

    Returns IgxSeriesComponent

  • set series(v: IgxSeriesComponent): void
  • Parameters

    Returns void

  • get worldPosition(): IgPoint
  • Returns IgPoint

  • set worldPosition(v: IgPoint): void
  • Parameters

    Returns void