Font Family Selection With Google Charts?

charts, google-api, google-visualization, javascript

Solution

Have a look to the textstyle properties, take for example the `hAxis.textStyle`:

hAxis.textStyle: { color: '#FF0000', 
                   fontName: 'Arial', 
                   fontSize: '10' }

Problem

Is it possible to set font-family for any of the non-flash Google chart visualizations? Specifically for things like the text on the chart axis. Google charts is powerful, but ugly. And unfortunately I can’t move to something nicer, like gRaphael.

Original source

Related problems