Set font size of values numbers on the axis

前端 未结 2 954
礼貌的吻别
礼貌的吻别 2020-12-28 15:28

How do I set the font size for the values on both the x and y-axis?

I\'ve looked around and I\'ve only found ways to change the xlabel\'s size and

相关标签:
2条回答
  • 2020-12-28 15:45

    It was with:

    set xtics font "Times-Roman, 30" 
    
    0 讨论(0)
  • 2020-12-28 16:10

    Small elaboration on bb2's answer, if you do not want to change the font face:

    set xtics font ", 30"
    

    And for tics on the yaxis:

    set ytics font ", 30"
    

    For both axis at the same time:

    set tics font ", 30"
    
    0 讨论(0)
提交回复
热议问题