1
如何更改Google圖表工具提示的字體大小? [這是我試過到目前爲止:https://jsfiddle.net/Albion87/ujpv8oep/3/] 這些都是我需要的一組選項..如何更改Google圖表工具提示的字體大小
// Set chart options
var options = {
isStacked: true,
tooltip: { textStyle: { fontName: 'verdana', fontSize: 7 } },
width: 800,
height: 600,
chart: {
title: 'Year-by-year coffee consumption',
subtitle: 'This data is not real'
},
vAxis: {
viewWindow: {
min: 0,
max: 100
}
},
legend: { position: 'left', alignment: 'start' },
series: {
2: {
targetAxisIndex: 1
},
3: {
targetAxisIndex: 1
}
},
backgroundColor: {fill: 'transparent'},
chartArea: {
backgroundColor: 'transparent'
}
};
這個問題的任何運氣? – WhiteHat