I am trying to remove xtics from the graph (text labels and small vertical lines) and replace my own custom xtics (vertical line labels). I could add text labels and arrows without headings instead of xtics ( http://gnuplot.sourceforge.net/demo/textrotate.html ), but there should be a simpler solution.
I tried this:
unset xtics set xtics format "" set xtics scale 0 set xtics add ("someTicLabel1" someFloat1) set xtics add ("someTicLabel2" someFloat2)
It gets rid of the xtics shortcuts by default, but horizontal vertical lines remain. How can I get rid of them?
source share