com.github.fluorumlabs.disconnect.highcharts.XAxisDateTimeLabelFormatsOptions 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 javax.annotation.Nullable;
import js.lang.Any;
import org.teavm.jso.JSProperty;
/**
* (Highcharts, Highstock, Gantt) For a datetime axis, the scale will
* automatically adjust to the appropriate unit. This member gives the default
* string representations used for each unit. For intermediate values, different
* units may be used, for example the day
unit can be used on midnight and
* hour
unit be used for intermediate values on the same axis. For an overview
* of the replacement codes, see dateFormat. Defaults to:
*
* (see online documentation for example)
*
* @see https://api.highcharts.com/highcharts/xAxis.dateTimeLabelFormats
* @see https://api.highcharts.com/highstock/xAxis.dateTimeLabelFormats
* @see https://api.highcharts.com/gantt/xAxis.dateTimeLabelFormats
*
*/
public interface XAxisDateTimeLabelFormatsOptions extends Any {
/**
* @implspec day?: XAxisDateTimeLabelFormatsDayOptions;
*
*/
@JSProperty("day")
@Nullable
XAxisDateTimeLabelFormatsDayOptions getDay();
/**
* @implspec day?: XAxisDateTimeLabelFormatsDayOptions;
*
*/
@JSProperty("day")
void setDay(XAxisDateTimeLabelFormatsDayOptions value);
/**
* @implspec hour?: XAxisDateTimeLabelFormatsHourOptions;
*
*/
@JSProperty("hour")
@Nullable
XAxisDateTimeLabelFormatsHourOptions getHour();
/**
* @implspec hour?: XAxisDateTimeLabelFormatsHourOptions;
*
*/
@JSProperty("hour")
void setHour(XAxisDateTimeLabelFormatsHourOptions value);
/**
* @implspec millisecond?: XAxisDateTimeLabelFormatsMillisecondOptions;
*
*/
@JSProperty("millisecond")
@Nullable
XAxisDateTimeLabelFormatsMillisecondOptions getMillisecond();
/**
* @implspec millisecond?: XAxisDateTimeLabelFormatsMillisecondOptions;
*
*/
@JSProperty("millisecond")
void setMillisecond(XAxisDateTimeLabelFormatsMillisecondOptions value);
/**
* @implspec minute?: XAxisDateTimeLabelFormatsMinuteOptions;
*
*/
@JSProperty("minute")
@Nullable
XAxisDateTimeLabelFormatsMinuteOptions getMinute();
/**
* @implspec minute?: XAxisDateTimeLabelFormatsMinuteOptions;
*
*/
@JSProperty("minute")
void setMinute(XAxisDateTimeLabelFormatsMinuteOptions value);
/**
* @implspec month?: XAxisDateTimeLabelFormatsMonthOptions;
*
*/
@JSProperty("month")
@Nullable
XAxisDateTimeLabelFormatsMonthOptions getMonth();
/**
* @implspec month?: XAxisDateTimeLabelFormatsMonthOptions;
*
*/
@JSProperty("month")
void setMonth(XAxisDateTimeLabelFormatsMonthOptions value);
/**
* @implspec second?: XAxisDateTimeLabelFormatsSecondOptions;
*
*/
@JSProperty("second")
@Nullable
XAxisDateTimeLabelFormatsSecondOptions getSecond();
/**
* @implspec second?: XAxisDateTimeLabelFormatsSecondOptions;
*
*/
@JSProperty("second")
void setSecond(XAxisDateTimeLabelFormatsSecondOptions value);
/**
* @implspec week?: XAxisDateTimeLabelFormatsWeekOptions;
*
*/
@JSProperty("week")
@Nullable
XAxisDateTimeLabelFormatsWeekOptions getWeek();
/**
* @implspec week?: XAxisDateTimeLabelFormatsWeekOptions;
*
*/
@JSProperty("week")
void setWeek(XAxisDateTimeLabelFormatsWeekOptions value);
/**
* @implspec year?: XAxisDateTimeLabelFormatsYearOptions;
*
*/
@JSProperty("year")
@Nullable
XAxisDateTimeLabelFormatsYearOptions getYear();
/**
* @implspec year?: XAxisDateTimeLabelFormatsYearOptions;
*
*/
@JSProperty("year")
void setYear(XAxisDateTimeLabelFormatsYearOptions value);
}