diff --git a/glue_jupyter/bqplot/histogram/viewer.py b/glue_jupyter/bqplot/histogram/viewer.py index 55ed7e41..46583690 100644 --- a/glue_jupyter/bqplot/histogram/viewer.py +++ b/glue_jupyter/bqplot/histogram/viewer.py @@ -15,7 +15,6 @@ class BqplotHistogramView(BqplotBaseView): allow_duplicate_data = False allow_duplicate_subset = False - large_data_size = 1e5 is2d = False _state_cls = HistogramViewerState diff --git a/glue_jupyter/bqplot/image/viewer.py b/glue_jupyter/bqplot/image/viewer.py index 3e91e65e..d9dc7ea8 100644 --- a/glue_jupyter/bqplot/image/viewer.py +++ b/glue_jupyter/bqplot/image/viewer.py @@ -22,7 +22,6 @@ class BqplotImageView(BqplotBaseView): allow_duplicate_data = False allow_duplicate_subset = False - large_data_size = 2e7 _layer_style_widget_cls = {BqplotImageLayerArtist: ImageLayerStateWidget, BqplotImageSubsetLayerArtist: ImageSubsetLayerStateWidget, diff --git a/glue_jupyter/bqplot/scatter/viewer.py b/glue_jupyter/bqplot/scatter/viewer.py index 19ba14aa..7381053e 100644 --- a/glue_jupyter/bqplot/scatter/viewer.py +++ b/glue_jupyter/bqplot/scatter/viewer.py @@ -17,7 +17,6 @@ class BqplotScatterView(BqplotBaseView): allow_duplicate_data = False allow_duplicate_subset = False - large_data_size = 1e7 _state_cls = ScatterViewerState _options_cls = ScatterViewerStateWidget diff --git a/glue_jupyter/ipyvolume/scatter/viewer.py b/glue_jupyter/ipyvolume/scatter/viewer.py index 81b83e3d..e82f3e72 100644 --- a/glue_jupyter/ipyvolume/scatter/viewer.py +++ b/glue_jupyter/ipyvolume/scatter/viewer.py @@ -11,7 +11,6 @@ class IpyvolumeScatterView(IpyvolumeBaseView): allow_duplicate_data = False allow_duplicate_subset = False - large_data_size = 1e7 _state_cls = Scatter3DViewerState _options_cls = Viewer3DStateWidget diff --git a/glue_jupyter/ipyvolume/volume/viewer.py b/glue_jupyter/ipyvolume/volume/viewer.py index 658e4b07..8cd9996f 100644 --- a/glue_jupyter/ipyvolume/volume/viewer.py +++ b/glue_jupyter/ipyvolume/volume/viewer.py @@ -14,8 +14,6 @@ class IpyvolumeVolumeView(IpyvolumeBaseView): - large_data_size = 1e8 - _state_cls = VolumeViewerState _options_cls = Viewer3DStateWidget _data_artist_cls = IpyvolumeVolumeLayerArtist diff --git a/glue_jupyter/table/viewer.py b/glue_jupyter/table/viewer.py index a80fc892..7dae78f4 100644 --- a/glue_jupyter/table/viewer.py +++ b/glue_jupyter/table/viewer.py @@ -211,7 +211,6 @@ def __init__(self, viewer_state): class TableViewer(IPyWidgetView): allow_duplicate_data = False allow_duplicate_subset = False - large_data_size = 1e100 # Basically infinite (a googol) _state_cls = TableState _options_cls = TableViewerStateWidget