These pages outline the chart configuration options, and the methods and properties of Highcharts objects.
Feel free to search this API through the search bar or the navigation tree in the sidebar.
The timeline series presents given events along a drawn line.
In TypeScript the type option must always be set.
Configuration options for the series are given in three levels:
timeline
series are defined in
plotOptions.timeline.Highcharts.chart('container', {
plotOptions: {
series: {
// general options for all series
},
timeline: {
// shared options for all timeline series
}
},
series: [{
// specific options for this series instance
type: 'timeline'
}]
});