Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
11/20/10 02:44:45 (13 years ago)
Author:
swagner
Message:

Added axis labels for data tables (#925)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/sources/HeuristicLab.Analysis/3.3/AlleleFrequencyAnalyzer.cs

    r4849 r4870  
    172172        if (!results.ContainsKey("Alleles")) {
    173173          allelesTable = new DataTable("Alleles");
    174           results.Add(new Result("Alleles", allelesTable));
     174          allelesTable.VisualProperties.XAxisTitle = "Iteration";
     175          allelesTable.VisualProperties.YAxisTitle = "Number of Alleles";
     176          allelesTable.VisualProperties.SecondYAxisTitle = "Number of Alleles";
    175177
    176178          allelesTable.Rows.Add(new DataRow("Unique Alleles"));
     
    192194          allelesTable.Rows["Lost Alleles of Best Known Solution"].VisualProperties.SecondYAxis = true;
    193195          allelesTable.Rows["Lost Alleles of Best Known Solution"].VisualProperties.StartIndexZero = true;
     196
     197          results.Add(new Result("Alleles", allelesTable));
    194198        } else {
    195199          allelesTable = (DataTable)results["Alleles"].Value;
Note: See TracChangeset for help on using the changeset viewer.