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

com.github.highcharts4gwt.model.highcharts.api.Subtitle Maven / Gradle / Ivy

There is a newer version: 0.0.7
Show newest version

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);

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy