我在下面的图表上有文字。我想更改文本“abc”的字体大小。我尝试在css中放入'font-size':'8px',但它没有用。有没有人对此有所了解?
这是小提琴链接: http://jsfiddle.net/3hGz2/
'events': {
'load': function () {
var label = this['renderer']['label']('* y='+ slope +'x'+'+('+ intercept + ')<br> R^2='+ rSquare)
.css({
'width': '150px',
'color' : 'grey',
'font-size':'8px'
})
.attr({
'stroke': 'grey',
'stroke-width': 0,
'r': 5,
'padding': 3
})
.add();
label.align(Highcharts.extend(['label']['getBBox()'], {
'align': 'right',
'x': -110, // offset
'verticalAlign': 'bottom',
'y': -130 // offset
}), null, 'spacingBox');
}
}
答案 0 :(得分:1)
请参阅http://jsfiddle.net/3hGz2/1/
您可以将字体大小指定为fontSize
.css({
'width': '150px',
'color' : 'grey',
'fontSize':'20px'
})