We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7596fe1 commit 2cb29d5Copy full SHA for 2cb29d5
src/chart.ts
@@ -553,7 +553,8 @@ export class Chart extends EventEmitter.EventEmitter {
553
},
554
(d: any) => {
555
// The key is the function set or other value that uniquely identifies the datum.
556
- return d.fn || d.r || d.x || d.text
+ // Fix #344: add graphType to the key to avoid update issues
557
+ return JSON.stringify([d.fn || d.r || d.text || [d.x, d.y], d.graphType])
558
}
559
)
560
0 commit comments