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

com.frontangle.ichart.chart.datapoint.DataPointBoxPlot Maven / Gradle / Ivy

The newest version!
package com.frontangle.ichart.chart.datapoint;

public class DataPointBoxPlot extends DataPoint {

    public double bottomWhisker;
    public double bottom;
    public double middle;
    public double top;
    public double topWhisker;

    public DataPointBoxPlot(double x, double y,
            double bottomWhisker,
            double bottom,
            double middle,
            double top,
            double topWhisker) {
        super(x, y);

        this.bottomWhisker = bottomWhisker;
        this.bottom = bottom;
        this.middle = middle;
        this.top = top;
        this.topWhisker = topWhisker;
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy