Google charts change haxis font size

Alex van Es picture Alex van Es · Nov 26, 2014 · Viewed 32k times · Source

Does anyone know a way to change the font size of these dates? I want to make them a little smaller so they will all fit instead of skipping one each time..

enter image description here

Answer

juvian picture juvian · Nov 26, 2014

Try with:

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

    }

}