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

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

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

import javax.annotation.Nullable;
import js.lang.Any;
import org.teavm.jso.JSProperty;

/**
 * (Highcharts) Options for the button appearing when drilling down in a
 * treemap.
 *
 * @see https://api.highcharts.com/highcharts/plotOptions.treemap.drillUpButton
 *
 */
public interface PlotTreemapDrillUpButtonOptions extends Any {
  /**
   * (Highcharts) The position of the button.
   *
   * @see https://api.highcharts.com/highcharts/plotOptions.treemap.drillUpButton.position
   *
   * @implspec position?: PlotTreemapDrillUpButtonPositionOptions;
   *
   */
  @JSProperty("position")
  @Nullable
  PlotTreemapDrillUpButtonPositionOptions getPosition();

  /**
   * (Highcharts) The position of the button.
   *
   * @see https://api.highcharts.com/highcharts/plotOptions.treemap.drillUpButton.position
   *
   * @implspec position?: PlotTreemapDrillUpButtonPositionOptions;
   *
   */
  @JSProperty("position")
  void setPosition(PlotTreemapDrillUpButtonPositionOptions value);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy