我想把米方(m 2 )放在图表js y轴上。
我有以下功能:
var floorOptions = {
animation: true,
scaleLabel:
function(label){return label.value.toString().replace(/\B(?=(\d{3})+(?!\d))/g, ",") + ' m<sup>2</sup>';}
};
它没有用。有人可以帮忙吗? THX
答案 0 :(得分:0)
试试这个:
var floorOptions = {
animation: true,
scaleLabel:
function(label){return label.value.toString().replace(/\B(?=(\d{3})+(?!\d))/g, ",") + ' m/\u00B2'
;}
Canvas不支持HTML标记,但您可以将unicode字符用于上标'2'。