securedeveloper / react-data-export

Export dataset in react.
https://securedeveloper.github.io/react-data-export/
MIT License
179 stars 191 forks source link

Unable to print multiple datasets with same ySteps #134

Open jatinatgit opened 4 years ago

jatinatgit commented 4 years ago

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,
  }