* Appends new points to a cartesian series at runtime (streaming). * * For candlestick series, pass `OHLCDataPoint[]`. * For other cartesian series (line, area, bar, scatter), pass `DataPoint[]`. * Pie series are non-cartesian and are not supported by streaming append.
(seriesIndex: number, newPoints: DataPoint[] | OHLCDataPoint[])
| 53 | * Pie series are non-cartesian and are not supported by streaming append. |
| 54 | */ |
| 55 | appendData(seriesIndex: number, newPoints: DataPoint[] | OHLCDataPoint[]): void; |
| 56 | resize(): void; |
| 57 | dispose(): void; |
| 58 | on(eventName: 'crosshairMove', callback: ChartGPUCrosshairMoveCallback): void; |
no outgoing calls
no test coverage detected