highcharts图表组件通过设置tooltip属性⾃定义数据提⽰信息$(function () {
$('#container').highcharts({
chart: {
},
xAxis: {
categories: ['Jan', 'Feb', 'Mar', 'Apr', 'May', 'Jun', 'Jul', 'Aug', 'Sep', 'Oct', 'Nov', 'Dec']
},
tooltip: {
shared: true, //是否共享提⽰,也就是X⼀样的所有点都显⽰出来
useHTML: true, //是否使⽤HTML编辑提⽰信息
headerFormat: '<small>{point.key}</small><table>',
pointFormat: '<tr><td >{series.name}: </td>' +
'<td ><b>{point.y}</b></td></tr>',
react tooptip组件footerFormat: '</table>',
valueDecimals: 2 //数据值保留⼩数位数
},
series: [{
name: 'Short',
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]
}, {
name: 'Long named series',
data: [129.9, 171.5, 106.4, 129.2, 144.0, 176.0, 135.6, 148.5, 216.4, 194.1, 195.6, 154.4].reverse()
}]
});
});

版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。