catrasca / RadarChart

A package providing radar charts for mathematica.
MIT License
16 stars 4 forks source link

How to define PlotRange #1

Closed shrx closed 8 years ago

shrx commented 8 years ago

is it possible to define the plot range? Ideally both axes, but the y axis range would be sufficient.

catrasca commented 8 years ago

shrx, plotrange is supported. Try out

RadarChart[{{2, 2, 4, 1, 3}, {4, 3, 6, 2, 3}, {1, 2, 3, 7., 4}}, ChartLegends -> None, PlotLabel -> "Left", AxesType -> "Star", Filling -> Bottom, PlotRange -> {0, 10}]

shrx commented 8 years ago

Looks good, thanks