Highcharts.chart('container', { chart: { type: 'area' }, title: { text: '' }, xAxis: { allowDecimals: false, labels: { formatter: function () { return 0,3,6,9,12,15,18,21 } } }, yAxis: { title: { text: 'Temperatura (°C)' }, labels: { formatter: function () { return this.value / 1; } } }, tooltip: { pointFormat: 'Temperatura <b>{point.y:,.0f}°</b>' }, plotOptions: { area: { pointStart: 0, marker: { enabled: false, symbol: 'circle', radius: 2, states: { hover: { enabled: true } } } } }, series: [{ name: 'Temperatura (°C)', data: [-1, 2, 0, 1] }] });
jak zmienić aby w tabeli X pojawiały się wartości 00:00, 03:00, 06:00 i tak dalej aż do 21:00? Próbuje różnymi sposobami i nie wiem już jak to zrobić...