Changeset 1975
- Timestamp:
- 05/30/09 12:31:19 (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/sources/HeuristicLab.Visualization/3.2/ChartDataRowsModelInjector.cs
r1967 r1975 48 48 dataRow.RowSettings.Color = Color.Green; 49 49 dataRow.RowSettings.Thickness = 1; 50 dataRow. Style = DrawingStyle.Solid;51 dataRow. ShowMarkers = true;50 dataRow.RowSettings.Style = DrawingStyle.Solid; 51 dataRow.RowSettings.ShowMarkers = true; 52 52 model.AddDataRow(dataRow); 53 53 … … 55 55 dataRow.RowSettings.Color = Color.Blue; 56 56 dataRow.RowSettings.Thickness = 2; 57 dataRow. Style = DrawingStyle.Dashed;58 dataRow. ShowMarkers = true;57 dataRow.RowSettings.Style = DrawingStyle.Dashed; 58 dataRow.RowSettings.ShowMarkers = true; 59 59 model.AddDataRow(dataRow); 60 60 … … 62 62 dataRow.RowSettings.Color = Color.Red; 63 63 dataRow.RowSettings.Thickness = 1; 64 dataRow. Style = DrawingStyle.Solid;65 dataRow. ShowMarkers = true;64 dataRow.RowSettings.Style = DrawingStyle.Solid; 65 dataRow.RowSettings.ShowMarkers = true; 66 66 model.AddDataRow(dataRow); 67 67 … … 69 69 dataRow.RowSettings.Color = Color.Gray; 70 70 dataRow.RowSettings.Thickness = 1; 71 dataRow. Style = DrawingStyle.Solid;72 dataRow. ShowMarkers = true;71 dataRow.RowSettings.Style = DrawingStyle.Solid; 72 dataRow.RowSettings.ShowMarkers = true; 73 73 YAxisDescriptor yAxisDescriptor = new YAxisDescriptor(); 74 74 yAxisDescriptor.Label = "Selection Pressure";
Note: See TracChangeset
for help on using the changeset viewer.