com.github.highcharts4gwt.model.highcharts.option.api.Labels 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.option.api;
import com.github.highcharts4gwt.model.array.api.Array;
import com.github.highcharts4gwt.model.highcharts.option.api.labels.Item;
/**
* HTML labels that can be positioned anywhere in the chart area.
*
*/
public interface Labels {
/**
* A HTML label that can be positioned anywhere in the chart area.
*
*/
Array- items();
/**
* A HTML label that can be positioned anywhere in the chart area.
*
*/
Labels items(Array
- items);
/**
* Shared CSS styles for all labels. Defaults to:
*
style: {
* color: '#3E576F'
* }
*
*/
String style();
/**
* Shared CSS styles for all labels. Defaults to:
* style: {
* color: '#3E576F'
* }
*
*/
Labels style(String styleAsJsonString);
String getFieldAsJsonObject(String fieldName);
Labels setFieldAsJsonObject(String fieldName, String fieldValueAsJonObject);
String getFunctionAsString(String fieldName);
Labels setFunctionAsString(String fieldName, String functionAsString);
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy