У меня есть диаграмма Хайстока с несколькими сериями и несколькими точками данных на серию за несколько месяцев. Я ожидал, что смогу настроить выбор в окне навигатора, но не могу.
var seriesOptions = [
{
name: 'Apples',
data: [
{x: 1525737600000, y: Math.floor(Math.random() * 30)},
{x: 1535737600000, y: Math.floor(Math.random() * 30)},
{x: 1545737600000, y: Math.floor(Math.random() * 30)}
]
},
{
name: 'Oranges',
data: [
{x: 1525737600000, y: Math.floor(Math.random() * 30)},
{x: 1535737600000, y: Math.floor(Math.random() * 30)},
{x: 1545737600000, y: Math.floor(Math.random() * 30)}
]
},
{
name: 'Grapes',
data: [
{x: 1525737600000, y: Math.floor(Math.random() * 30)},
{x: 1535737600000, y: Math.floor(Math.random() * 30)},
{x: 1545737600000, y: Math.floor(Math.random() * 30)}
]
}
];
function createChart() {
Highcharts.stockChart('container', {
plotOptions: {
series: {
showInNavigator: true
}
},
tooltip: {
pointFormat: '<span style="color:{series.color}">{series.name}</span>: <b>{point.y}</b><br/>',
valueDecimals: 0
},
series: seriesOptions
});
}
createChart();
Вот скрипка .