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

com.datastax.data.exploration.dto.dataChart.scatter.ScatterChartValue Maven / Gradle / Ivy

package com.datastax.data.exploration.dto.dataChart.scatter;

import java.util.ArrayList;
import java.util.List;

/**
 * 散点图展示数据类
 * @author songfu 2017/12/28
 */
public class ScatterChartValue {
    private List data = new ArrayList();
    private String[] type;
    private String[] format;

    public ScatterChartValue(List data, String[] type, String[] format) {
        this.data = data;
        this.type = type;
        this.format = format;
    }

    public List getData() {
        return data;
    }

    public void setData(List data) {
        this.data = data;
    }

    public String[] getType() {
        return type;
    }

    public void setType(String[] type) {
        this.type = type;
    }

    public String[] getFormat() {
        return format;
    }

    public void setFormat(String[] format) {
        this.format = format;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy