Google图表 - 主标题和轴大小

时间:2017-03-28 11:03:57

标签: charts google-visualization

我正在尝试更改主标题和轴标题的字体大小,但我不能使用此代码:

  var options = {
    title: 'Ratio de supervivencia de aerolíneas europeas',
    chartArea:{
         top: 20,
         bottom: 50,
         height: '75%'
    },
    width: 800,
    height: 600,
    hAxis: {title: 'Nº total de aerolíneas históricas', titleFontSize: 24},
    vAxis: {title: 'Ratio de supervivencia', format: 'percent', maxValue: 0.7, titleFontSize: 24},
    bubble: {textStyle: {fontSize: 11}}
  };

enter image description here

有人可以帮助我吗?

提前致谢&问候, 路易斯

1 个答案:

答案 0 :(得分:0)

没有选项 - > titleFontSize

相反,请使用 - >选项titleTextStyle

e.g。

hAxis: {
  titleTextStyle: {
    fontSize: 24
  }
}

请参阅configuration options了解更多信息......