com.github.fluorumlabs.disconnect.highcharts.PlotStochasticParamsOptions 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 com.github.fluorumlabs.disconnect.types.DoublePair;
import js.lang.Any;
import org.teavm.jso.JSProperty;
import javax.annotation.Nullable;
public interface PlotStochasticParamsOptions extends Any {
/**
* (Highstock) Periods for Stochastic oscillator: [%K, %D].
*
* @see https://api.highcharts.com/highstock/plotOptions.stochastic.params.periods
*
* @implspec periods?: [number, number];
*
*/
@JSProperty("periods")
@Nullable
DoublePair getPeriods();
/**
* (Highstock) Periods for Stochastic oscillator: [%K, %D].
*
* @see https://api.highcharts.com/highstock/plotOptions.stochastic.params.periods
*
* @implspec periods?: [number, number];
*
*/
@JSProperty("periods")
void setPeriods(DoublePair value);
}