react-data-export
react-data-export copied to clipboard
Unable to print multiple datasets with same ySteps
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,
}