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

com.github.fluorumlabs.disconnect.highcharts.LangAccessibilityExportingOptions 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, Highstock, Highmaps) Exporting menu format strings for
 * accessibility module.
 *
 * @see https://api.highcharts.com/highcharts/lang.accessibility.exporting
 * @see https://api.highcharts.com/highstock/lang.accessibility.exporting
 * @see https://api.highcharts.com/highmaps/lang.accessibility.exporting
 *
 */
public interface LangAccessibilityExportingOptions extends Any {
  /**
   * @implspec chartMenuLabel?: string;
   *
   */
  @JSProperty("chartMenuLabel")
  @Nullable
  String getChartMenuLabel();

  /**
   * @implspec chartMenuLabel?: string;
   *
   */
  @JSProperty("chartMenuLabel")
  void setChartMenuLabel(String value);

  /**
   * @implspec exportRegionLabel?: string;
   *
   */
  @JSProperty("exportRegionLabel")
  @Nullable
  String getExportRegionLabel();

  /**
   * @implspec exportRegionLabel?: string;
   *
   */
  @JSProperty("exportRegionLabel")
  void setExportRegionLabel(String value);

  /**
   * @implspec menuButtonLabel?: string;
   *
   */
  @JSProperty("menuButtonLabel")
  @Nullable
  String getMenuButtonLabel();

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy