twosigma / twosigma/beakerx

Create warning message about limits

Open
#8,263 0 comments 0 reactions 0 assignees View on GitHub
Enhancement
Dominant language
Jupyter Notebook
Stars
2.9k
Forks
383
PR merge metrics
No merged PRs in 30d

Description

code (python) for checking:
```
from beakerx import *
xs = [];
ys = [];
for i in range(55000):
xs.append(i);
ys.append(i);

plot = Plot()
plot.add(Line(x=xs, y=ys))
```
![image](https://user-images.githubusercontent.com/17744188/78368484-62d31400-75cc-11ea-926e-448db9812676.png)
We have limits = 10000 of objects for Plots without any warning message.

We needs create warning message about limits of data, like we done for another widgets:
![image](https://user-images.githubusercontent.com/17744188/78367936-86e22580-75cb-11ea-84dc-109f739b4927.png)

Contributor guide

No contributing guide indexed for this repository

Assessment

This issue has not been assessed yet.

Get new issues in your inbox

A short digest of beginner-friendly GitHub issues.