Code: Select all
NumberAxis sharedAxis = new NumberAxis("residual lnk");
CombinedRangeXYPlot plot = new CombinedRangeXYPlot(sharedAxis);
ValueMarker zeroMarker =
new ValueMarker(0.00, Color.RED, new BasicStroke(2.0f));
plot.addRangeMarker(zeroMarker);
Does anyone know if this is supposed to work?
Am I not specifying the commands correctly?
Any good workarounds, since it doesn't seem to work?