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

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

There is a newer version: 0.1.0-alpha2
Show newest version
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