Reputation: 13
I'm new to gnuplot and I want to remove all of the axis and borders from the a plot. I've turned off borders, xtics, & ytics but I'm still getting an x-axis in my plot.
gnuplot> unset border
gnuplot> unset ytics
gnuplot> unset xtics
gnuplot> set samples 1000
gnuplot> set polar
dummy variable is t for curves
gnuplot> plot [0:10*pi] 10+2*sin(56*pi*t/20)
Upvotes: 1
Views: 5163
Reputation: 39
You can add the following:
unset border
unset xtics
unset ytics
Greetings
Upvotes: 3
Reputation: 25692
add the following commands:
unset raxis
unset rtics
Check help raxis
and help rtics
.
Upvotes: 1