yaxis min/max based on one series only #612
Unanswered
pinionless
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 have 2 series and I want to set min/max based only on the values of one off them
EVAL:(seriesName, opts) => { return opts.w.globals.series[0].reduce((a, b) => Math.max(a, b), -Infinity) }
This gets me MIN value for series "0" but I am not able to use it to set min max values for series "1"
does not accept EVAL
and
does not accept min/max
Any solutions?
Beta Was this translation helpful? Give feedback.
All reactions