react-data-export icon indicating copy to clipboard operation
react-data-export copied to clipboard

Unable to print multiple datasets with same ySteps

Open jatinatgit opened this issue 5 years ago • 0 comments

If I try to print two datasets with similar ySteps it should print those datasets parellely, but it is not the case. For example,

Both the ySteps are set to 0, but instead it is printing the second dataset with the ySteps from the place the first dataset has finished. Is there any solution to it?

```
 {
    xSteps: 0,
    ySteps: 0,
    columns: column,
    data: data,
  },
  {
    xSteps: 5,
    ySteps: 0,
    columns: column,
    data: data,
  }

jatinatgit avatar Jun 12 '20 01:06 jatinatgit