Highcharts - 更改图表上文本的字体大小

时间:2013-09-26 20:42:47

标签: highcharts highstock

我在下面的图表上有文字。我想更改文本“abc”的字体大小。我尝试在css中放入'font-size':'8px',但它没有用。有没有人对此有所了解?

enter image description here 这是小提琴链接: 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');

           }
       }

1 个答案:

答案 0 :(得分:1)

请参阅http://jsfiddle.net/3hGz2/1/

您可以将字体大小指定为fontSize

.css({
    'width': '150px',
    'color' : 'grey',
    'fontSize':'20px'
})