com.github.highcharts4gwt.model.highcharts.api.Subtitle Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of highcharts Show documentation
Show all versions of highcharts Show documentation
GWT wrapper for highcharts library.
package com.github.highcharts4gwt.model.highcharts.api;
public interface Subtitle {
String align();
Subtitle align(String align);
boolean floating();
Subtitle floating(boolean floating);
String style();
Subtitle style(String styleAsJsonString);
String text();
Subtitle text(String text);
boolean useHTML();
Subtitle useHTML(boolean useHTML);
String verticalAlign();
Subtitle verticalAlign(String verticalAlign);
double x();
Subtitle x(double x);
double y();
Subtitle y(double y);
}