From the Plotter help file:
(
a = { (0..30).scramble }.dup(2).plot;
a.setProperties(
\fontColor, Color.red,
\plotColor, Color.blue,
\backgroundColor, Color.grey(0.8),
\gridColorX, Color.white,
\labelX, "Humidity",
\labelY, "Hello"
);
a.refresh;
);
The x and y labels are not shown for some reason.
Can reproduce.
same here. could be this: draws at a wrong position.
(maybe in Plot:drawLabels)
The problem is in Plot:drawLabels that Pen.strokeColor_ is used, but it should be Pen.fillColor_.
Most helpful comment
The problem is in
Plot:drawLabelsthatPen.strokeColor_is used, but it should bePen.fillColor_.