Suppose I have a script like this
set terminal png enhanced
set output "test.png"
set ytics format "%.1t 10^{%S}"
set ytics 5000
set mytics 5
set xrange [0:16000]
plot x
Which produces the following.
I do wnat major tics as well as minor tics. However, the tic at zero looks ugly, so I would like to modify or delete it.
I tried set ytics (5000,10000,15000)
. This is possible, but then I loose the minor tics. Also, I don't want to put the tics manually.
So a solution to this problem would
- remove the
y=0
tic or - modify the
set ytics format
or - adds minor tics for manual major tics, but according to the manual this is not possible.
An other solution that I didn't think of is of course also appreciated!