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

com.datastax.data.exploration.dto.dataChart.scatter.ScatterChartInit 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 ScatterChartInit {
    private List axisX = new ArrayList<>();
    private List axisY = new ArrayList<>();
    private List color = new ArrayList<>();

    public ScatterChartInit(List axisX, List axisY, List color) {
        this.axisX = axisX;
        this.axisY = axisY;
        this.color = color;
    }

    public List getAxisX() {
        return axisX;
    }

    public void setAxisX(List axisX) {
        this.axisX = axisX;
    }

    public List getAxisY() {
        return axisY;
    }

    public void setAxisY(List axisY) {
        this.axisY = axisY;
    }

    public List getColor() {
        return color;
    }

    public void setColor(List color) {
        this.color = color;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy