Charts 谷歌图表-主标题和轴大小

Charts 谷歌图表-主标题和轴大小,charts,google-visualization,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º

我正在尝试更改主标题和轴标题的字体大小,但无法使用以下代码:

  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}}
  };

有人能帮我吗

提前感谢和问候, 路易斯

没有-->
标题字体大小的选项

相反,请使用-->
titleTextStyle

e、 g

hAxis: {
  titleTextStyle: {
    fontSize: 24
  }
}

有关更多信息,请参见…

此问题是否有问题?