user3708067
user3708067

Reputation: 613

Gnuplot polar radial axis style

How does one remove or adjust the style of the radial axis line when plotting in polar coordinates using Gnuplot?

Example:

set polar
unset key
unset border
unset tics
plot '' u w filledcurve

Produces:

I want to remove/adjust the horizontal black line.

Upvotes: 3

Views: 1555

Answers (1)

Thor
Thor

Reputation: 47089

The command you are looking for is unset raxis, e.g.:

set polar
unset key
unset border
unset tics
unset raxis
set size square
plot 1+cos(t) with filledcurve

I added set size square to use square ratio. The above script results in:

Plot of cardoid function

Upvotes: 4

Related Questions