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

com.github.highcharts4gwt.model.highcharts.api.xaxis.plotbands.Label Maven / Gradle / Ivy

There is a newer version: 0.0.7
Show newest version

package com.github.highcharts4gwt.model.highcharts.api.xaxis.plotbands;


public interface Label {


    String align();

    Label align(String align);

    double rotation();

    Label rotation(double rotation);

    String style();

    Label style(String styleAsJsonString);

    String text();

    Label text(String text);

    String textAlign();

    Label textAlign(String textAlign);

    boolean useHTML();

    Label useHTML(boolean useHTML);

    String verticalAlign();

    Label verticalAlign(String verticalAlign);

    double x();

    Label x(double x);

    double y();

    Label y(double y);

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy