![JAR search and dependency download from the Maven repository](/logo.png)
com.github.fluorumlabs.disconnect.highcharts.PlotPivotpointsParamsOptions 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 PlotPivotpointsParamsOptions extends Any {
/**
* (Highstock) Algorithm used to calculate ressistance and support lines
* based on pivot points. Implemented algorithms: 'standard'
,
* 'fibonacci'
and 'camarilla'
*
* @see https://api.highcharts.com/highstock/plotOptions.pivotpoints.params.algorithm
*
* @implspec algorithm?: string;
*
*/
@JSProperty("algorithm")
@Nullable
String getAlgorithm();
/**
* (Highstock) Algorithm used to calculate ressistance and support lines
* based on pivot points. Implemented algorithms: 'standard'
,
* 'fibonacci'
and 'camarilla'
*
* @see https://api.highcharts.com/highstock/plotOptions.pivotpoints.params.algorithm
*
* @implspec algorithm?: string;
*
*/
@JSProperty("algorithm")
void setAlgorithm(String value);
/**
* (Highstock) The base period for indicator calculations. This is the
* number of data points which are taken into account for the indicator
* calculations.
*
* @see https://api.highcharts.com/highstock/plotOptions.pivotpoints.params.period
*
* @implspec period?: number;
*
*/
@JSProperty("period")
double getPeriod();
/**
* (Highstock) The base period for indicator calculations. This is the
* number of data points which are taken into account for the indicator
* calculations.
*
* @see https://api.highcharts.com/highstock/plotOptions.pivotpoints.params.period
*
* @implspec period?: number;
*
*/
@JSProperty("period")
void setPeriod(double value);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy