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

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

There is a newer version: 0.1.0-alpha2
Show newest version
package com.github.fluorumlabs.disconnect.highcharts;

/**
 * The chart subtitle. The subtitle has an update method that allows modifying
 * the options directly or indirectly via chart.update.
 *
 */
public interface SubtitleObject extends SVGElement {
  /**
   * Modify options for the subtitle.
   *
   * @param subtitleOptions
   * Options to modify.
   *
   * @param redraw
   * Wether to redraw the chart.
   *
   * @implspec update(subtitleOptions: SubtitleOptions, redraw?: boolean): void;
   *
   */
  void update(SubtitleOptions subtitleOptions);

  /**
   * Modify options for the subtitle.
   *
   * @param subtitleOptions
   * Options to modify.
   *
   * @param redraw
   * Wether to redraw the chart.
   *
   * @implspec update(subtitleOptions: SubtitleOptions, redraw?: boolean): void;
   *
   */
  void update(SubtitleOptions subtitleOptions, boolean redraw);
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy