Skip to content
Snippets Groups Projects
Commit 1b7e92d8 authored by Tim Molter's avatar Tim Molter
Browse files

Fix for Issue #75 - ClassCastException when using Long for error bar values

parent 12cb5eea
Branches
Tags
No related merge requests found
......@@ -214,7 +214,7 @@ public class PlotContentLineChart extends PlotContent {
double eb = 0.0;
if (errorBars != null) {
eb = (Double) ebItr.next();
eb = ebItr.next().doubleValue();
}
if (errorBars != null) {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment