我正在重写工具提示,以便从纪元时间转换,然后我丢失了我的系列颜色上下文编码。它默认为黑色。默认情况下,高级图表会在工具提示中添加颜色上下文和系列名称。
我如何重新设计系列名称与系列线的颜色相同?
小提琴 - > http://jsfiddle.net/EwpWh/3/
tooltip: {
enabled: true,
formatter: function() {
return Highcharts.dateFormat('%A, %b %e, %Y', this.x) +
'<br/>'+ this.series.name +': <b>' + Highcharts.numberFormat(this.point.y,0) + '</b>';
}
},
答案 0 :(得分:0)
看起来以下内容可行:
formatter: function() {
return Highcharts.dateFormat('%A, %b %e, %Y', this.x) +
'<br/><span style="color:' + this.series.color + ' ">'+ this.series.name +'</span>: <b>' + Highcharts.numberFormat(this.point.y,0) + '</b>';
}
},