io.fair_acc.chartfx.renderer.ErrorStyle Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of chartfx Show documentation
Show all versions of chartfx Show documentation
This charting library ${project.artifactId}- is an extension
in the spirit of Oracle's XYChart and performance/time-proven JDataViewer charting functionalities.
Emphasis was put on plotting performance for both large number of data points and real-time displays,
as well as scientific accuracies leading to error bar/surface plots, and other scientific plotting
features (parameter measurements, fitting, multiple axes, zoom, ...).
The newest version!
package io.fair_acc.chartfx.renderer;
/**
* enum to encode the various error styles that can be drawn by the ErrorDataSetRenderer and HistoryDataSetRenderer
*
* @author rstein
*/
public enum ErrorStyle {
NONE("NONE"),
ERRORBARS("ERRORBARS"),
ERRORSURFACE("ERRORSURFACE"),
ERRORCOMBO("ERRORCOMBO");
private final String value;
ErrorStyle(final String value) {
this.value = value;
}
public String getValue() {
return value;
}
}