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

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

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

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

/**
 * (Highcharts, Highmaps) Additional styles to apply to the data label of a
 * point that has drilldown data. By default it is underlined and blue to invite
 * to interaction.
 *
 * In styled mode, active data label styles can be applied with the
 * .highcharts-drilldown-data-label class.
 *
 * @see https://api.highcharts.com/highcharts/drilldown.activeDataLabelStyle
 * @see https://api.highcharts.com/highmaps/drilldown.activeDataLabelStyle
 *
 */
public interface DrilldownActiveDataLabelStyleOptions extends Any {
  /**
   * @implspec color?: string;
   *
   */
  @JSProperty("color")
  @Nullable
  String getColor();

  /**
   * @implspec color?: string;
   *
   */
  @JSProperty("color")
  void setColor(String value);

  /**
   * @implspec cursor?: string;
   *
   */
  @JSProperty("cursor")
  @Nullable
  String getCursor();

  /**
   * @implspec cursor?: string;
   *
   */
  @JSProperty("cursor")
  void setCursor(String value);

  /**
   * @implspec fontWeight?: string;
   *
   */
  @JSProperty("fontWeight")
  @Nullable
  String getFontWeight();

  /**
   * @implspec fontWeight?: string;
   *
   */
  @JSProperty("fontWeight")
  void setFontWeight(String value);

  /**
   * @implspec textDecoration?: string;
   *
   */
  @JSProperty("textDecoration")
  @Nullable
  String getTextDecoration();

  /**
   * @implspec textDecoration?: string;
   *
   */
  @JSProperty("textDecoration")
  void setTextDecoration(String value);
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy