Can I individually add labels to the plot? #628
Unanswered
duskmoon314
asked this question in
Q&A
Replies: 0 comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I want to draw series and add labels separately.
What I want
In the example, labels are added immediately after
draw_series
:I want to do them separately. That is, I can add labels before or after the drawing. Maybe something like:
Is there a way to do this in the current version?
Why I want to do this
I'm writing a function that transforms some data to
Vec<DynElement>
and draws them at the end of the function. TheVec
may contain multiple series, anddraw_series(...)
seems only to return oneSeriesAnno
object. So, I would like to find a way to add labels individually.Beta Was this translation helpful? Give feedback.
All reactions