6
如何在Google图表中更改我的标题字体大小?如何更改google图表标题字体大小?
var options = {
title: 'My Daily Activities',
'backgroundColor': 'transparent',
is3D: true,
};
如何在Google图表中更改我的标题字体大小?如何更改google图表标题字体大小?
var options = {
title: 'My Daily Activities',
'backgroundColor': 'transparent',
is3D: true,
};
使用titleTextStyle在类似的选项这个
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
}
}
你可以从这里找到谷歌图表完整支持引导 https://developers.google.com/chart/interactive/docs
才能让它响应?意味着在谷歌铬它的工作正常,但在Mozilla的字体大小没有设置为每个屏幕大小 –
不适用于日历图:( –