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

com.github.highcharts4gwt.model.highcharts.option.api.Labels Maven / Gradle / Ivy

There is a newer version: 0.0.7
Show newest version

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