- Timestamp:
- 10/28/10 00:38:56 (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/sources/HeuristicLab.Analysis.Views/3.3/DataTableView.cs
r4644 r4648 125 125 } 126 126 series.YAxisType = row.VisualProperties.SecondYAxis ? AxisType.Secondary : AxisType.Primary; 127 if (row.VisualProperties.Color != Color.Empty) series.Color = row.VisualProperties.Color; 127 128 series.ToolTip = row.Name + " X = #INDEX, Y = #VAL"; 128 129 FillSeriesWithRowValues(series, row); … … 256 257 } 257 258 chart.Series[row.Name].YAxisType = row.VisualProperties.SecondYAxis ? AxisType.Secondary : AxisType.Primary; 259 if (row.VisualProperties.Color != Color.Empty) chart.Series[row.Name].Color = row.VisualProperties.Color; 258 260 } 259 261 }
Note: See TracChangeset
for help on using the changeset viewer.