I use tooltip.pointFormat
to render additional data in a tooltip. Unfortunately, only point.x
correctly formatted using the thousandth separator.
jsFiddle
$(function () { Highcharts.setOptions({ global: { useUTC: false, }, lang: { decimalPoint: ',', thousandsSep: '.' } }); $('#container').highcharts({ xAxis: { type: 'datetime' }, tooltip: { pointFormat: '{series.name}: <b>{point.y}</b><br/>' + 'Count: <b>{point.count}</b><br/>', shared: true }, series: [{ data: [{ y: 20009.9, count: 20009.9 }, { y: 10009.9, count: 20009.9 }, { y: 40009.9, count: 20009.9 }], pointStart: Date.UTC(2010, 0, 1), pointInterval: 3600 * 1000
source share