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.

 <IgrFinancialChart
yAxisInterval={200}
yAxisMinorInterval={50}
yAxisMajorStroke="Black"
yAxisMinorStroke="Gray" >
</IgrFinancialChart>
this.chart.seriesPointerDown = this.chart_seriesPointerDown();
<IgrFinancialChart
width="100%"
height="400px"
chartType="Candle"
zoomSliderType="Candle"
volumeType="Column"
indicatorTypes="ForceIndex"
overlayTypes ="PriceChannel"
dataSource={this.data}
seriesPointerDown = {this.onseriesPointerDown} />
public void onseriesPointerDown =(s: IgrDomainChart <IIgrDomainChartProps>, e: DomainChartSeriesPointerEventArgs)=>
{

}

Hierarchy

Hierarchy

  • IgrDomainChartSeriesPointerEventArgs

Constructors

Accessors

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

    Returns IgPoint

  • get nativeElement(): HTMLElement
  • Returns HTMLElement

  • 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(): IgrSeries<IIgrSeriesProps>
  • Gets the series hit by the pointer.

    Use the Series property to get the series.

     var series= args.series;
    

    Returns IgrSeries<IIgrSeriesProps>

  • set series(v): void
  • Parameters

    Returns void