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

com.github.highcharts4gwt.model.highcharts.mock.MockLabels Maven / Gradle / Ivy

There is a newer version: 0.0.7
Show newest version

package com.github.highcharts4gwt.model.highcharts.mock;

import com.github.highcharts4gwt.model.array.api.Array;
import com.github.highcharts4gwt.model.highcharts.api.Labels;
import com.github.highcharts4gwt.model.highcharts.api.labels.Item;

public class MockLabels
    implements Labels
{

    private Array items;
    private String style;

    public Array items() {
        return items;
    }

    public MockLabels items(Array items) {
        this.items = items;
        return this;
    }

    public String style() {
        return style;
    }

    public MockLabels style(String styleAsJsonString) {
        this.style = styleAsJsonString;
        return this;
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy