如何在热图中编辑传奇文本? http://jsfiddle.net/z3auc57d/4/
我想编辑文本“0,2.5 ... 10”,为左右文本分别说“低”和“高”。
$('#container').highcharts({
credits: false,
title: false,
legend: {},
series: [{
type: 'treemap',
layoutAlgorithm: 'squarified',
data: data
}],
legend:{
//...
},
colorAxis: {
minColor: '#A3D9FF',
maxColor: '#FF5460'
}
});
可以在API文档中找到任何合适的内容...... http://api.highcharts.com/highcharts#plotOptions.heatmap.showInLegend
答案 0 :(得分:0)
http://jsfiddle.net/ioying/aey0coov/
labels: {
formatter: function() {
if (this.isFirst) {
return 'low ' +this.value;
} else if (this.isLast) {
return ' '+ this.value + 'high ';
} else {
return this.value;
}
}
}