Changeset 2061 for trunk/autoquest-ui-swt/src/main/java/de/ugoe/cs
- Timestamp:
- 04/11/16 17:23:13 (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/autoquest-ui-swt/src/main/java/de/ugoe/cs/autoquest/ui/swt/TaskTreePlotUtils.java
r2033 r2061 125 125 modelNames.get(0)); 126 126 chart = ChartFactory.createXYLineChart 127 (CUMULATIVE_TASK_COVERAGE_PLOT, "tasks ordered by coverage", 128 "cumulative action instance coverage", dataset, 129 PlotOrientation.VERTICAL, models.size() > 1, false, false); 127 (CUMULATIVE_TASK_COVERAGE_PLOT, 128 "Sequences ordered by coverage in % of sequences", 129 "Cumulative action instance coverage in % of all recorded action instances", 130 dataset, PlotOrientation.VERTICAL, models.size() > 1, false, false); 130 131 131 132 final XYPlot plot = chart.getXYPlot(); … … 184 185 } 185 186 186 NumberAxis domainAxis = new NumberAxis("sequences ordered by coverage"); 187 NumberAxis domainAxis = new NumberAxis 188 ("Sequences ordered by coverage in % of sequences"); 189 187 190 domainAxis.setUpperBound(100); 188 191 plot.setDomainAxis(domainAxis); 189 192 190 NumberAxis rangeAxis = new NumberAxis("cumulative action instance coverage"); 193 NumberAxis rangeAxis = new NumberAxis 194 ("Cumulative action instance coverage in % of all recorded action instances"); 195 191 196 rangeAxis.setUpperBound(100); 192 197 plot.setRangeAxis(rangeAxis);
Note: See TracChangeset
for help on using the changeset viewer.