From: Keith Packard Date: Sun, 13 Apr 2014 00:45:38 +0000 (-0700) Subject: altosuilib: Make lines in graphs 2 units wide X-Git-Tag: 1.3.2.2~137 X-Git-Url: https://git.gag.com/?p=fw%2Faltos;a=commitdiff_plain;h=8628f7e02834a476d5cb3afa4cbf8d46a4b3c513 altosuilib: Make lines in graphs 2 units wide This makes the graphs a lot easier to read. Signed-off-by: Keith Packard --- diff --git a/altosuilib/AltosUISeries.java b/altosuilib/AltosUISeries.java index c17175e4..10ea1614 100644 --- a/altosuilib/AltosUISeries.java +++ b/altosuilib/AltosUISeries.java @@ -104,6 +104,7 @@ public class AltosUISeries extends XYSeries implements AltosUIGrapher { renderer = new XYLineAndShapeRenderer(true, false); renderer.setSeriesPaint(0, color); + renderer.setSeriesStroke(0, new BasicStroke(2, BasicStroke.CAP_ROUND, BasicStroke.JOIN_ROUND)); renderer.setSeriesVisible(0, enable); set_units(); }