Open
Description
What is the feature?
A symmetric/lower&upper value against a line series plot to depict a confidence band. This would be a continuous diagram in contrast to error bars.
(Optional) Why this feature is useful and how people would use the feature?
Plotting an error bar for very dense plots is only makes the plot harder to view, a confidence band makes the view easier.
(Optional) Additional Information
In matplotlib, this will be ax.fill_between
.
The current means to replicate this is some cumbersome chart.draw_series(std::iter::once(Polygon::new(...)))
method from what I understand.
edit: I am willing to try make this feature if pointed in some direction on where the function should live and some of the relevant backend I should be looking at.