admin管理员组文章数量:1339785
I have a graph with 2 yaxis and i am tying to get the yaxis title for each series in the tooltip formatter.
This is my formatter function:
formatter: function() {
var s = '<b>'+ Highcharts.dateFormat('$hc_date_long', this.x) +'</b><table>';
sum = 0;
var abweichung = 0;
var stellen = 0;
$.each(this.points, function(i, point) {
var prev = jQuery.inArray(point.x, point.series.processedXData)-1;
var percent = 0;
if(prev>=0){
prev = point.series.points[prev];
percent = (point.y - prev.y) * 100 / point.y;
}
s += '<tr><td style=\"color: '+point.series.color+';padding:2px;\">'+ point.series.name +':</td><td style=\"text-align:right;padding:2px;\"> '+ extround(point.y,100) +' !!GETYAXISTITLE!!</td><td style=\"text-align:right;padding:2px;\">'+percent+'</td></tr>';
sum += point.y;
});
s += '</table>';
return s;
},
The api only contains the function "setTitle()" there is no getTitle() function?
I have a graph with 2 yaxis and i am tying to get the yaxis title for each series in the tooltip formatter.
This is my formatter function:
formatter: function() {
var s = '<b>'+ Highcharts.dateFormat('$hc_date_long', this.x) +'</b><table>';
sum = 0;
var abweichung = 0;
var stellen = 0;
$.each(this.points, function(i, point) {
var prev = jQuery.inArray(point.x, point.series.processedXData)-1;
var percent = 0;
if(prev>=0){
prev = point.series.points[prev];
percent = (point.y - prev.y) * 100 / point.y;
}
s += '<tr><td style=\"color: '+point.series.color+';padding:2px;\">'+ point.series.name +':</td><td style=\"text-align:right;padding:2px;\"> '+ extround(point.y,100) +' !!GETYAXISTITLE!!</td><td style=\"text-align:right;padding:2px;\">'+percent+'</td></tr>';
sum += point.y;
});
s += '</table>';
return s;
},
The api only contains the function "setTitle()" there is no getTitle() function?
Share Improve this question edited Apr 18, 2013 at 13:17 Lukasz Koziara 4,3205 gold badges34 silver badges44 bronze badges asked Feb 12, 2013 at 8:54 MikeMike 7551 gold badge15 silver badges32 bronze badges2 Answers
Reset to default 9Correct way to get Y Axis title in tooltip formatter is :
this.point.series.yAxis.axisTitle.textStr
To get title in function
chart.options.yAxis[0].title.text
Or set title like this:
yAxis: {
title: {
enabled: true,
text: 'Custom with <b>simple</b> <i>markup</i>',
style: {
fontWeight: 'normal'
}
}
},
DEMO
本文标签: javascripthighcharts get yaxis titleStack Overflow
版权声明:本文标题:javascript - highcharts: get yaxis title? - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743598285a2508203.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论