Changeset 3726
- Timestamp:
- 05/09/10 00:46:40 (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/sources/HeuristicLab.Optimization.Views/3.3/RunCollectionBubbleChartView.cs
r3707 r3726 43 43 private enum AxisDimension { Index = 0 } 44 44 45 private string xAxisValue; 46 private string yAxisValue; 47 private string sizeAxisValue; 48 45 49 private Dictionary<int, Dictionary<object, double>> categoricalMapping; 46 50 private Dictionary<IRun, double> xJitter; … … 227 231 Series series = this.chart.Series[0]; 228 232 int row = this.Content.ToList().IndexOf(run); 229 xValue = GetValue(run, (string)xAxisComboBox.SelectedItem); 230 yValue = GetValue(run, (string)yAxisComboBox.SelectedItem); 231 sizeValue = GetValue(run, (string)sizeComboBox.SelectedItem); 233 234 if (!xAxisComboBox.DroppedDown) 235 this.xAxisValue = (string)xAxisComboBox.SelectedItem; 236 if (!yAxisComboBox.DroppedDown) 237 this.yAxisValue = (string)yAxisComboBox.SelectedItem; 238 if (!sizeComboBox.DroppedDown) 239 this.sizeAxisValue = (string)sizeComboBox.SelectedItem; 240 241 xValue = GetValue(run, this.xAxisValue); 242 yValue = GetValue(run, this.yAxisValue); 243 sizeValue = GetValue(run, this.sizeAxisValue); 244 232 245 if (xValue.HasValue && yValue.HasValue && sizeValue.HasValue) { 233 246 xValue = xValue.Value;
Note: See TracChangeset
for help on using the changeset viewer.