jsGraph icon indicating copy to clipboard operation
jsGraph copied to clipboard

Zoom and disappearing line

Open lpatiny opened this issue 5 years ago • 0 comments

I have a small test case

But when I zoom the line of the left disappears and the one of the right is end outside the graph

image

image

{
  "series": [
    {
      "type": "color",
      "data": {
        "x": [
          1,
          2,
          3,
          4,
          5
        ],
        "y": [
          1,
          2,
          3,
          2,
          1
        ],
        "color": [
          "green",
          "red",
          "blue",
          "yellow",
          "pink"
        ]
      }
    }
  ]
}

lpatiny avatar Nov 03 '20 06:11 lpatiny