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的字體大小沒有設置爲每個屏幕大小 –
不適用於日曆圖:( –