chunqiuyiyu/ervy

Scatter chart doesn't print values of 1

nicolaibach opened this issue · 2 comments

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:

Screenshot 2021-12-11 at 16 20 57

Am I missing something?
Thank you very much!

Hi, you shoud add enough space to show value near by axis, for example:

const options = {
    legendGap: 4,
    vGap: 3,
    zero: '+'
};

output:
image

Yes, works like a charm. Thank you very much!