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

nl.pvanassen.highchart.api.plotoption.PlotStop Maven / Gradle / Ivy

The newest version!
package nl.pvanassen.highchart.api.plotoption;

import java.awt.Color;

public class PlotStop {

    private final int pos;

    private final Color color;

    PlotStop(int pos, Color color) {
        super();
        this.pos = pos;
        this.color = color;
    }

    public int getPos() {
        return pos;
    }

    public Color getColor() {
        return color;
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy