I have an array of Candle objects as shown below:
Is there a way in Pharo to display the array in a tabular format?
| date | open | high | low | close |
|------------+------+------+-----+-------|
| 2018-12-28 | 10 | 20 | 30 | 40 |
| 2019-12-28 | 50 | 60 | 70 | 80 |
gtoolkit
The gtoolkit tour has a slide that seems to mention this:
However, it seems that I'd have to define a special collection for holding Candle objects and then define a gtViewCandlesOn method on it to customize how the candles will be rendered.
Just wondering if there's an approach that will work with normal arrays or if the gtoolkit approach is the way to go.

