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

kg.apc.charting.elements.GraphPanelChartSimpleElement Maven / Gradle / Ivy

There is a newer version: 0.7
Show newest version
package kg.apc.charting.elements;

import kg.apc.charting.AbstractGraphPanelChartElement;

/**
 * {@inheritDoc}
 */
public class GraphPanelChartSimpleElement
        extends AbstractGraphPanelChartElement {
    double value = 0;

    public GraphPanelChartSimpleElement(double yVal) {
        add(yVal);
    }

    GraphPanelChartSimpleElement() {
    }

    public void add(double yVal) {
        value = yVal;
    }

    /**
     * {@inheritDoc}
     */
    public double getValue() {
        return value;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy