Scatter chart doesn't print values of 1
nicolaibach opened this issue · 2 comments
nicolaibach commented
Hi, I have a strange problem with the scatter chart. Somehow the Y Axis starts at 2 and not 1.
- macOS version 10.15.7
- Terminal.app version 2.10
The code:
const options = {
legendGap: 4,
};
const data = [
{ key: "A", value: [1, 1] },
{ key: "A", value: [2, 2] },
{ key: "A", value: [3, 3] },
{ key: "A", value: [4, 4] },
];
console.log(ervy.scatter(data, options));
And this is the result:
Am I missing something?
Thank you very much!
chunqiuyiyu commented
nicolaibach commented
Yes, works like a charm. Thank you very much!