![JAR search and dependency download from the Maven repository](/logo.png)
com.github.fluorumlabs.disconnect.highcharts.NormalizedIntervalObject Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of disconnect-highcharts Show documentation
Show all versions of disconnect-highcharts Show documentation
Highcharts API bindings for Disconnect Zero
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