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

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

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

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

  /**
   * Modify options for the title.
   *
   * @param titleOptions
   * Options to modify.
   *
   * @param redraw
   * Whether to redraw the chart.
   *
   * @implspec update(titleOptions: TitleOptions, redraw?: boolean): void;
   *
   */
  void update(TitleOptions titleOptions);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy