Supercollider: labelX/labelY properties of plot are not shown

Created on 8 Jul 2016  路  3Comments  路  Source: supercollider/supercollider

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.

bug Qt GUI class library

Most helpful comment

The problem is in Plot:drawLabels that Pen.strokeColor_ is used, but it should be Pen.fillColor_.

All 3 comments

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_.

Was this page helpful?
0 / 5 - 0 ratings