import type { SeriesLabelOptions } from './SeriesLabelOptions'; declare module '../../Core/Series/SeriesOptions' { interface SeriesOptions { /** * Series labels are placed as close to the series as possible in a * natural way, seeking to avoid other series. The goal of this * feature is to make the chart more easily readable, like if a * human designer placed the labels in the optimal position. * * The series labels currently work with series types having a * `graph` or an `area`. * * @sample highcharts/series-label/line-chart * Line chart * @sample highcharts/demo/streamgraph * Stream graph * @sample highcharts/series-label/stock-chart * Stock chart * * @since 6.0.0 * @product highcharts highstock gantt * @requires modules/series-label */ label?: SeriesLabelOptions; } }