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

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

There is a newer version: 0.1.0-alpha2
Show newest version
package com.github.fluorumlabs.disconnect.highcharts;

import js.extras.JsEnum;
import org.teavm.jso.JSProperty;

/**
 * (Highstock) A price envelopes indicator. If the type option is not specified,
 * it is inherited from chart.type.
 *
 * Configuration options for the series are given in three levels:
 *
 * 
    *
  1. * Options for all series in a chart are defined in the plotOptions.series * object. * *
  2. *
  3. * Options for all priceenvelopes series are defined in * plotOptions.priceenvelopes. * *
  4. *
  5. * Options for one single series are given in the series instance array. * *
  6. *
* (see online documentation for example) * * @see https://api.highcharts.com/highstock/series.priceenvelopes * */ public interface SeriesPriceenvelopesOptions extends PlotPriceenvelopesOptions, SeriesOptions { /** * (Highcharts, Highstock, Highmaps) This property is only in TypeScript * non-optional and might be undefined in series objects from unknown * sources. * * @implspec type: "priceenvelopes"; * */ @JSProperty("type") Type getType(); /** * (Highcharts, Highstock, Highmaps) This property is only in TypeScript * non-optional and might be undefined in series objects from unknown * sources. * * @implspec type: "priceenvelopes"; * */ @JSProperty("type") void setType(Type value); /** */ abstract class Type extends JsEnum { public static final Type PRICEENVELOPES = JsEnum.of("priceenvelopes"); } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy