Free cookie consent management tool by TermsFeed Policy Generator

source: branches/DataAnalysis Refactoring/HeuristicLab.Optimization.Views/3.3/RunCollectionBubbleChartView.cs @ 5796

Last change on this file since 5796 was 5796, checked in by mkommend, 13 years ago

#1418: Merged trunk changes into branch.

File size: 27.2 KB
Line 
1#region License Information
2/* HeuristicLab
3 * Copyright (C) 2002-2011 Heuristic and Evolutionary Algorithms Laboratory (HEAL)
4 *
5 * This file is part of HeuristicLab.
6 *
7 * HeuristicLab is free software: you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License as published by
9 * the Free Software Foundation, either version 3 of the License, or
10 * (at your option) any later version.
11 *
12 * HeuristicLab is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15 * GNU General Public License for more details.
16 *
17 * You should have received a copy of the GNU General Public License
18 * along with HeuristicLab. If not, see <http://www.gnu.org/licenses/>.
19 */
20#endregion
21
22using System;
23using System.Collections.Generic;
24using System.Drawing;
25using System.Linq;
26using System.Windows.Forms;
27using System.Windows.Forms.DataVisualization.Charting;
28using HeuristicLab.Common;
29using HeuristicLab.Core;
30using HeuristicLab.Data;
31using HeuristicLab.MainForm;
32using HeuristicLab.MainForm.WindowsForms;
33
34namespace HeuristicLab.Optimization.Views {
35  [View("RunCollection BubbleChart")]
36  [Content(typeof(RunCollection), false)]
37  public partial class RunCollectionBubbleChartView : AsynchronousContentView {
38    private enum SizeDimension { Constant = 0 }
39    private enum AxisDimension { Index = 0 }
40
41    private string xAxisValue;
42    private string yAxisValue;
43    private string sizeAxisValue;
44
45    private Dictionary<IRun, List<DataPoint>> runToDataPointMapping;
46    private Dictionary<int, Dictionary<object, double>> categoricalMapping;
47    private Dictionary<IRun, double> xJitter;
48    private Dictionary<IRun, double> yJitter;
49    private double xJitterFactor = 0.0;
50    private double yJitterFactor = 0.0;
51    private Random random;
52    private bool isSelecting = false;
53    private bool suppressUpdates = false;
54
55    public RunCollectionBubbleChartView() {
56      InitializeComponent();
57      chart.ContextMenuStrip.Items.Insert(0, openBoxPlotViewToolStripMenuItem);
58
59      runToDataPointMapping = new Dictionary<IRun, List<DataPoint>>();
60      categoricalMapping = new Dictionary<int, Dictionary<object, double>>();
61      xJitter = new Dictionary<IRun, double>();
62      yJitter = new Dictionary<IRun, double>();
63      random = new Random();
64
65      colorDialog.Color = Color.Black;
66      colorButton.Image = this.GenerateImage(16, 16, this.colorDialog.Color);
67      isSelecting = false;
68
69      chart.CustomizeAllChartAreas();
70      chart.ChartAreas[0].CursorX.Interval = 1;
71      chart.ChartAreas[0].CursorY.Interval = 1;
72      chart.ChartAreas[0].AxisX.ScaleView.Zoomable = !this.isSelecting;
73      chart.ChartAreas[0].AxisY.ScaleView.Zoomable = !this.isSelecting;
74    }
75
76    public new RunCollection Content {
77      get { return (RunCollection)base.Content; }
78      set { base.Content = value; }
79    }
80    public IStringConvertibleMatrix Matrix {
81      get { return this.Content; }
82    }
83
84    protected override void RegisterContentEvents() {
85      base.RegisterContentEvents();
86      Content.Reset += new EventHandler(Content_Reset);
87      Content.ColumnNamesChanged += new EventHandler(Content_ColumnNamesChanged);
88      Content.ItemsAdded += new HeuristicLab.Collections.CollectionItemsChangedEventHandler<IRun>(Content_ItemsAdded);
89      Content.ItemsRemoved += new HeuristicLab.Collections.CollectionItemsChangedEventHandler<IRun>(Content_ItemsRemoved);
90      Content.CollectionReset += new HeuristicLab.Collections.CollectionItemsChangedEventHandler<IRun>(Content_CollectionReset);
91      Content.UpdateOfRunsInProgressChanged += new EventHandler(Content_UpdateOfRunsInProgressChanged);
92      RegisterRunEvents(Content);
93    }
94    protected override void DeregisterContentEvents() {
95      base.DeregisterContentEvents();
96      Content.Reset -= new EventHandler(Content_Reset);
97      Content.ColumnNamesChanged -= new EventHandler(Content_ColumnNamesChanged);
98      Content.ItemsAdded -= new HeuristicLab.Collections.CollectionItemsChangedEventHandler<IRun>(Content_ItemsAdded);
99      Content.ItemsRemoved -= new HeuristicLab.Collections.CollectionItemsChangedEventHandler<IRun>(Content_ItemsRemoved);
100      Content.CollectionReset -= new HeuristicLab.Collections.CollectionItemsChangedEventHandler<IRun>(Content_CollectionReset);
101      Content.UpdateOfRunsInProgressChanged -= new EventHandler(Content_UpdateOfRunsInProgressChanged);
102      DeregisterRunEvents(Content);
103    }
104    protected virtual void RegisterRunEvents(IEnumerable<IRun> runs) {
105      foreach (IRun run in runs)
106        run.Changed += new EventHandler(run_Changed);
107    }
108    protected virtual void DeregisterRunEvents(IEnumerable<IRun> runs) {
109      foreach (IRun run in runs)
110        run.Changed -= new EventHandler(run_Changed);
111    }
112
113    private void Content_CollectionReset(object sender, HeuristicLab.Collections.CollectionItemsChangedEventArgs<IRun> e) {
114      DeregisterRunEvents(e.OldItems);
115      RegisterRunEvents(e.Items);
116    }
117    private void Content_ItemsRemoved(object sender, HeuristicLab.Collections.CollectionItemsChangedEventArgs<IRun> e) {
118      DeregisterRunEvents(e.Items);
119    }
120    private void Content_ItemsAdded(object sender, HeuristicLab.Collections.CollectionItemsChangedEventArgs<IRun> e) {
121      RegisterRunEvents(e.Items);
122    }
123    private void run_Changed(object sender, EventArgs e) {
124      if (InvokeRequired)
125        this.Invoke(new EventHandler(run_Changed), sender, e);
126      else {
127        IRun run = (IRun)sender;
128        UpdateRun(run);
129      }
130    }
131
132    private void UpdateRun(IRun run) {
133      if (!suppressUpdates) {
134        if (runToDataPointMapping.ContainsKey(run)) {
135          foreach (DataPoint point in runToDataPointMapping[run]) {
136            point.Color = run.Color;
137            if (!run.Visible) {
138              this.chart.Series[0].Points.Remove(point);
139              UpdateCursorInterval();
140              chart.ChartAreas[0].RecalculateAxesScale();
141            }
142          }
143          if (!run.Visible) runToDataPointMapping.Remove(run);
144        } else {
145          AddDataPoint(run);
146          UpdateCursorInterval();
147          chart.ChartAreas[0].RecalculateAxesScale();
148        }
149
150        if (this.chart.Series[0].Points.Count == 0)
151          noRunsLabel.Visible = true;
152        else
153          noRunsLabel.Visible = false;
154      }
155    }
156
157    protected override void OnContentChanged() {
158      base.OnContentChanged();
159      this.categoricalMapping.Clear();
160      UpdateComboBoxes();
161      UpdateDataPoints();
162    }
163    private void Content_ColumnNamesChanged(object sender, EventArgs e) {
164      if (InvokeRequired)
165        Invoke(new EventHandler(Content_ColumnNamesChanged), sender, e);
166      else
167        UpdateComboBoxes();
168    }
169
170    private void UpdateComboBoxes() {
171      string selectedXAxis = (string)this.xAxisComboBox.SelectedItem;
172      string selectedYAxis = (string)this.yAxisComboBox.SelectedItem;
173      string selectedSizeAxis = (string)this.sizeComboBox.SelectedItem;
174      this.xAxisComboBox.Items.Clear();
175      this.yAxisComboBox.Items.Clear();
176      this.sizeComboBox.Items.Clear();
177      if (Content != null) {
178        string[] additionalAxisDimension = Enum.GetNames(typeof(AxisDimension));
179        this.xAxisComboBox.Items.AddRange(additionalAxisDimension);
180        this.xAxisComboBox.Items.AddRange(Matrix.ColumnNames.ToArray());
181        this.yAxisComboBox.Items.AddRange(additionalAxisDimension);
182        this.yAxisComboBox.Items.AddRange(Matrix.ColumnNames.ToArray());
183        string[] additionalSizeDimension = Enum.GetNames(typeof(SizeDimension));
184        this.sizeComboBox.Items.AddRange(additionalSizeDimension);
185        this.sizeComboBox.Items.AddRange(Matrix.ColumnNames.ToArray());
186        this.sizeComboBox.SelectedItem = SizeDimension.Constant.ToString();
187
188        bool changed = false;
189        if (selectedXAxis != null && xAxisComboBox.Items.Contains(selectedXAxis)) {
190          xAxisComboBox.SelectedItem = selectedXAxis;
191          changed = true;
192        }
193        if (selectedYAxis != null && yAxisComboBox.Items.Contains(selectedYAxis)) {
194          yAxisComboBox.SelectedItem = selectedYAxis;
195          changed = true;
196        }
197        if (selectedSizeAxis != null && sizeComboBox.Items.Contains(selectedSizeAxis)) {
198          sizeComboBox.SelectedItem = selectedSizeAxis;
199          changed = true;
200        }
201        if (changed)
202          UpdateDataPoints();
203      }
204    }
205
206
207    private void Content_UpdateOfRunsInProgressChanged(object sender, EventArgs e) {
208      if (InvokeRequired)
209        Invoke(new EventHandler(Content_UpdateOfRunsInProgressChanged), sender, e);
210      else {
211        suppressUpdates = Content.UpdateOfRunsInProgress;
212        if (!suppressUpdates) UpdateDataPoints();
213      }
214    }
215
216    private void Content_Reset(object sender, EventArgs e) {
217      if (InvokeRequired)
218        Invoke(new EventHandler(Content_Reset), sender, e);
219      else {
220        this.categoricalMapping.Clear();
221        UpdateDataPoints();
222      }
223    }
224
225    private void UpdateDataPoints() {
226      Series series = this.chart.Series[0];
227      series.Points.Clear();
228      runToDataPointMapping.Clear();
229      if (Content != null) {
230        foreach (IRun run in this.Content)
231          this.AddDataPoint(run);
232
233        if (this.chart.Series[0].Points.Count == 0)
234          noRunsLabel.Visible = true;
235        else {
236          noRunsLabel.Visible = false;
237          UpdateMarkerSizes();
238          UpdateCursorInterval();
239        }
240      }
241    }
242
243    private void UpdateMarkerSizes() {
244      double[] sizeValues = this.chart.Series[0].Points.Select(p => p.YValues[1]).ToArray();
245      double minSizeValue = sizeValues.Min();
246      double maxSizeValue = sizeValues.Max();
247
248      for (int i = 0; i < sizeValues.Length; i++) {
249        DataPoint point = this.chart.Series[0].Points[i];
250        double sizeRange = maxSizeValue - minSizeValue;
251        double relativeSize = (point.YValues[1] - minSizeValue);
252
253        if (sizeRange > double.Epsilon) relativeSize /= sizeRange;
254        else relativeSize = 1;
255
256        point.MarkerSize = (int)Math.Round((sizeTrackBar.Value - sizeTrackBar.Minimum) * relativeSize + sizeTrackBar.Minimum);
257      }
258    }
259
260    private void AddDataPoint(IRun run) {
261      double? xValue;
262      double? yValue;
263      double? sizeValue;
264      Series series = this.chart.Series[0];
265
266      xValue = GetValue(run, xAxisValue);
267      yValue = GetValue(run, yAxisValue);
268      sizeValue = GetValue(run, sizeAxisValue);
269
270      if (xValue.HasValue && yValue.HasValue && sizeValue.HasValue) {
271        xValue = xValue.Value;
272        if (!xJitterFactor.IsAlmost(0.0))
273          xValue += 0.1 * GetXJitter(run) * xJitterFactor * (this.chart.ChartAreas[0].AxisX.Maximum - this.chart.ChartAreas[0].AxisX.Minimum);
274        yValue = yValue.Value;
275        if (!yJitterFactor.IsAlmost(0.0))
276          yValue += 0.1 * GetYJitter(run) * yJitterFactor * (this.chart.ChartAreas[0].AxisY.Maximum - this.chart.ChartAreas[0].AxisY.Minimum);
277        if (run.Visible) {
278          DataPoint point = new DataPoint(xValue.Value, new double[] { yValue.Value, sizeValue.Value });
279          point.Tag = run;
280          point.Color = run.Color;
281          series.Points.Add(point);
282
283          if (!runToDataPointMapping.ContainsKey(run)) runToDataPointMapping.Add(run, new List<DataPoint>());
284          runToDataPointMapping[run].Add(point);
285        }
286      }
287    }
288    private double? GetValue(IRun run, string columnName) {
289      if (run == null || string.IsNullOrEmpty(columnName))
290        return null;
291
292      if (Enum.IsDefined(typeof(AxisDimension), columnName)) {
293        AxisDimension axisDimension = (AxisDimension)Enum.Parse(typeof(AxisDimension), columnName);
294        return GetValue(run, axisDimension);
295      } else if (Enum.IsDefined(typeof(SizeDimension), columnName)) {
296        SizeDimension sizeDimension = (SizeDimension)Enum.Parse(typeof(SizeDimension), columnName);
297        return GetValue(run, sizeDimension);
298      } else {
299        int columnIndex = Matrix.ColumnNames.ToList().IndexOf(columnName);
300        IItem value = Content.GetValue(run, columnIndex);
301        if (value == null)
302          return null;
303
304        DoubleValue doubleValue = value as DoubleValue;
305        IntValue intValue = value as IntValue;
306        TimeSpanValue timeSpanValue = value as TimeSpanValue;
307        double? ret = null;
308        if (doubleValue != null) {
309          if (!double.IsNaN(doubleValue.Value) && !double.IsInfinity(doubleValue.Value))
310            ret = doubleValue.Value;
311        } else if (intValue != null)
312          ret = intValue.Value;
313        else if (timeSpanValue != null) {
314          ret = timeSpanValue.Value.TotalSeconds;
315        } else
316          ret = GetCategoricalValue(columnIndex, value.ToString());
317
318        return ret;
319      }
320    }
321    private double GetCategoricalValue(int dimension, string value) {
322      if (!this.categoricalMapping.ContainsKey(dimension))
323        this.categoricalMapping[dimension] = new Dictionary<object, double>();
324      if (!this.categoricalMapping[dimension].ContainsKey(value)) {
325        if (this.categoricalMapping[dimension].Values.Count == 0)
326          this.categoricalMapping[dimension][value] = 1.0;
327        else
328          this.categoricalMapping[dimension][value] = this.categoricalMapping[dimension].Values.Max() + 1.0;
329      }
330      return this.categoricalMapping[dimension][value];
331    }
332    private double GetValue(IRun run, AxisDimension axisDimension) {
333      double value = double.NaN;
334      switch (axisDimension) {
335        case AxisDimension.Index: {
336            value = Content.ToList().IndexOf(run);
337            break;
338          }
339        default: {
340            throw new ArgumentException("No handling strategy for " + axisDimension.ToString() + " is defined.");
341          }
342      }
343      return value;
344    }
345    private double GetValue(IRun run, SizeDimension sizeDimension) {
346      double value = double.NaN;
347      switch (sizeDimension) {
348        case SizeDimension.Constant: {
349            value = 2;
350            break;
351          }
352        default: {
353            throw new ArgumentException("No handling strategy for " + sizeDimension.ToString() + " is defined.");
354          }
355      }
356      return value;
357    }
358    private void UpdateCursorInterval() {
359      Series series = chart.Series[0];
360      double[] xValues = (from point in series.Points
361                          where !point.IsEmpty
362                          select point.XValue)
363                    .DefaultIfEmpty(1.0)
364                    .ToArray();
365      double[] yValues = (from point in series.Points
366                          where !point.IsEmpty
367                          select point.YValues[0])
368                    .DefaultIfEmpty(1.0)
369                    .ToArray();
370
371      double xRange = xValues.Max() - xValues.Min();
372      double yRange = yValues.Max() - yValues.Min();
373      if (xRange.IsAlmost(0.0)) xRange = 1.0;
374      if (yRange.IsAlmost(0.0)) yRange = 1.0;
375      double xDigits = (int)Math.Log10(xRange) - 3;
376      double yDigits = (int)Math.Log10(yRange) - 3;
377      double xZoomInterval = Math.Pow(10, xDigits);
378      double yZoomInterval = Math.Pow(10, yDigits);
379      this.chart.ChartAreas[0].CursorX.Interval = xZoomInterval;
380      this.chart.ChartAreas[0].CursorY.Interval = yZoomInterval;
381
382      //code to handle TimeSpanValues correct
383      int axisDimensionCount = Enum.GetNames(typeof(AxisDimension)).Count();
384      int columnIndex = xAxisComboBox.SelectedIndex - axisDimensionCount;
385      if (columnIndex >= 0 && Content.GetValue(0, columnIndex) is TimeSpanValue)
386        this.chart.ChartAreas[0].CursorX.Interval = 1;
387      columnIndex = yAxisComboBox.SelectedIndex - axisDimensionCount;
388      if (columnIndex >= 0 && Content.GetValue(0, columnIndex) is TimeSpanValue)
389        this.chart.ChartAreas[0].CursorY.Interval = 1;
390    }
391
392    #region Drag & drop and tooltip
393    private IRun draggedRun;
394    private void chart_MouseDown(object sender, MouseEventArgs e) {
395      HitTestResult h = this.chart.HitTest(e.X, e.Y);
396      if (h.ChartElementType == ChartElementType.DataPoint) {
397        IRun run = (IRun)((DataPoint)h.Object).Tag;
398        if (e.Clicks >= 2) {
399          IContentView view = MainFormManager.MainForm.ShowContent(run);
400          if (view != null) {
401            view.ReadOnly = this.ReadOnly;
402            view.Locked = this.Locked;
403          }
404        } else
405          this.draggedRun = run;
406        this.chart.ChartAreas[0].CursorX.SetSelectionPosition(double.NaN, double.NaN);
407        this.chart.ChartAreas[0].CursorY.SetSelectionPosition(double.NaN, double.NaN);
408      }
409    }
410
411    private void chart_MouseUp(object sender, MouseEventArgs e) {
412      if (isSelecting) {
413        Content.UpdateOfRunsInProgress = true;
414        System.Windows.Forms.DataVisualization.Charting.Cursor xCursor = chart.ChartAreas[0].CursorX;
415        System.Windows.Forms.DataVisualization.Charting.Cursor yCursor = chart.ChartAreas[0].CursorY;
416
417        double minX = Math.Min(xCursor.SelectionStart, xCursor.SelectionEnd);
418        double maxX = Math.Max(xCursor.SelectionStart, xCursor.SelectionEnd);
419        double minY = Math.Min(yCursor.SelectionStart, yCursor.SelectionEnd);
420        double maxY = Math.Max(yCursor.SelectionStart, yCursor.SelectionEnd);
421
422        //check for click to select model
423        if (minX == maxX && minY == maxY) {
424          HitTestResult hitTest = chart.HitTest(e.X, e.Y);
425          if (hitTest.ChartElementType == ChartElementType.DataPoint) {
426            int pointIndex = hitTest.PointIndex;
427            IRun run = (IRun)this.chart.Series[0].Points[pointIndex].Tag;
428            run.Color = colorDialog.Color;
429          }
430        } else {
431          List<DataPoint> selectedPoints = new List<DataPoint>();
432          foreach (DataPoint p in this.chart.Series[0].Points) {
433            if (p.XValue >= minX && p.XValue < maxX &&
434              p.YValues[0] >= minY && p.YValues[0] < maxY) {
435              selectedPoints.Add(p);
436            }
437          }
438          foreach (DataPoint p in selectedPoints) {
439            IRun run = (IRun)p.Tag;
440            run.Color = colorDialog.Color;
441          }
442        }
443        this.chart.ChartAreas[0].CursorX.SelectionStart = this.chart.ChartAreas[0].CursorX.SelectionEnd;
444        this.chart.ChartAreas[0].CursorY.SelectionStart = this.chart.ChartAreas[0].CursorY.SelectionEnd;
445        Content.UpdateOfRunsInProgress = false;
446      }
447    }
448
449    private void chart_MouseMove(object sender, MouseEventArgs e) {
450      HitTestResult h = this.chart.HitTest(e.X, e.Y);
451      if (!Locked) {
452        if (this.draggedRun != null && h.ChartElementType != ChartElementType.DataPoint) {
453          DataObject data = new DataObject();
454          data.SetData("HeuristicLab", draggedRun);
455          if (ReadOnly)
456            DoDragDrop(data, DragDropEffects.Copy | DragDropEffects.Link);
457          else {
458            DragDropEffects result = DoDragDrop(data, DragDropEffects.Copy | DragDropEffects.Link | DragDropEffects.Move);
459            if ((result & DragDropEffects.Move) == DragDropEffects.Move)
460              Content.Remove(draggedRun);
461          }
462          this.chart.ChartAreas[0].AxisX.ScaleView.Zoomable = !isSelecting;
463          this.chart.ChartAreas[0].AxisY.ScaleView.Zoomable = !isSelecting;
464          this.draggedRun = null;
465        }
466      }
467
468      string newTooltipText = string.Empty;
469      string oldTooltipText;
470      if (h.ChartElementType == ChartElementType.DataPoint) {
471        IRun run = (IRun)((DataPoint)h.Object).Tag;
472        newTooltipText = BuildTooltip(run);
473      } else if (h.ChartElementType == ChartElementType.AxisLabels) {
474        newTooltipText = ((CustomLabel)h.Object).ToolTip;
475      }
476
477      oldTooltipText = this.tooltip.GetToolTip(chart);
478      if (newTooltipText != oldTooltipText)
479        this.tooltip.SetToolTip(chart, newTooltipText);
480    }
481
482    private string BuildTooltip(IRun run) {
483      string tooltip;
484      tooltip = run.Name + System.Environment.NewLine;
485
486      double? xValue = this.GetValue(run, (string)xAxisComboBox.SelectedItem);
487      double? yValue = this.GetValue(run, (string)yAxisComboBox.SelectedItem);
488      double? sizeValue = this.GetValue(run, (string)sizeComboBox.SelectedItem);
489
490      string xString = xValue == null ? string.Empty : xValue.Value.ToString();
491      string yString = yValue == null ? string.Empty : yValue.Value.ToString();
492      string sizeString = sizeValue == null ? string.Empty : sizeValue.Value.ToString();
493
494      //code to handle TimeSpanValues correct
495      int axisDimensionCount = Enum.GetNames(typeof(AxisDimension)).Count();
496      int columnIndex = xAxisComboBox.SelectedIndex - axisDimensionCount;
497      if (xValue.HasValue && columnIndex > 0 && Content.GetValue(0, columnIndex) is TimeSpanValue) {
498        TimeSpan time = TimeSpan.FromSeconds(xValue.Value);
499        xString = string.Format("{0:00}:{1:00}:{2:00.00}", (int)time.TotalHours, time.Minutes, time.Seconds);
500      }
501      columnIndex = yAxisComboBox.SelectedIndex - axisDimensionCount;
502      if (yValue.HasValue && columnIndex > 0 && Content.GetValue(0, columnIndex) is TimeSpanValue) {
503        TimeSpan time = TimeSpan.FromSeconds(yValue.Value);
504        yString = string.Format("{0:00}:{1:00}:{2:00.00}", (int)time.TotalHours, time.Minutes, time.Seconds);
505      }
506
507      tooltip += xAxisComboBox.SelectedItem + " : " + xString + Environment.NewLine;
508      tooltip += yAxisComboBox.SelectedItem + " : " + yString + Environment.NewLine;
509      tooltip += sizeComboBox.SelectedItem + " : " + sizeString + Environment.NewLine;
510
511      return tooltip;
512    }
513    #endregion
514
515    #region GUI events and updating
516    private double GetXJitter(IRun run) {
517      if (!this.xJitter.ContainsKey(run))
518        this.xJitter[run] = random.NextDouble() * 2.0 - 1.0;
519      return this.xJitter[run];
520    }
521    private double GetYJitter(IRun run) {
522      if (!this.yJitter.ContainsKey(run))
523        this.yJitter[run] = random.NextDouble() * 2.0 - 1.0;
524      return this.yJitter[run];
525    }
526    private void jitterTrackBar_ValueChanged(object sender, EventArgs e) {
527      this.xJitterFactor = xTrackBar.Value / 100.0;
528      this.yJitterFactor = yTrackBar.Value / 100.0;
529      this.UpdateDataPoints();
530    }
531    private void sizeTrackBar_ValueChanged(object sender, EventArgs e) {
532      UpdateMarkerSizes();
533    }
534
535    private void AxisComboBox_SelectedValueChanged(object sender, EventArgs e) {
536      bool axisSelected = xAxisComboBox.SelectedIndex != -1 && yAxisComboBox.SelectedIndex != -1;
537      xTrackBar.Enabled = yTrackBar.Enabled = axisSelected;
538      colorXAxisButton.Enabled = colorYAxisButton.Enabled = axisSelected;
539
540      if (!xAxisComboBox.DroppedDown)
541        xAxisValue = (string)xAxisComboBox.SelectedItem;
542      if (!yAxisComboBox.DroppedDown)
543        yAxisValue = (string)yAxisComboBox.SelectedItem;
544      if (!sizeComboBox.DroppedDown)
545        sizeAxisValue = (string)sizeComboBox.SelectedItem;
546
547      UpdateDataPoints();
548      UpdateAxisLabels();
549    }
550    private void UpdateAxisLabels() {
551      Axis xAxis = this.chart.ChartAreas[0].AxisX;
552      Axis yAxis = this.chart.ChartAreas[0].AxisY;
553      int axisDimensionCount = Enum.GetNames(typeof(AxisDimension)).Count();
554      SetCustomAxisLabels(xAxis, xAxisComboBox.SelectedIndex - axisDimensionCount);
555      SetCustomAxisLabels(yAxis, yAxisComboBox.SelectedIndex - axisDimensionCount);
556      if (xAxisComboBox.SelectedItem != null)
557        xAxis.Title = xAxisComboBox.SelectedItem.ToString();
558      if (yAxisComboBox.SelectedItem != null)
559        yAxis.Title = yAxisComboBox.SelectedItem.ToString();
560    }
561
562    private void chart_AxisViewChanged(object sender, System.Windows.Forms.DataVisualization.Charting.ViewEventArgs e) {
563      this.UpdateAxisLabels();
564    }
565
566    private void SetCustomAxisLabels(Axis axis, int dimension) {
567      axis.CustomLabels.Clear();
568      if (categoricalMapping.ContainsKey(dimension)) {
569        foreach (var pair in categoricalMapping[dimension]) {
570          string labelText = pair.Key.ToString();
571          CustomLabel label = new CustomLabel();
572          label.ToolTip = labelText;
573          if (labelText.Length > 25)
574            labelText = labelText.Substring(0, 25) + " ... ";
575          label.Text = labelText;
576          label.GridTicks = GridTickTypes.TickMark;
577          label.FromPosition = pair.Value - 0.5;
578          label.ToPosition = pair.Value + 0.5;
579          axis.CustomLabels.Add(label);
580        }
581      } else if (dimension > 0 && Content.GetValue(0, dimension) is TimeSpanValue) {
582        this.chart.ChartAreas[0].RecalculateAxesScale();
583        for (double i = axis.Minimum; i <= axis.Maximum; i += axis.LabelStyle.Interval) {
584          TimeSpan time = TimeSpan.FromSeconds(i);
585          string x = string.Format("{0:00}:{1:00}:{2:00}", (int)time.Hours, time.Minutes, time.Seconds);
586          axis.CustomLabels.Add(i - axis.LabelStyle.Interval / 2, i + axis.LabelStyle.Interval / 2, x);
587        }
588      }
589    }
590
591    private void zoomButton_CheckedChanged(object sender, EventArgs e) {
592      this.isSelecting = selectButton.Checked;
593      this.colorButton.Enabled = this.isSelecting;
594      this.chart.ChartAreas[0].AxisX.ScaleView.Zoomable = !isSelecting;
595      this.chart.ChartAreas[0].AxisY.ScaleView.Zoomable = !isSelecting;
596    }
597    private void colorButton_Click(object sender, EventArgs e) {
598      if (colorDialog.ShowDialog(this) == DialogResult.OK) {
599        this.colorButton.Image = this.GenerateImage(16, 16, this.colorDialog.Color);
600      }
601    }
602    private Image GenerateImage(int width, int height, Color fillColor) {
603      Image colorImage = new Bitmap(width, height);
604      using (Graphics gfx = Graphics.FromImage(colorImage)) {
605        using (SolidBrush brush = new SolidBrush(fillColor)) {
606          gfx.FillRectangle(brush, 0, 0, width, height);
607        }
608      }
609      return colorImage;
610    }
611
612    private void openBoxPlotViewToolStripMenuItem_Click(object sender, EventArgs e) {
613      RunCollectionBoxPlotView boxplotView = new RunCollectionBoxPlotView();
614      boxplotView.Content = this.Content;
615      boxplotView.xAxisComboBox.SelectedItem = xAxisComboBox.SelectedItem;
616      boxplotView.yAxisComboBox.SelectedItem = yAxisComboBox.SelectedItem;
617      boxplotView.Show();
618    }
619    #endregion
620
621    #region Automatic coloring
622    private void colorXAxisButton_Click(object sender, EventArgs e) {
623      ColorRuns(xAxisValue);
624    }
625
626    private void colorYAxisButton_Click(object sender, EventArgs e) {
627      ColorRuns(yAxisValue);
628    }
629
630    private void ColorRuns(string axisValue) {
631      Content.UpdateOfRunsInProgress = true;
632      var runs = Content.Select(r => new { Run = r, Value = GetValue(r, axisValue) }).Where(r => r.Value.HasValue);
633      double minValue = runs.Min(r => r.Value.Value);
634      double maxValue = runs.Max(r => r.Value.Value);
635      double range = maxValue - minValue;
636
637      foreach (var r in runs) {
638        int colorIndex = 0;
639        if (!range.IsAlmost(0)) colorIndex = (int)((ColorGradient.Colors.Count - 1) * (r.Value.Value - minValue) / (maxValue - minValue));
640        r.Run.Color = ColorGradient.Colors[colorIndex];
641      }
642      Content.UpdateOfRunsInProgress = false;
643    }
644    #endregion
645  }
646}
Note: See TracBrowser for help on using the repository browser.