mmm-firmware
mmm-firmware

Reputation: 13

How to remove all axis from plot

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)

enter image description here

Upvotes: 1

Views: 5163

Answers (2)

Manuel Ortiz
Manuel Ortiz

Reputation: 39

You can add the following:

unset border
unset xtics
unset ytics

Greetings

Upvotes: 3

theozh
theozh

Reputation: 25692

add the following commands:

unset raxis
unset rtics

Check help raxis and help rtics.

Upvotes: 1

Related Questions