From 78671a2d8cdb056ee463ad300104a9c41fadeb60 Mon Sep 17 00:00:00 2001 From: ahr Date: Mon, 6 Nov 2017 17:04:56 +0100 Subject: [PATCH] use linespoints instead of line and make linewidth 2 instead of 1 --- .../main/java/org/lucares/pdb/plot/api/PercentileAggregate.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pdb-plotting/src/main/java/org/lucares/pdb/plot/api/PercentileAggregate.java b/pdb-plotting/src/main/java/org/lucares/pdb/plot/api/PercentileAggregate.java index 562a579..55198b7 100644 --- a/pdb-plotting/src/main/java/org/lucares/pdb/plot/api/PercentileAggregate.java +++ b/pdb-plotting/src/main/java/org/lucares/pdb/plot/api/PercentileAggregate.java @@ -38,7 +38,7 @@ public class PercentileAggregate implements AggregateHandler{ @Override public void addPlots(StringBuilder result, Collection dataSeries) { for (DataSeries dataSerie : dataSeries) { - appendfln(result, "'$%s' using 1:2 title '%s' with line, \\", dataSerie.getId(), dataSerie.getTitle()+" " +dataSerie.getAggregatedData().getLabel()); + appendfln(result, "'$%s' using 1:2 title '%s' with linespoints lw 2, \\", dataSerie.getId(), dataSerie.getTitle()+" " +dataSerie.getAggregatedData().getLabel()); } }