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

com.github.fluorumlabs.disconnect.highcharts.PlotWordcloudRotationOptions 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) Rotation options for the words in the wordcloud.
 *
 * @see https://api.highcharts.com/highcharts/plotOptions.wordcloud.rotation
 *
 */
public interface PlotWordcloudRotationOptions extends Any {
  /**
   * (Highcharts) The smallest degree of rotation for a word.
   *
   * @see https://api.highcharts.com/highcharts/plotOptions.wordcloud.rotation.from
   *
   * @implspec from?: number;
   *
   */
  @JSProperty("from")
  double getFrom();

  /**
   * (Highcharts) The smallest degree of rotation for a word.
   *
   * @see https://api.highcharts.com/highcharts/plotOptions.wordcloud.rotation.from
   *
   * @implspec from?: number;
   *
   */
  @JSProperty("from")
  void setFrom(double value);

  /**
   * (Highcharts) The number of possible orientations for a word, within the
   * range of rotation.from and rotation.to.
   *
   * @see https://api.highcharts.com/highcharts/plotOptions.wordcloud.rotation.orientations
   *
   * @implspec orientations?: number;
   *
   */
  @JSProperty("orientations")
  double getOrientations();

  /**
   * (Highcharts) The number of possible orientations for a word, within the
   * range of rotation.from and rotation.to.
   *
   * @see https://api.highcharts.com/highcharts/plotOptions.wordcloud.rotation.orientations
   *
   * @implspec orientations?: number;
   *
   */
  @JSProperty("orientations")
  void setOrientations(double value);

  /**
   * (Highcharts) The largest degree of rotation for a word.
   *
   * @see https://api.highcharts.com/highcharts/plotOptions.wordcloud.rotation.to
   *
   * @implspec to?: number;
   *
   */
  @JSProperty("to")
  double getTo();

  /**
   * (Highcharts) The largest degree of rotation for a word.
   *
   * @see https://api.highcharts.com/highcharts/plotOptions.wordcloud.rotation.to
   *
   * @implspec to?: number;
   *
   */
  @JSProperty("to")
  void setTo(double value);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy