With the current .style_for_each API it's possible to customize each element of a series. Though this can be used to highlight interactive items, it is not very ergonomic. It would be nice to have a similar API like elm-charts, where you can customize a group of items.
Something like:
let group: Vec<ItemId> = ...
series.amongst(group, |style| style.color(...))
With the current
.style_for_eachAPI it's possible to customize each element of a series. Though this can be used to highlight interactive items, it is not very ergonomic. It would be nice to have a similar API likeelm-charts, where you can customize a group of items.Something like: