Class DownsampleOptions
java.lang.Object
io.deephaven.web.client.api.widget.plot.DownsampleOptions
-
Field Summary
FieldsModifier and TypeFieldDescriptionstatic final DownsampleOptions
Flag to let the API decide what data will be available, based on the nature of the data, the series, and how the axes are configured.static final DownsampleOptions
Flat to entirely disable downsampling, and force all data to load, no matter how many items that would be, up to the limit of MAX_SUBSCRIPTION_SIZE.static int
Max number of items in the series before DEFAULT will not attempt to load the series without downsampling.static int
Max number of items in the series where the subscription will be allowed at all. -
Method Summary
-
Field Details
-
MAX_SERIES_SIZE
public static int MAX_SERIES_SIZEMax number of items in the series before DEFAULT will not attempt to load the series without downsampling. Above this size if downsample fails or is not applicable, the series won't be loaded unless DISABLE is passed to series.subscribe(). -
MAX_SUBSCRIPTION_SIZE
public static int MAX_SUBSCRIPTION_SIZEMax number of items in the series where the subscription will be allowed at all. Above this limit, even with downsampling disabled, the series will not load data. -
DEFAULT
Flag to let the API decide what data will be available, based on the nature of the data, the series, and how the axes are configured. -
DISABLE
Flat to entirely disable downsampling, and force all data to load, no matter how many items that would be, up to the limit of MAX_SUBSCRIPTION_SIZE.
-