Replies: 1 comment
-
I found the problem. There are different amount of series than yaxis |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
Line and bar charts. I faced this on my own application, but tried it in the codepen editor too.
Reproduce steps:
var options = { chart: { type: 'line', }, series: [{name: "First", data: [1,3,5,7,9]}, {name: "second", data: [1, 2, 3, 4, 5]}, {name: "foo", data: [11, 12, 13, 14, 15]} ], yaxis: [{ seriesName: "First", title: { text: "First" }, }, { seriesName: "this causes problems", title: { text: "Problem" }, }, ] }
Above works but
if I change the second y-axis seriesName from "this causes problems" to "foo", rendering fails.
Why? Is this bug or do I understand something wrong.
Beta Was this translation helpful? Give feedback.
All reactions