Changeset 1387
- Timestamp:
- 03/21/09 13:14:53 (16 years ago)
- Location:
- trunk/sources
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/sources/HeuristicLab.Visualization.Test/LineChartTests.cs
r1386 r1387 79 79 IDataRow row3 = new DataRow(); 80 80 81 YAxisDescriptor yaxis1 = model.DefaultYAxis; 82 YAxisDescriptor yaxis2 = new YAxisDescriptor(); 83 84 yaxis1.Label = "Y-Axis 1"; 85 yaxis2.Label = "Y-Axis 2"; 86 81 87 row1.Color = Color.Red; 82 88 row1.Thickness = 3; … … 93 99 row3.Style = DrawingStyle.Solid; 94 100 row3.Label = "Die Blaue"; 95 row3.YAxis = new YAxisDescriptor();101 row3.YAxis = yaxis2; 96 102 97 103 model.AddDataRow(row1); -
trunk/sources/HeuristicLab.Visualization/ChartDataRowsModel.cs
r1385 r1387 136 136 rows.Remove(row); 137 137 OnDataRowRemoved(row); 138 } 139 140 public YAxisDescriptor DefaultYAxis { 141 get { return defaultYAxisDescriptor; } 138 142 } 139 143
Note: See TracChangeset
for help on using the changeset viewer.