我想动态更新工具提示日期格式。与按钮单击事件一样,工具提示日期格式将更改为另一个。看看我的HTML:
<div id="container" style="height: 300px"></div>
<button id="dateFormate">changeDateFormat</button>
on Click the button date format chang to %m-%d-%y
的Javascript
$(function () {
$('#container').highcharts({
xAxis: {
type: 'datetime'
},
tooltip: {
xDateFormat: '%Y-%m-%d',
shared: true
},
plotOptions: {
series: {
pointStart: Date.UTC(2012, 0, 1),
pointInterval: 24 * 3600 * 1000
}
},
series: [{
data: [29.9, 71.5, 106.4, 129.2, 144.0, 176.0, 135.6, 148.5, 216.4, 194.1, 95.6, 54.4]
}, {
data: [29.9, 71.5, 106.4, 129.2, 144.0, 176.0, 135.6, 148.5, 216.4, 194.1, 95.6, 54.4].reverse()
}]
});
});
答案 0 :(得分:5)
您还可以在系列中定义工具提示格式,然后使用新格式更新系列数组。
示例:http://jsfiddle.net/hL8ae0yr/1/
chart.series[0].update({
tooltip:{
xDateFormat: '%Y/%m/%d',
}
});
答案 1 :(得分:0)
这可以通过重建图表来完成。渲染图表后,我无法找到一种方法来访问要重置的chart.tooltip.options。所以你可以这样做:
$("#dateFormate").click(function () {
var theChart = $('#container').highcharts();
var initOptions = theChart.options;
var options0 = {
tooltip: {
xDateFormat: '%m-%d-%y'
}
};
optionsNew = Highcharts.merge(initOptions, options0);
$('#container').highcharts(optionsNew);
});
这会将新tooltip.xDateFormat
与现有图表选项合并,然后重新创建图表。