react-charts icon indicating copy to clipboard operation
react-charts copied to clipboard

Stacked Bar not behaving properly

Open orangeswim opened this issue 3 years ago • 0 comments

See https://codesandbox.io/s/nostalgic-field-kzsx15

image Stacked bar is floating and is higher than the actual value total.

const data = [ { label: "Keyword Distribution", data: [ { x: "<Blocker>", y: 10 }, { x: "<Rush>", y: 8 }, { x: "Counter", y: 4 }, { x: "Trigger", y: 5 }, { x: "[On Play]", y: 12 }, { x: "[When Attacking]", y: 2 } ] }, { label: "Counter +1000", data: [ { y: 20, x: "Counter" } ] }, { label: "Counter +2000", data: [ { y: 8, x: "Counter" } ] } ];

orangeswim avatar Jul 06 '22 05:07 orangeswim