Replies: 1 comment
-
|
For now I'm using chart.unload({
done: () => {
chart.load({
xs,
columns,
colors,
type: line(),
})
},
}) |
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.
Uh oh!
There was an error while loading. Please reload this page.
-
I am using a
linegraph to display amultipleXYLineChart, e.g. something along these lines:Which renders as this:
If I try to update the values with new values that contain fewer elements than before (e.g. a single XY line), then I end up with orphaned lines on the charts:
It is as if it hasn't flushed-out all of the previous lines from the old state, or am I doing something wrong?
Beta Was this translation helpful? Give feedback.
All reactions