com.github.fluorumlabs.disconnect.highcharts.TitleObject Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of disconnect-highcharts Show documentation
Show all versions of disconnect-highcharts Show documentation
Highcharts API bindings for Disconnect Zero
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);
}