Hi,
Indeed, there is no example for this in the image.
You do it by using the GraphETPresentation from Glamour. Here is a standalone example:
GLMCompositePresentation new with: [ :composite |
composite graphET
chart: [ :chart :input |
chart verticalBarDiagram
models: input;
y: #yourself ]];
openOn: (1 to: 42)
To do it inside the MooseFinder, you extend the instance side of your class with a method like this:
mooseFinderMyChartIn: composite
<moosePresentationOrder: 20>
composite graphET
chart: [ :chart :input |
chart verticalBarDiagram
models: anInputBasedOnSelf;
y: [:value | someTransformation ] ]
Let me know if this works for you.
Cheers,
Doru
_______________________________________________