milia
milia

Reputation: 541

Is it possible to change the color of the labels in fmsb radarchart?

The manual (pdf) doesn't seem to indicate any parameter responsible to change the labels' color. To be clear, I'm not referring to the numbers on the axis, but to the labels at the edges of the polygon.

I've used the first example taken from the solution given to this question.

I tried:

par(col.lab="grey")

before or after calling radarchart function, but it didn't work. The labels remained black.

Upvotes: 2

Views: 564

Answers (1)

milia
milia

Reputation: 541

The solution was to insert the following snippet just before calling the radarchart() function:

par(col="grey")

Doing so one changes the specification for the default plotting color. See here for more.

Upvotes: 2

Related Questions