[3349] | 1 | #region License Information
|
---|
| 2 | /* HeuristicLab
|
---|
| 3 | * Copyright (C) 2002-2010 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 |
|
---|
| 22 | using System;
|
---|
| 23 | using System.Collections.Generic;
|
---|
| 24 | using System.Drawing;
|
---|
| 25 | using System.Linq;
|
---|
| 26 | using System.Windows.Forms;
|
---|
| 27 | using System.Windows.Forms.DataVisualization.Charting;
|
---|
[3376] | 28 | using HeuristicLab.Common;
|
---|
[3349] | 29 | using HeuristicLab.Core;
|
---|
[3447] | 30 | using HeuristicLab.Data;
|
---|
[4068] | 31 | using HeuristicLab.MainForm;
|
---|
| 32 | using HeuristicLab.MainForm.WindowsForms;
|
---|
[3349] | 33 |
|
---|
| 34 | namespace HeuristicLab.Optimization.Views {
|
---|
| 35 | [View("RunCollection BubbleChart")]
|
---|
| 36 | [Content(typeof(RunCollection), false)]
|
---|
| 37 | public partial class RunCollectionBubbleChartView : AsynchronousContentView {
|
---|
[3524] | 38 | private enum SizeDimension { Constant = 0 }
|
---|
| 39 | private enum AxisDimension { Index = 0 }
|
---|
| 40 |
|
---|
[3726] | 41 | private string xAxisValue;
|
---|
| 42 | private string yAxisValue;
|
---|
| 43 | private string sizeAxisValue;
|
---|
| 44 |
|
---|
[4883] | 45 | private Dictionary<IRun, List<DataPoint>> runToDataPointMapping;
|
---|
[3349] | 46 | private Dictionary<int, Dictionary<object, double>> categoricalMapping;
|
---|
[3411] | 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;
|
---|
[4883] | 53 | private bool suppressUpdates = false;
|
---|
[3349] | 54 |
|
---|
| 55 | public RunCollectionBubbleChartView() {
|
---|
| 56 | InitializeComponent();
|
---|
[4846] | 57 | chart.ContextMenuStrip.Items.Insert(0, openBoxPlotViewToolStripMenuItem);
|
---|
[3411] | 58 |
|
---|
[4883] | 59 | runToDataPointMapping = new Dictionary<IRun, List<DataPoint>>();
|
---|
[4635] | 60 | categoricalMapping = new Dictionary<int, Dictionary<object, double>>();
|
---|
| 61 | xJitter = new Dictionary<IRun, double>();
|
---|
| 62 | yJitter = new Dictionary<IRun, double>();
|
---|
| 63 | random = new Random();
|
---|
[4846] | 64 |
|
---|
[4635] | 65 | colorDialog.Color = Color.Black;
|
---|
| 66 | colorButton.Image = this.GenerateImage(16, 16, this.colorDialog.Color);
|
---|
| 67 | isSelecting = false;
|
---|
[4846] | 68 |
|
---|
[4636] | 69 | chart.CustomizeAllChartAreas();
|
---|
[4635] | 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;
|
---|
[3349] | 74 | }
|
---|
| 75 |
|
---|
| 76 | public new RunCollection Content {
|
---|
| 77 | get { return (RunCollection)base.Content; }
|
---|
| 78 | set { base.Content = value; }
|
---|
| 79 | }
|
---|
[3447] | 80 | public IStringConvertibleMatrix Matrix {
|
---|
| 81 | get { return this.Content; }
|
---|
| 82 | }
|
---|
| 83 |
|
---|
[3349] | 84 | protected override void RegisterContentEvents() {
|
---|
| 85 | base.RegisterContentEvents();
|
---|
| 86 | Content.Reset += new EventHandler(Content_Reset);
|
---|
| 87 | Content.ColumnNamesChanged += new EventHandler(Content_ColumnNamesChanged);
|
---|
[3428] | 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);
|
---|
[4888] | 91 | Content.UpdateOfRunsInProgressChanged += new EventHandler(Content_UpdateOfRunsInProgressChanged);
|
---|
[3448] | 92 | RegisterRunEvents(Content);
|
---|
| 93 | }
|
---|
[3349] | 94 | protected override void DeregisterContentEvents() {
|
---|
| 95 | base.DeregisterContentEvents();
|
---|
| 96 | Content.Reset -= new EventHandler(Content_Reset);
|
---|
| 97 | Content.ColumnNamesChanged -= new EventHandler(Content_ColumnNamesChanged);
|
---|
[3428] | 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);
|
---|
[4888] | 101 | Content.UpdateOfRunsInProgressChanged -= new EventHandler(Content_UpdateOfRunsInProgressChanged);
|
---|
[3448] | 102 | DeregisterRunEvents(Content);
|
---|
| 103 | }
|
---|
[4094] | 104 | protected virtual void RegisterRunEvents(IEnumerable<IRun> runs) {
|
---|
| 105 | foreach (IRun run in runs)
|
---|
| 106 | run.Changed += new EventHandler(run_Changed);
|
---|
| 107 | }
|
---|
[3448] | 108 | protected virtual void DeregisterRunEvents(IEnumerable<IRun> runs) {
|
---|
| 109 | foreach (IRun run in runs)
|
---|
[3428] | 110 | run.Changed -= new EventHandler(run_Changed);
|
---|
[3349] | 111 | }
|
---|
[3428] | 112 |
|
---|
| 113 | private void Content_CollectionReset(object sender, HeuristicLab.Collections.CollectionItemsChangedEventArgs<IRun> e) {
|
---|
[3448] | 114 | DeregisterRunEvents(e.OldItems);
|
---|
| 115 | RegisterRunEvents(e.Items);
|
---|
[3428] | 116 | }
|
---|
| 117 | private void Content_ItemsRemoved(object sender, HeuristicLab.Collections.CollectionItemsChangedEventArgs<IRun> e) {
|
---|
[3449] | 118 | DeregisterRunEvents(e.Items);
|
---|
[3428] | 119 | }
|
---|
| 120 | private void Content_ItemsAdded(object sender, HeuristicLab.Collections.CollectionItemsChangedEventArgs<IRun> e) {
|
---|
[3448] | 121 | RegisterRunEvents(e.Items);
|
---|
[3428] | 122 | }
|
---|
| 123 | private void run_Changed(object sender, EventArgs e) {
|
---|
[3632] | 124 | if (InvokeRequired)
|
---|
| 125 | this.Invoke(new EventHandler(run_Changed), sender, e);
|
---|
| 126 | else {
|
---|
| 127 | IRun run = (IRun)sender;
|
---|
| 128 | UpdateRun(run);
|
---|
| 129 | }
|
---|
[3614] | 130 | }
|
---|
| 131 |
|
---|
| 132 | private void UpdateRun(IRun run) {
|
---|
[4883] | 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);
|
---|
[4799] | 146 | UpdateCursorInterval();
|
---|
| 147 | chart.ChartAreas[0].RecalculateAxesScale();
|
---|
| 148 | }
|
---|
[4883] | 149 |
|
---|
| 150 | if (this.chart.Series[0].Points.Count == 0)
|
---|
| 151 | noRunsLabel.Visible = true;
|
---|
| 152 | else
|
---|
| 153 | noRunsLabel.Visible = false;
|
---|
[4799] | 154 | }
|
---|
[3428] | 155 | }
|
---|
| 156 |
|
---|
[3349] | 157 | protected override void OnContentChanged() {
|
---|
| 158 | base.OnContentChanged();
|
---|
[3411] | 159 | this.categoricalMapping.Clear();
|
---|
[3499] | 160 | UpdateComboBoxes();
|
---|
| 161 | UpdateDataPoints();
|
---|
[3349] | 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() {
|
---|
[3701] | 171 | string selectedXAxis = (string)this.xAxisComboBox.SelectedItem;
|
---|
| 172 | string selectedYAxis = (string)this.yAxisComboBox.SelectedItem;
|
---|
| 173 | string selectedSizeAxis = (string)this.sizeComboBox.SelectedItem;
|
---|
[3349] | 174 | this.xAxisComboBox.Items.Clear();
|
---|
| 175 | this.yAxisComboBox.Items.Clear();
|
---|
[3411] | 176 | this.sizeComboBox.Items.Clear();
|
---|
[3499] | 177 | if (Content != null) {
|
---|
[3524] | 178 | string[] additionalAxisDimension = Enum.GetNames(typeof(AxisDimension));
|
---|
| 179 | this.xAxisComboBox.Items.AddRange(additionalAxisDimension);
|
---|
[3499] | 180 | this.xAxisComboBox.Items.AddRange(Matrix.ColumnNames.ToArray());
|
---|
[3524] | 181 | this.yAxisComboBox.Items.AddRange(additionalAxisDimension);
|
---|
[3499] | 182 | this.yAxisComboBox.Items.AddRange(Matrix.ColumnNames.ToArray());
|
---|
[3524] | 183 | string[] additionalSizeDimension = Enum.GetNames(typeof(SizeDimension));
|
---|
| 184 | this.sizeComboBox.Items.AddRange(additionalSizeDimension);
|
---|
[3499] | 185 | this.sizeComboBox.Items.AddRange(Matrix.ColumnNames.ToArray());
|
---|
[3524] | 186 | this.sizeComboBox.SelectedItem = SizeDimension.Constant.ToString();
|
---|
[3701] | 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();
|
---|
[3499] | 203 | }
|
---|
[3349] | 204 | }
|
---|
| 205 |
|
---|
[4883] | 206 |
|
---|
[4888] | 207 | private void Content_UpdateOfRunsInProgressChanged(object sender, EventArgs e) {
|
---|
[4883] | 208 | if (InvokeRequired)
|
---|
[4888] | 209 | Invoke(new EventHandler(Content_UpdateOfRunsInProgressChanged), sender, e);
|
---|
[4883] | 210 | else {
|
---|
[4888] | 211 | suppressUpdates = Content.UpdateOfRunsInProgress;
|
---|
[4883] | 212 | if (!suppressUpdates) UpdateDataPoints();
|
---|
| 213 | }
|
---|
| 214 | }
|
---|
| 215 |
|
---|
[3349] | 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();
|
---|
[4799] | 228 | runToDataPointMapping.Clear();
|
---|
[3499] | 229 | if (Content != null) {
|
---|
| 230 | foreach (IRun run in this.Content)
|
---|
| 231 | this.AddDataPoint(run);
|
---|
[3543] | 232 |
|
---|
| 233 | //check to correct max bubble size
|
---|
| 234 | if (this.chart.Series[0].Points.Select(p => p.YValues[1]).Distinct().Count() == 1)
|
---|
| 235 | this.chart.Series[0]["BubbleMaxSize"] = "2";
|
---|
| 236 | else
|
---|
| 237 | this.chart.Series[0]["BubbleMaxSize"] = "7";
|
---|
| 238 |
|
---|
| 239 | if (this.chart.Series[0].Points.Count == 0)
|
---|
| 240 | noRunsLabel.Visible = true;
|
---|
[4209] | 241 | else {
|
---|
[3543] | 242 | noRunsLabel.Visible = false;
|
---|
[4209] | 243 | UpdateCursorInterval();
|
---|
| 244 | }
|
---|
[3499] | 245 | }
|
---|
[3428] | 246 | }
|
---|
| 247 | private void AddDataPoint(IRun run) {
|
---|
[3349] | 248 | double? xValue;
|
---|
| 249 | double? yValue;
|
---|
[3411] | 250 | double? sizeValue;
|
---|
[3428] | 251 | Series series = this.chart.Series[0];
|
---|
[3726] | 252 |
|
---|
[4845] | 253 | xValue = GetValue(run, xAxisValue);
|
---|
| 254 | yValue = GetValue(run, yAxisValue);
|
---|
| 255 | sizeValue = GetValue(run, sizeAxisValue);
|
---|
[3726] | 256 |
|
---|
[3543] | 257 | if (xValue.HasValue && yValue.HasValue && sizeValue.HasValue) {
|
---|
[3701] | 258 | xValue = xValue.Value;
|
---|
| 259 | if (!xJitterFactor.IsAlmost(0.0))
|
---|
| 260 | xValue += 0.1 * GetXJitter(run) * xJitterFactor * (this.chart.ChartAreas[0].AxisX.Maximum - this.chart.ChartAreas[0].AxisX.Minimum);
|
---|
| 261 | yValue = yValue.Value;
|
---|
| 262 | if (!yJitterFactor.IsAlmost(0.0))
|
---|
| 263 | yValue += 0.1 * GetYJitter(run) * yJitterFactor * (this.chart.ChartAreas[0].AxisY.Maximum - this.chart.ChartAreas[0].AxisY.Minimum);
|
---|
[3428] | 264 | if (run.Visible) {
|
---|
[3411] | 265 | DataPoint point = new DataPoint(xValue.Value, new double[] { yValue.Value, sizeValue.Value });
|
---|
[3428] | 266 | point.Tag = run;
|
---|
| 267 | point.Color = run.Color;
|
---|
[3411] | 268 | series.Points.Add(point);
|
---|
[4883] | 269 |
|
---|
| 270 | if (!runToDataPointMapping.ContainsKey(run)) runToDataPointMapping.Add(run, new List<DataPoint>());
|
---|
| 271 | runToDataPointMapping[run].Add(point);
|
---|
[3411] | 272 | }
|
---|
[3349] | 273 | }
|
---|
| 274 | }
|
---|
[3524] | 275 | private double? GetValue(IRun run, string columnName) {
|
---|
| 276 | if (run == null || string.IsNullOrEmpty(columnName))
|
---|
[3349] | 277 | return null;
|
---|
| 278 |
|
---|
[3524] | 279 | if (Enum.IsDefined(typeof(AxisDimension), columnName)) {
|
---|
| 280 | AxisDimension axisDimension = (AxisDimension)Enum.Parse(typeof(AxisDimension), columnName);
|
---|
| 281 | return GetValue(run, axisDimension);
|
---|
| 282 | } else if (Enum.IsDefined(typeof(SizeDimension), columnName)) {
|
---|
| 283 | SizeDimension sizeDimension = (SizeDimension)Enum.Parse(typeof(SizeDimension), columnName);
|
---|
| 284 | return GetValue(run, sizeDimension);
|
---|
| 285 | } else {
|
---|
| 286 | int columnIndex = Matrix.ColumnNames.ToList().IndexOf(columnName);
|
---|
| 287 | IItem value = Content.GetValue(run, columnIndex);
|
---|
| 288 | if (value == null)
|
---|
| 289 | return null;
|
---|
[3447] | 290 |
|
---|
[3524] | 291 | DoubleValue doubleValue = value as DoubleValue;
|
---|
| 292 | IntValue intValue = value as IntValue;
|
---|
[4049] | 293 | TimeSpanValue timeSpanValue = value as TimeSpanValue;
|
---|
[3543] | 294 | double? ret = null;
|
---|
| 295 | if (doubleValue != null) {
|
---|
| 296 | if (!double.IsNaN(doubleValue.Value) && !double.IsInfinity(doubleValue.Value))
|
---|
| 297 | ret = doubleValue.Value;
|
---|
| 298 | } else if (intValue != null)
|
---|
[3524] | 299 | ret = intValue.Value;
|
---|
[4049] | 300 | else if (timeSpanValue != null) {
|
---|
| 301 | ret = timeSpanValue.Value.TotalSeconds;
|
---|
| 302 | } else
|
---|
[3524] | 303 | ret = GetCategoricalValue(columnIndex, value.ToString());
|
---|
[3447] | 304 |
|
---|
[3524] | 305 | return ret;
|
---|
| 306 | }
|
---|
[3349] | 307 | }
|
---|
[3524] | 308 | private double GetCategoricalValue(int dimension, string value) {
|
---|
[3349] | 309 | if (!this.categoricalMapping.ContainsKey(dimension))
|
---|
| 310 | this.categoricalMapping[dimension] = new Dictionary<object, double>();
|
---|
[3524] | 311 | if (!this.categoricalMapping[dimension].ContainsKey(value)) {
|
---|
[3349] | 312 | if (this.categoricalMapping[dimension].Values.Count == 0)
|
---|
[3524] | 313 | this.categoricalMapping[dimension][value] = 1.0;
|
---|
[3349] | 314 | else
|
---|
[3524] | 315 | this.categoricalMapping[dimension][value] = this.categoricalMapping[dimension].Values.Max() + 1.0;
|
---|
[3349] | 316 | }
|
---|
[3524] | 317 | return this.categoricalMapping[dimension][value];
|
---|
[3349] | 318 | }
|
---|
[3524] | 319 | private double GetValue(IRun run, AxisDimension axisDimension) {
|
---|
| 320 | double value = double.NaN;
|
---|
| 321 | switch (axisDimension) {
|
---|
| 322 | case AxisDimension.Index: {
|
---|
| 323 | value = Content.ToList().IndexOf(run);
|
---|
| 324 | break;
|
---|
| 325 | }
|
---|
| 326 | default: {
|
---|
| 327 | throw new ArgumentException("No handling strategy for " + axisDimension.ToString() + " is defined.");
|
---|
| 328 | }
|
---|
| 329 | }
|
---|
| 330 | return value;
|
---|
| 331 | }
|
---|
| 332 | private double GetValue(IRun run, SizeDimension sizeDimension) {
|
---|
| 333 | double value = double.NaN;
|
---|
| 334 | switch (sizeDimension) {
|
---|
| 335 | case SizeDimension.Constant: {
|
---|
| 336 | value = 2;
|
---|
| 337 | break;
|
---|
| 338 | }
|
---|
| 339 | default: {
|
---|
| 340 | throw new ArgumentException("No handling strategy for " + sizeDimension.ToString() + " is defined.");
|
---|
| 341 | }
|
---|
| 342 | }
|
---|
| 343 | return value;
|
---|
| 344 | }
|
---|
[3707] | 345 | private void UpdateCursorInterval() {
|
---|
| 346 | Series series = chart.Series[0];
|
---|
| 347 | double[] xValues = (from point in series.Points
|
---|
| 348 | where !point.IsEmpty
|
---|
| 349 | select point.XValue)
|
---|
| 350 | .DefaultIfEmpty(1.0)
|
---|
| 351 | .ToArray();
|
---|
| 352 | double[] yValues = (from point in series.Points
|
---|
| 353 | where !point.IsEmpty
|
---|
| 354 | select point.YValues[0])
|
---|
| 355 | .DefaultIfEmpty(1.0)
|
---|
| 356 | .ToArray();
|
---|
[3349] | 357 |
|
---|
[3707] | 358 | double xRange = xValues.Max() - xValues.Min();
|
---|
| 359 | double yRange = yValues.Max() - yValues.Min();
|
---|
[4049] | 360 | if (xRange.IsAlmost(0.0)) xRange = 1.0;
|
---|
| 361 | if (yRange.IsAlmost(0.0)) yRange = 1.0;
|
---|
[3707] | 362 | double xDigits = (int)Math.Log10(xRange) - 3;
|
---|
| 363 | double yDigits = (int)Math.Log10(yRange) - 3;
|
---|
| 364 | double xZoomInterval = Math.Pow(10, xDigits);
|
---|
| 365 | double yZoomInterval = Math.Pow(10, yDigits);
|
---|
| 366 | this.chart.ChartAreas[0].CursorX.Interval = xZoomInterval;
|
---|
| 367 | this.chart.ChartAreas[0].CursorY.Interval = yZoomInterval;
|
---|
[4049] | 368 |
|
---|
| 369 | //code to handle TimeSpanValues correct
|
---|
| 370 | int axisDimensionCount = Enum.GetNames(typeof(AxisDimension)).Count();
|
---|
| 371 | int columnIndex = xAxisComboBox.SelectedIndex - axisDimensionCount;
|
---|
| 372 | if (columnIndex >= 0 && Content.GetValue(0, columnIndex) is TimeSpanValue)
|
---|
| 373 | this.chart.ChartAreas[0].CursorX.Interval = 1;
|
---|
| 374 | columnIndex = yAxisComboBox.SelectedIndex - axisDimensionCount;
|
---|
| 375 | if (columnIndex >= 0 && Content.GetValue(0, columnIndex) is TimeSpanValue)
|
---|
| 376 | this.chart.ChartAreas[0].CursorY.Interval = 1;
|
---|
[3707] | 377 | }
|
---|
| 378 |
|
---|
[4888] | 379 | #region Drag & drop and tooltip
|
---|
[3411] | 380 | private IRun draggedRun;
|
---|
| 381 | private void chart_MouseDown(object sender, MouseEventArgs e) {
|
---|
| 382 | HitTestResult h = this.chart.HitTest(e.X, e.Y);
|
---|
| 383 | if (h.ChartElementType == ChartElementType.DataPoint) {
|
---|
[3459] | 384 | IRun run = (IRun)((DataPoint)h.Object).Tag;
|
---|
[3428] | 385 | if (e.Clicks >= 2) {
|
---|
[3557] | 386 | IContentView view = MainFormManager.MainForm.ShowContent(run);
|
---|
| 387 | if (view != null) {
|
---|
| 388 | view.ReadOnly = this.ReadOnly;
|
---|
| 389 | view.Locked = this.Locked;
|
---|
| 390 | }
|
---|
[3546] | 391 | } else
|
---|
[3428] | 392 | this.draggedRun = run;
|
---|
[3546] | 393 | this.chart.ChartAreas[0].CursorX.SetSelectionPosition(double.NaN, double.NaN);
|
---|
| 394 | this.chart.ChartAreas[0].CursorY.SetSelectionPosition(double.NaN, double.NaN);
|
---|
[3411] | 395 | }
|
---|
| 396 | }
|
---|
| 397 |
|
---|
[3428] | 398 | private void chart_MouseUp(object sender, MouseEventArgs e) {
|
---|
[3459] | 399 | if (isSelecting) {
|
---|
[4888] | 400 | Content.UpdateOfRunsInProgress = true;
|
---|
[3459] | 401 | System.Windows.Forms.DataVisualization.Charting.Cursor xCursor = chart.ChartAreas[0].CursorX;
|
---|
| 402 | System.Windows.Forms.DataVisualization.Charting.Cursor yCursor = chart.ChartAreas[0].CursorY;
|
---|
[3428] | 403 |
|
---|
[3459] | 404 | double minX = Math.Min(xCursor.SelectionStart, xCursor.SelectionEnd);
|
---|
| 405 | double maxX = Math.Max(xCursor.SelectionStart, xCursor.SelectionEnd);
|
---|
| 406 | double minY = Math.Min(yCursor.SelectionStart, yCursor.SelectionEnd);
|
---|
| 407 | double maxY = Math.Max(yCursor.SelectionStart, yCursor.SelectionEnd);
|
---|
[3428] | 408 |
|
---|
[3459] | 409 | //check for click to select model
|
---|
| 410 | if (minX == maxX && minY == maxY) {
|
---|
| 411 | HitTestResult hitTest = chart.HitTest(e.X, e.Y);
|
---|
| 412 | if (hitTest.ChartElementType == ChartElementType.DataPoint) {
|
---|
| 413 | int pointIndex = hitTest.PointIndex;
|
---|
| 414 | IRun run = (IRun)this.chart.Series[0].Points[pointIndex].Tag;
|
---|
| 415 | run.Color = colorDialog.Color;
|
---|
| 416 | }
|
---|
| 417 | } else {
|
---|
| 418 | List<DataPoint> selectedPoints = new List<DataPoint>();
|
---|
| 419 | foreach (DataPoint p in this.chart.Series[0].Points) {
|
---|
| 420 | if (p.XValue >= minX && p.XValue < maxX &&
|
---|
| 421 | p.YValues[0] >= minY && p.YValues[0] < maxY) {
|
---|
| 422 | selectedPoints.Add(p);
|
---|
| 423 | }
|
---|
| 424 | }
|
---|
| 425 | foreach (DataPoint p in selectedPoints) {
|
---|
| 426 | IRun run = (IRun)p.Tag;
|
---|
| 427 | run.Color = colorDialog.Color;
|
---|
| 428 | }
|
---|
[3428] | 429 | }
|
---|
[3638] | 430 | this.chart.ChartAreas[0].CursorX.SelectionStart = this.chart.ChartAreas[0].CursorX.SelectionEnd;
|
---|
| 431 | this.chart.ChartAreas[0].CursorY.SelectionStart = this.chart.ChartAreas[0].CursorY.SelectionEnd;
|
---|
[4888] | 432 | Content.UpdateOfRunsInProgress = false;
|
---|
[3428] | 433 | }
|
---|
| 434 | }
|
---|
| 435 |
|
---|
[3411] | 436 | private void chart_MouseMove(object sender, MouseEventArgs e) {
|
---|
[3487] | 437 | HitTestResult h = this.chart.HitTest(e.X, e.Y);
|
---|
[3432] | 438 | if (!Locked) {
|
---|
| 439 | if (this.draggedRun != null && h.ChartElementType != ChartElementType.DataPoint) {
|
---|
| 440 | DataObject data = new DataObject();
|
---|
| 441 | data.SetData("Type", draggedRun.GetType());
|
---|
| 442 | data.SetData("Value", draggedRun);
|
---|
[3459] | 443 | if (ReadOnly)
|
---|
[3432] | 444 | DoDragDrop(data, DragDropEffects.Copy | DragDropEffects.Link);
|
---|
[3459] | 445 | else {
|
---|
[3432] | 446 | DragDropEffects result = DoDragDrop(data, DragDropEffects.Copy | DragDropEffects.Link | DragDropEffects.Move);
|
---|
| 447 | if ((result & DragDropEffects.Move) == DragDropEffects.Move)
|
---|
| 448 | Content.Remove(draggedRun);
|
---|
| 449 | }
|
---|
[3459] | 450 | this.chart.ChartAreas[0].AxisX.ScaleView.Zoomable = !isSelecting;
|
---|
| 451 | this.chart.ChartAreas[0].AxisY.ScaleView.Zoomable = !isSelecting;
|
---|
[3432] | 452 | this.draggedRun = null;
|
---|
[3411] | 453 | }
|
---|
| 454 | }
|
---|
[4212] | 455 |
|
---|
[3524] | 456 | string newTooltipText = string.Empty;
|
---|
[3487] | 457 | string oldTooltipText;
|
---|
| 458 | if (h.ChartElementType == ChartElementType.DataPoint) {
|
---|
| 459 | IRun run = (IRun)((DataPoint)h.Object).Tag;
|
---|
[3524] | 460 | newTooltipText = BuildTooltip(run);
|
---|
[4212] | 461 | } else if (h.ChartElementType == ChartElementType.AxisLabels) {
|
---|
| 462 | newTooltipText = ((CustomLabel)h.Object).ToolTip;
|
---|
[3524] | 463 | }
|
---|
| 464 |
|
---|
[3487] | 465 | oldTooltipText = this.tooltip.GetToolTip(chart);
|
---|
| 466 | if (newTooltipText != oldTooltipText)
|
---|
| 467 | this.tooltip.SetToolTip(chart, newTooltipText);
|
---|
[3411] | 468 | }
|
---|
[3524] | 469 |
|
---|
| 470 | private string BuildTooltip(IRun run) {
|
---|
| 471 | string tooltip;
|
---|
| 472 | tooltip = run.Name + System.Environment.NewLine;
|
---|
| 473 |
|
---|
| 474 | double? xValue = this.GetValue(run, (string)xAxisComboBox.SelectedItem);
|
---|
| 475 | double? yValue = this.GetValue(run, (string)yAxisComboBox.SelectedItem);
|
---|
| 476 | double? sizeValue = this.GetValue(run, (string)sizeComboBox.SelectedItem);
|
---|
| 477 |
|
---|
| 478 | string xString = xValue == null ? string.Empty : xValue.Value.ToString();
|
---|
| 479 | string yString = yValue == null ? string.Empty : yValue.Value.ToString();
|
---|
| 480 | string sizeString = sizeValue == null ? string.Empty : sizeValue.Value.ToString();
|
---|
| 481 |
|
---|
[4049] | 482 | //code to handle TimeSpanValues correct
|
---|
| 483 | int axisDimensionCount = Enum.GetNames(typeof(AxisDimension)).Count();
|
---|
| 484 | int columnIndex = xAxisComboBox.SelectedIndex - axisDimensionCount;
|
---|
| 485 | if (xValue.HasValue && columnIndex > 0 && Content.GetValue(0, columnIndex) is TimeSpanValue) {
|
---|
| 486 | TimeSpan time = TimeSpan.FromSeconds(xValue.Value);
|
---|
[4212] | 487 | xString = string.Format("{0:00}:{1:00}:{2:00.00}", (int)time.TotalHours, time.Minutes, time.Seconds);
|
---|
[4049] | 488 | }
|
---|
| 489 | columnIndex = yAxisComboBox.SelectedIndex - axisDimensionCount;
|
---|
| 490 | if (yValue.HasValue && columnIndex > 0 && Content.GetValue(0, columnIndex) is TimeSpanValue) {
|
---|
| 491 | TimeSpan time = TimeSpan.FromSeconds(yValue.Value);
|
---|
[4212] | 492 | yString = string.Format("{0:00}:{1:00}:{2:00.00}", (int)time.TotalHours, time.Minutes, time.Seconds);
|
---|
[4049] | 493 | }
|
---|
| 494 |
|
---|
[3524] | 495 | tooltip += xAxisComboBox.SelectedItem + " : " + xString + Environment.NewLine;
|
---|
| 496 | tooltip += yAxisComboBox.SelectedItem + " : " + yString + Environment.NewLine;
|
---|
| 497 | tooltip += sizeComboBox.SelectedItem + " : " + sizeString + Environment.NewLine;
|
---|
| 498 |
|
---|
| 499 | return tooltip;
|
---|
| 500 | }
|
---|
[3411] | 501 | #endregion
|
---|
| 502 |
|
---|
| 503 | #region GUI events and updating
|
---|
| 504 | private double GetXJitter(IRun run) {
|
---|
| 505 | if (!this.xJitter.ContainsKey(run))
|
---|
| 506 | this.xJitter[run] = random.NextDouble() * 2.0 - 1.0;
|
---|
| 507 | return this.xJitter[run];
|
---|
| 508 | }
|
---|
| 509 | private double GetYJitter(IRun run) {
|
---|
| 510 | if (!this.yJitter.ContainsKey(run))
|
---|
| 511 | this.yJitter[run] = random.NextDouble() * 2.0 - 1.0;
|
---|
| 512 | return this.yJitter[run];
|
---|
| 513 | }
|
---|
| 514 | private void jitterTrackBar_ValueChanged(object sender, EventArgs e) {
|
---|
| 515 | this.xJitterFactor = xTrackBar.Value / 100.0;
|
---|
| 516 | this.yJitterFactor = yTrackBar.Value / 100.0;
|
---|
| 517 | this.UpdateDataPoints();
|
---|
| 518 | }
|
---|
| 519 |
|
---|
| 520 | private void AxisComboBox_SelectedIndexChanged(object sender, EventArgs e) {
|
---|
[4812] | 521 | bool axisSelected = xAxisComboBox.SelectedIndex != -1 && yAxisComboBox.SelectedIndex != -1;
|
---|
| 522 | xTrackBar.Enabled = yTrackBar.Enabled = axisSelected;
|
---|
| 523 | colorXAxisButton.Enabled = colorYAxisButton.Enabled = axisSelected;
|
---|
[4845] | 524 |
|
---|
| 525 | if (!xAxisComboBox.DroppedDown)
|
---|
| 526 | xAxisValue = (string)xAxisComboBox.SelectedItem;
|
---|
| 527 | if (!yAxisComboBox.DroppedDown)
|
---|
| 528 | yAxisValue = (string)yAxisComboBox.SelectedItem;
|
---|
| 529 | if (!sizeComboBox.DroppedDown)
|
---|
| 530 | sizeAxisValue = (string)sizeComboBox.SelectedItem;
|
---|
| 531 |
|
---|
[3411] | 532 | UpdateDataPoints();
|
---|
| 533 | UpdateAxisLabels();
|
---|
| 534 | }
|
---|
[3349] | 535 | private void UpdateAxisLabels() {
|
---|
| 536 | Axis xAxis = this.chart.ChartAreas[0].AxisX;
|
---|
| 537 | Axis yAxis = this.chart.ChartAreas[0].AxisY;
|
---|
[3536] | 538 | int axisDimensionCount = Enum.GetNames(typeof(AxisDimension)).Count();
|
---|
| 539 | SetCustomAxisLabels(xAxis, xAxisComboBox.SelectedIndex - axisDimensionCount);
|
---|
| 540 | SetCustomAxisLabels(yAxis, yAxisComboBox.SelectedIndex - axisDimensionCount);
|
---|
[4635] | 541 | if (xAxisComboBox.SelectedItem != null)
|
---|
| 542 | xAxis.Title = xAxisComboBox.SelectedItem.ToString();
|
---|
| 543 | if (yAxisComboBox.SelectedItem != null)
|
---|
| 544 | yAxis.Title = yAxisComboBox.SelectedItem.ToString();
|
---|
[3349] | 545 | }
|
---|
[4049] | 546 |
|
---|
| 547 | private void chart_AxisViewChanged(object sender, System.Windows.Forms.DataVisualization.Charting.ViewEventArgs e) {
|
---|
| 548 | this.UpdateAxisLabels();
|
---|
| 549 | }
|
---|
| 550 |
|
---|
[3411] | 551 | private void SetCustomAxisLabels(Axis axis, int dimension) {
|
---|
| 552 | axis.CustomLabels.Clear();
|
---|
[3349] | 553 | if (categoricalMapping.ContainsKey(dimension)) {
|
---|
| 554 | foreach (var pair in categoricalMapping[dimension]) {
|
---|
[3536] | 555 | string labelText = pair.Key.ToString();
|
---|
[4212] | 556 | CustomLabel label = new CustomLabel();
|
---|
| 557 | label.ToolTip = labelText;
|
---|
[3543] | 558 | if (labelText.Length > 25)
|
---|
| 559 | labelText = labelText.Substring(0, 25) + " ... ";
|
---|
[4212] | 560 | label.Text = labelText;
|
---|
[3349] | 561 | label.GridTicks = GridTickTypes.TickMark;
|
---|
[4212] | 562 | label.FromPosition = pair.Value - 0.5;
|
---|
| 563 | label.ToPosition = pair.Value + 0.5;
|
---|
| 564 | axis.CustomLabels.Add(label);
|
---|
[3349] | 565 | }
|
---|
[4049] | 566 | } else if (dimension > 0 && Content.GetValue(0, dimension) is TimeSpanValue) {
|
---|
| 567 | this.chart.ChartAreas[0].RecalculateAxesScale();
|
---|
| 568 | for (double i = axis.Minimum; i <= axis.Maximum; i += axis.LabelStyle.Interval) {
|
---|
| 569 | TimeSpan time = TimeSpan.FromSeconds(i);
|
---|
[4058] | 570 | string x = string.Format("{0:00}:{1:00}:{2:00}", (int)time.Hours, time.Minutes, time.Seconds);
|
---|
| 571 | axis.CustomLabels.Add(i - axis.LabelStyle.Interval / 2, i + axis.LabelStyle.Interval / 2, x);
|
---|
[4049] | 572 | }
|
---|
[3349] | 573 | }
|
---|
| 574 | }
|
---|
[3411] | 575 |
|
---|
| 576 | private void zoomButton_CheckedChanged(object sender, EventArgs e) {
|
---|
| 577 | this.isSelecting = selectButton.Checked;
|
---|
| 578 | this.colorButton.Enabled = this.isSelecting;
|
---|
| 579 | this.chart.ChartAreas[0].AxisX.ScaleView.Zoomable = !isSelecting;
|
---|
| 580 | this.chart.ChartAreas[0].AxisY.ScaleView.Zoomable = !isSelecting;
|
---|
| 581 | }
|
---|
| 582 | private void colorButton_Click(object sender, EventArgs e) {
|
---|
| 583 | if (colorDialog.ShowDialog(this) == DialogResult.OK) {
|
---|
| 584 | this.colorButton.Image = this.GenerateImage(16, 16, this.colorDialog.Color);
|
---|
| 585 | }
|
---|
| 586 | }
|
---|
| 587 | private Image GenerateImage(int width, int height, Color fillColor) {
|
---|
| 588 | Image colorImage = new Bitmap(width, height);
|
---|
| 589 | using (Graphics gfx = Graphics.FromImage(colorImage)) {
|
---|
| 590 | using (SolidBrush brush = new SolidBrush(fillColor)) {
|
---|
| 591 | gfx.FillRectangle(brush, 0, 0, width, height);
|
---|
| 592 | }
|
---|
| 593 | }
|
---|
| 594 | return colorImage;
|
---|
| 595 | }
|
---|
[4653] | 596 |
|
---|
| 597 | private void openBoxPlotViewToolStripMenuItem_Click(object sender, EventArgs e) {
|
---|
| 598 | RunCollectionBoxPlotView boxplotView = new RunCollectionBoxPlotView();
|
---|
| 599 | boxplotView.Content = this.Content;
|
---|
| 600 | boxplotView.xAxisComboBox.SelectedItem = xAxisComboBox.SelectedItem;
|
---|
| 601 | boxplotView.yAxisComboBox.SelectedItem = yAxisComboBox.SelectedItem;
|
---|
| 602 | boxplotView.Show();
|
---|
| 603 | }
|
---|
[3411] | 604 | #endregion
|
---|
[4799] | 605 |
|
---|
[4888] | 606 | #region Automatic coloring
|
---|
[4799] | 607 | private void colorXAxisButton_Click(object sender, EventArgs e) {
|
---|
[4845] | 608 | ColorRuns(xAxisValue);
|
---|
[4799] | 609 | }
|
---|
| 610 |
|
---|
| 611 | private void colorYAxisButton_Click(object sender, EventArgs e) {
|
---|
[4845] | 612 | ColorRuns(yAxisValue);
|
---|
| 613 | }
|
---|
| 614 |
|
---|
| 615 | private void ColorRuns(string axisValue) {
|
---|
[4888] | 616 | Content.UpdateOfRunsInProgress = true;
|
---|
[4845] | 617 | var runs = Content.Select(r => new { Run = r, Value = GetValue(r, axisValue) }).Where(r => r.Value.HasValue);
|
---|
| 618 | double minValue = runs.Min(r => r.Value.Value);
|
---|
| 619 | double maxValue = runs.Max(r => r.Value.Value);
|
---|
| 620 | double range = maxValue - minValue;
|
---|
| 621 |
|
---|
| 622 | foreach (var r in runs) {
|
---|
| 623 | int colorIndex = 0;
|
---|
| 624 | if (!range.IsAlmost(0)) colorIndex = (int)((ColorGradient.Colors.Count - 1) * (r.Value.Value - minValue) / (maxValue - minValue));
|
---|
| 625 | r.Run.Color = ColorGradient.Colors[colorIndex];
|
---|
[4799] | 626 | }
|
---|
[4888] | 627 | Content.UpdateOfRunsInProgress = false;
|
---|
[4799] | 628 | }
|
---|
| 629 | #endregion
|
---|
[3349] | 630 | }
|
---|
| 631 | }
|
---|