Учитывая:
ListPlot[Range[10],
Background -> Gray,
PlotLabel -> "I don`t want the background here !"]
Есть ли способ применить фон исключительно к фактической зоне построения?
Не на оси,не за этикеткой.Так в основном к прямоугольнику {{0,0}, {10,10}} в этом случае?
РЕДАКТИРОВАТЬ: Можем ли мы сделать то же самое, используя PolarListPlot?
Используя Sjoerd Solution на От декартовой диаграммы к полярной гистограмме с использованием Mathematica :
dalist = {{21, 22}, {26, 13}, {32, 17}, {31, 11}, {30, 9},
{25,12}, {12, 16}, {18, 20}, {13, 23}, {19, 21},
{14, 16}, {14,22}, {18, 22}, {10, 22}, {17, 23}}
ScreenCenter = {20, 15}
ListPolarPlot[{ArcTan[##],EuclideanDistance[##]} & @@@ (# - ScreenCenter & /@ dalist),
PolarAxes -> True, PolarGridLines -> Automatic, Joined -> False,
PolarTicks -> {"Degrees", Automatic},
BaseStyle -> {FontFamily -> "Arial", FontWeight -> Bold,
FontSize -> 12}, PlotStyle -> {Red, PointSize -> 0.02}]