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

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

There is a newer version: 0.1.0-alpha2
Show newest version
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);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy