web-dev-qa-db-ja.com

Googleチャートはhaxisフォントサイズを変更します

これらの日付のフォントサイズを変更する方法を知っている人はいますか?少しずつ小さくして、毎回1​​つをスキップするのではなく、すべてが収まるようにします。

enter image description here

18
Alex van Es

で試してください:

options:{
    hAxis : { 
        textStyle : {
            fontSize: 7 // or the number you want
        }

    }

}
49
juvian

以下のコードを使用してこの問題を修正しました。

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'
        }
    }
};

Google Chartの詳細

ハッピーコーディング...

2
Shiva