![JAR search and dependency download from the Maven repository](/logo.png)
com.github.fluorumlabs.disconnect.highcharts.LegendKeyboardNavigationOptions 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 js.lang.Any;
import org.teavm.jso.JSProperty;
/**
* (Highcharts, Highstock, Highmaps) Keyboard navigation for the legend.
* Requires the Accessibility module.
*
* @see https://api.highcharts.com/highcharts/legend.keyboardNavigation
* @see https://api.highcharts.com/highstock/legend.keyboardNavigation
* @see https://api.highcharts.com/highmaps/legend.keyboardNavigation
*
*/
public interface LegendKeyboardNavigationOptions extends Any {
/**
* (Highcharts, Highstock, Highmaps) Enable/disable keyboard navigation for
* the legend. Requires the Accessibility module.
*
* @see https://api.highcharts.com/highcharts/legend.keyboardNavigation.enabled
* @see https://api.highcharts.com/highstock/legend.keyboardNavigation.enabled
* @see https://api.highcharts.com/highmaps/legend.keyboardNavigation.enabled
*
* @implspec enabled?: boolean;
*
*/
@JSProperty("enabled")
boolean getEnabled();
/**
* (Highcharts, Highstock, Highmaps) Enable/disable keyboard navigation for
* the legend. Requires the Accessibility module.
*
* @see https://api.highcharts.com/highcharts/legend.keyboardNavigation.enabled
* @see https://api.highcharts.com/highstock/legend.keyboardNavigation.enabled
* @see https://api.highcharts.com/highmaps/legend.keyboardNavigation.enabled
*
* @implspec enabled?: boolean;
*
*/
@JSProperty("enabled")
void setEnabled(boolean value);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy