Hi!
Based on some example (e.g., below), I inferred that #valueAxis set on labels for the vertical axis. The one on the horizontal axis are set by #identifier:
What #labels: is for exactly?
| diagram | diagram := ESDiagramRenderer new. (diagram verticalBarDiagram) y: [:each | each]; labels: #yourself; identifier: #yourself; defaultColor: Color blue; valueAxis; width: 500; rotatedLabels: false; models: (1 to: 21).
^ diagram open
I have produced the following curve. How can I get the label on the vertical axis as float (with 2 decimal), but not fractions.
I will use your answers to comment some of the method in EyeSee.
Cheers, Alexandre