![JAR search and dependency download from the Maven repository](/logo.png)
com.github.fluorumlabs.disconnect.highcharts.DrilldownActiveDataLabelStyleOptions 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 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