这是我目前在我的图表中使用的代码,我的问题是我似乎无法格式化工具提示,因此只显示一个X轴值,您可以在下面的图片中看到,基本上我我希望完全控制X和Y点的发布截至目前我正在获得一个不请自来的X轴客人。我似乎无法在这个系统和任何可以解释为什么会发生这种情况或如何阻止它的例子之间找到合理的区别。
https://drive.google.com/file/d/0B9EllFfWHFFVT1JaMEp4ZG9xYXc/view 抱歉不得不张贴外部图片,因为我在这里花的时间太少......
//call in the quants
$(function () {
$('#container1').highcharts({
chart: {
type: 'area'
},
title: {
text: 'Cost Of Program'
},
subtitle: {
text: 'Price of The Program'
},
xAxis: {
title: {
enabled: true,
text: 'Weeks '
},
categories: xAxis
},
yAxis: {
title: {
text: 'Cost'
},
plotLines: [{
value: 0,
width: 1,
color: '#808080'
}]
},
tooltip: {
pointFormat: 'Weeks In: {point.x}, {series.name}: {point.y}'
},
plotOptions: {
area: {
pointStart: 0,
marker: {
enabled: false,
symbol: 'circle',
radius: 2,
states: {
hover: {
enabled: true
}
}
}
}
},
series: [{
name: 'Money Youll Win Back If You Quit',
data: winMoney
},{
name: 'How Much Youll Lose If You Quit',
data: loseMoney
}, {
name: 'Cost of the Program (cumulative)',
data: ourFee
}]
});
});
}
答案 0 :(得分:0)
tooltip: {
pointFormat: 'Weeks In: {point.x}, {series.name}: {point.y}',
headerFormat: ""
},