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

com.github.fluorumlabs.disconnect.highcharts.NavigatorXAxisLabelsStyleOptions 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;

/**
 * (Highstock) CSS styles for the label. Use whiteSpace: 'nowrap' to prevent
 * wrapping of category labels. Use textOverflow: 'none' to prevent ellipsis
 * (dots).
 *
 * In styled mode, the labels are styled with the .highcharts-axis-labels
 * class.
 *
 * @see https://api.highcharts.com/highstock/navigator.xAxis.labels.style
 *
 */
public interface NavigatorXAxisLabelsStyleOptions extends Any {
  /**
   * @implspec color?: string;
   *
   */
  @JSProperty("color")
  @Nullable
  String getColor();

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy