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

io.mateu.mdd.vaadin.components.charts.ChartData Maven / Gradle / Ivy

There is a newer version: 1.1.60
Show newest version
package io.mateu.mdd.vaadin.components.charts;

import lombok.Getter;
import lombok.Setter;

@Getter@Setter
public class ChartData {

    private Object line;

    private Object label;

    private double value;

    public ChartData(Object line, Object label, double value) {
        this.line = line;
        this.label = label;
        this.value = value;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy