import Point from './point'; export default interface Series { /** * Contains the series' index in the `Chart.series` array. */ index: number; /** * The series name as given in the options. Defaults to "Series {n}". */ name: string; /** * An array containing all currently visible point objects. In case of * cropping, the cropped-away points are not part of this array. The * `series.points` array starts at `series.cropStart` compared to * `series.data` and `series.options.data`. If however the series data is * grouped, these can't be correlated one to one. To modify the data, use * Highcharts.Series#setData or Highcharts.Point#update. */ points: Point[]; }