![JAR search and dependency download from the Maven repository](/logo.png)
com.github.fluorumlabs.disconnect.highcharts.PlotStochasticSmoothedLineOptions 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;
/**
* (Highstock) Smoothed line options.
*
* @see https://api.highcharts.com/highstock/plotOptions.stochastic.smoothedLine
*
*/
public interface PlotStochasticSmoothedLineOptions extends Any {
/**
* (Highstock) Styles for a smoothed line.
*
* @see https://api.highcharts.com/highstock/plotOptions.stochastic.smoothedLine.styles
*
* @implspec styles?: PlotStochasticSmoothedLineStylesOptions;
*
*/
@JSProperty("styles")
@Nullable
PlotStochasticSmoothedLineStylesOptions getStyles();
/**
* (Highstock) Styles for a smoothed line.
*
* @see https://api.highcharts.com/highstock/plotOptions.stochastic.smoothedLine.styles
*
* @implspec styles?: PlotStochasticSmoothedLineStylesOptions;
*
*/
@JSProperty("styles")
void setStyles(PlotStochasticSmoothedLineStylesOptions value);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy