Class DownsampleOptions
java.lang.Object
io.deephaven.web.client.api.widget.plot.DownsampleOptions
-
Field Summary
FieldsModifier and TypeFieldDescriptionstatic final DownsampleOptionsFlag 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 DownsampleOptionsFlag to entirely disable downsampling, and force all data to load, no matter how many items that would be, up to the limit ofMAX_SUBSCRIPTION_SIZE.static intMax number of items in the series beforeDEFAULTwill not attempt to load the series without downsampling.static intMax 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 beforeDEFAULTwill not attempt to load the series without downsampling. Above this size if downsample fails or is not applicable, the series won't be loaded unlessDISABLEis passed toseries.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
Flag to entirely disable downsampling, and force all data to load, no matter how many items that would be, up to the limit ofMAX_SUBSCRIPTION_SIZE.
-