plot parallel requests with style filledcurve

this makes the duration of requests more obvious
This commit is contained in:
2018-08-09 07:51:56 +02:00
parent 1f48f7b851
commit 2fae877444

View File

@@ -19,7 +19,7 @@ public class ParallelRequestsAggregate implements AggregateHandler {
for (final DataSeries dataSerie : dataSeries) { for (final DataSeries dataSerie : dataSeries) {
final AggregatedData aggregatedData = dataSerie.getAggregatedData(); final AggregatedData aggregatedData = dataSerie.getAggregatedData();
if (aggregatedData != null) { if (aggregatedData != null) {
appendfln(result, "'%s' using 1:2 notitle with lines axes x1y2 lw 1 %s, \\", // appendfln(result, "'%s' using 1:2 notitle with filledcurve axes x1y2 lw 1 %s, \\", //
aggregatedData.getDataFile().getAbsolutePath(), // aggregatedData.getDataFile().getAbsolutePath(), //
dataSerie.getStyle()// dataSerie.getStyle()//
); );