Changeset 1283 for trunk/sources
- Timestamp:
- 03/07/09 12:15:36 (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/sources/HeuristicLab.Visualization/LineChart.cs
r1282 r1283 125 125 126 126 private void optionsToolStripMenuItem_Click(object sender, EventArgs e) { 127 varoptionsdlg = new OptionsDialog(this.model);127 OptionsDialog optionsdlg = new OptionsDialog(this.model); 128 128 optionsdlg.ShowDialog(this); 129 129 } … … 241 241 242 242 private void InitLineShapes(IDataRow row) { 243 varlineShapes = new List<LineShape>();243 List<LineShape> lineShapes = new List<LineShape>(); 244 244 if (rowToLineShapes.Count == 0) { 245 245 minDataValue = Double.PositiveInfinity; … … 260 260 } else { 261 261 for (int i = 1; i < row.Count; i++) { 262 varlineShape = new LineShape(i - 1, row[i - 1], i, row[i], row.Color, row.Thickness, row.Style);262 LineShape lineShape = new LineShape(i - 1, row[i - 1], i, row[i], row.Color, row.Thickness, row.Style); 263 263 lineShapes.Add(lineShape); 264 264 // TODO each DataRow needs its own WorldShape so Y Axes can be zoomed independently. … … 303 303 // UpdateSingleValueRows(); 304 304 } 305 varlineShape = new LineShape(index - 1, row[index - 1], index, row[index], row.Color, row.Thickness,305 LineShape lineShape = new LineShape(index - 1, row[index - 1], index, row[index], row.Color, row.Thickness, 306 306 row.Style); 307 307 lineShapes.Add(lineShape);
Note: See TracChangeset
for help on using the changeset viewer.