![JAR search and dependency download from the Maven repository](/logo.png)
com.github.fluorumlabs.disconnect.highcharts.PlotVbpVolumeDivisionOptions 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) The styles for bars when volume is divided into
* positive/negative.
*
* @see https://api.highcharts.com/highstock/plotOptions.vbp.volumeDivision
*
*/
public interface PlotVbpVolumeDivisionOptions extends Any {
/**
* (Highstock) Option to control if volume is divided.
*
* @see https://api.highcharts.com/highstock/plotOptions.vbp.volumeDivision.enabled
*
* @implspec enabled?: boolean;
*
*/
@JSProperty("enabled")
boolean getEnabled();
/**
* (Highstock) Option to control if volume is divided.
*
* @see https://api.highcharts.com/highstock/plotOptions.vbp.volumeDivision.enabled
*
* @implspec enabled?: boolean;
*
*/
@JSProperty("enabled")
void setEnabled(boolean value);
/**
* @implspec styles?: PlotVbpVolumeDivisionStylesOptions;
*
*/
@JSProperty("styles")
@Nullable
PlotVbpVolumeDivisionStylesOptions getStyles();
/**
* @implspec styles?: PlotVbpVolumeDivisionStylesOptions;
*
*/
@JSProperty("styles")
void setStyles(PlotVbpVolumeDivisionStylesOptions value);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy