var pod = new LinePod(
document.getElementById('chart'),
[
{ datapoints: [...], color: 'black' },
],
options
);
I think just data would be better for this. It would be more consistent with other options like Markers
This is how happens setup of LinePod:
```
var pod = new LinePod(
document.getElementById('chart'),
[
{ datapoints: [...], color: 'black' },
],
options
);
```
I think just `data` would be better for this. It would be more consistent with other options like Markers
This is how happens setup of LinePod:
I think just
data
would be better for this. It would be more consistent with other options like MarkersActually it should be moved to
core