Changeset 2061


Ignore:
Timestamp:
04/11/16 17:23:13 (8 years ago)
Author:
pharms
Message:
 
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/autoquest-ui-swt/src/main/java/de/ugoe/cs/autoquest/ui/swt/TaskTreePlotUtils.java

    r2033 r2061  
    125125                                                                        modelNames.get(0)); 
    126126            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); 
    130131             
    131132            final XYPlot plot = chart.getXYPlot(); 
     
    184185            } 
    185186 
    186             NumberAxis domainAxis = new NumberAxis("sequences ordered by coverage"); 
     187            NumberAxis domainAxis = new NumberAxis 
     188                ("Sequences ordered by coverage in % of sequences"); 
     189             
    187190            domainAxis.setUpperBound(100); 
    188191            plot.setDomainAxis(domainAxis); 
    189192             
    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             
    191196            rangeAxis.setUpperBound(100); 
    192197            plot.setRangeAxis(rangeAxis); 
Note: See TracChangeset for help on using the changeset viewer.