All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.github.fluorumlabs.disconnect.highcharts.NormalizedIntervalObject Maven / Gradle / Ivy

There is a newer version: 0.1.0-alpha2
Show newest version
package com.github.fluorumlabs.disconnect.highcharts;

import js.lang.Any;
import org.teavm.jso.JSProperty;

/**
 * Normalized interval.
 *
 */
public interface NormalizedIntervalObject extends Any {
  /**
   * The count.
   *
   * @implspec count: number;
   *
   */
  @JSProperty("count")
  double getCount();

  /**
   * The count.
   *
   * @implspec count: number;
   *
   */
  @JSProperty("count")
  void setCount(double value);

  /**
   * The interval in axis values (ms).
   *
   * @implspec unitRange: number;
   *
   */
  @JSProperty("unitRange")
  double getUnitRange();

  /**
   * The interval in axis values (ms).
   *
   * @implspec unitRange: number;
   *
   */
  @JSProperty("unitRange")
  void setUnitRange(double value);
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy