use linespoints instead of line and make linewidth 2 instead of 1

This commit is contained in:
ahr
2017-11-06 17:04:56 +01:00
parent 64db4c48a2
commit 78671a2d8c

View File

@@ -38,7 +38,7 @@ public class PercentileAggregate implements AggregateHandler{
@Override
public void addPlots(StringBuilder result, Collection<DataSeries> 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());
}
}