![JAR search and dependency download from the Maven repository](/logo.png)
kg.apc.charting.elements.GraphPanelChartSimpleElement Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jmeter-plugins-cmn-jmeter Show documentation
Show all versions of jmeter-plugins-cmn-jmeter Show documentation
Various utility classes to ease development of plugins
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