Skip to content
Snippets Groups Projects
Commit e65aa86c authored by Jürgen Walter's avatar Jürgen Walter
Browse files

Improved labeling of table legend in PAVO

parent 9dc122ab
No related branches found
No related tags found
No related merge requests found
...@@ -84,10 +84,10 @@ public class SeriesResultPavo extends AbstractQuantitativeResult { ...@@ -84,10 +84,10 @@ public class SeriesResultPavo extends AbstractQuantitativeResult {
isContinous = isContnousN; isContinous = isContnousN;
if (description.equals(null) || description == null) if (description.equals(null) || description == null)
description=""; description="";
if (!statisticTypeN.equals("DEFAULT")) if (!statisticTypeN.equalsIgnoreCase("DEFAULT") && !statisticTypeN.equalsIgnoreCase("SAMPLE") )
seriesName = queryableElementN + " " + statisticTypeN + description; seriesName = queryableElementN +"("+statisticTypeN+")";
else else
seriesName = queryableElementN + description; seriesName = queryableElementN;
dofs = dofsN; dofs = dofsN;
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment