Changeset 5999
- Timestamp:
- 04/10/11 07:25:03 (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/histogram/HeuristicLab.Analysis.Views/3.3/AlleleFrequencyCollectionView.cs
r5445 r5999 91 91 impacts.YAxisType = AxisType.Secondary; 92 92 chart.Series.Add(impacts); 93 invisibleSeries.Add(impacts);94 93 } 95 94 … … 113 112 114 113 if (!invisibleSeries.Contains(bestKnown)) { 115 foreach (AlleleFrequency af in Content.Where(x => x.ContainedInBestKnownSolution).OrderBy(x => x. AverageImpact)) {114 foreach (AlleleFrequency af in Content.Where(x => x.ContainedInBestKnownSolution).OrderBy(x => x.Id)) { 116 115 bestKnown.Points.Add(CreateDataPoint(index, af.Frequency, af)); 117 116 if (!invisibleSeries.Contains(qualities)) qualities.Points.Add(CreateDataPoint(index, af.AverageSolutionQuality, af)); … … 121 120 } 122 121 if (!invisibleSeries.Contains(others)) { 123 foreach (AlleleFrequency af in Content.Where(x => !x.ContainedInBestKnownSolution).OrderBy(x => x. AverageImpact)) {122 foreach (AlleleFrequency af in Content.Where(x => !x.ContainedInBestKnownSolution).OrderBy(x => x.Id)) { 124 123 others.Points.Add(CreateDataPoint(index, af.Frequency, af)); 125 124 if (!invisibleSeries.Contains(qualities)) qualities.Points.Add(CreateDataPoint(index, af.AverageSolutionQuality, af));
Note: See TracChangeset
for help on using the changeset viewer.