What to use for labeling a pie chart by a block:

| b |
b := RTPieBuilder new.
b objects: (1 to: 10).
b slice: [ :nr | nr squared  ].
b normalizer distinctColor.
b labelled:[:i | i asWords].
b build.
b view

this will raise a deprecation warning, with the info I should use #labelled: instead of #labelled:
:)


There is no method expecting a single block ?
Only labeledIf:withBlock:  ?



nicolai