これらの日付のフォントサイズを変更する方法を知っている人はいますか?少しずつ小さくして、毎回1つをスキップするのではなく、すべてが収まるようにします。
で試してください:
options:{
hAxis : {
textStyle : {
fontSize: 7 // or the number you want
}
}
}
以下のコードを使用してこの問題を修正しました。
titleTextStyle-タイトルのテキストスタイルを指定するオブジェクト。オブジェクトの形式は次のとおりです。
var options = {
title: 'Chart Name ',
width: '100%',
height: '100%',
legend: {
position: "none"
},
hAxis: {
title: 'Request Status',
titleTextStyle: {
color: "#000",
fontName: "sans-serif",
fontSize: 11,
bold: true,
italic: false
}
},
vAxis: {
title: 'Amount requested ($)',
titleTextStyle: {
color: "#000",
fontName: "sans-serif",
fontSize: 11,
bold: true,
italic: false
}
},
annotations: {
alwaysOutside: true,
textStyle: {
fontSize: 14,
auraColor: 'none'
}
}
};
ハッピーコーディング...