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

misc

parent b3ecab7d
No related branches found
No related tags found
No related merge requests found
......@@ -59,6 +59,9 @@ public class AxisPair implements IChartPart {
public Series addSeries(String seriesName, double[] xData, double[] yData) {
// Sanity checks
if (seriesName == null) {
throw new RuntimeException("Series Name cannot be null!!!");
}
if (yData == null) {
throw new RuntimeException("Y-Axis data cannot be null!!!");
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment