How do I change the font size of my title in google chart?
var options = { title: 'My Daily Activities', 'backgroundColor': 'transparent', is3D: true, };
To hide the legend in Google Chart with JavaScript, we set the legend property to 'none' . const options = { //... legend: "none", }; to set legend to 'none' in the options object to hide the legend.
Use titleTextStyle in options like this
var options = { titleTextStyle: { color: <string>, // any HTML string color ('red', '#cc00cc') fontName: <string>, // i.e. 'Times New Roman' fontSize: <number>, // 12, 18 whatever you want (don't specify px) bold: <boolean>, // true or false italic: <boolean> // true of false } }
You can find a complete support guide for Google Charts here https://developers.google.com/chart/interactive/docs
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With