Class DownsampleOptions

java.lang.Object
io.deephaven.web.client.api.widget.plot.DownsampleOptions

@JsType(namespace="dh.plot") public class DownsampleOptions extends Object
  • Field Summary

    Fields
    Modifier and Type
    Field
    Description
    static 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

    Methods inherited from class java.lang.Object

    clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
  • Field Details

    • MAX_SERIES_SIZE

      public static int MAX_SERIES_SIZE
      Max 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_SIZE
      Max 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

      public static final DownsampleOptions 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

      public static final DownsampleOptions 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.