I am trying to understand how Gnuplot places the circles when using a polar grid.
In the below example I would like to change the number and positioning of the circular dotted lines.
I am using gnuplot 5.4 patchlevel 8 on Windows.
Here is what I tried:
Also, I cannot understand why the horizontal axis is always there although I have specified to unset each and every *tics below.
Here is a minimal script that I used:
reset session
unset terminal
set polar
set angles degrees
set size square
set lmargin 5
unset label
unset border
unset xtics
unset x2tics
unset ytics
unset y2tics
unset cbtics
unset ztics
set grid polar 10
plot "-" using 1:2:3 with points pt 5 ps 5 palette notitle
90 100 2
80 500 3
70 1200 4
EOF
You forgot one type of tics: rtics
.
Please check help rtics
. Also check help raxis
.
So, probably you are looking for something like:
set rtics 250
unset raxis