com.github.fluorumlabs.disconnect.highcharts.ZAxisDateTimeLabelFormatsMinuteOptions 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 java.lang.String;
import javax.annotation.Nullable;
import js.lang.Any;
import org.teavm.jso.JSProperty;
public interface ZAxisDateTimeLabelFormatsMinuteOptions extends Any {
/**
* @implspec main?: string;
*
*/
@JSProperty("main")
@Nullable
String getMain();
/**
* @implspec main?: string;
*
*/
@JSProperty("main")
void setMain(String value);
/**
* @implspec range?: boolean;
*
*/
@JSProperty("range")
boolean getRange();
/**
* @implspec range?: boolean;
*
*/
@JSProperty("range")
void setRange(boolean value);
}