Google charts - Main title and axis size -
i'm trying change font size main title , axis titles cannot code:
  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}}   }; could me?
thanks in advance & regards, luis
there no option --> titlefontsize  
instead, use option --> titletextstyle  
e.g.
haxis: {   titletextstyle: {     fontsize: 24   } } see configuration options more...

Comments
Post a Comment