Changeset 15048 for trunk/sources/HeuristicLab.Analysis.Views/3.3
- Timestamp:
- 06/23/17 15:20:31 (7 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/sources/HeuristicLab.Analysis.Views/3.3/IndexedDataTableView.cs
r14185 r15048 158 158 series.BorderColor = Color.Empty; 159 159 160 if (row.VisualProperties.Color != Color.Empty) 161 series.Color = row.VisualProperties.Color; 162 else series.Color = Color.Empty; 160 series.Color = row.VisualProperties.Color; 163 161 series.IsVisibleInLegend = row.VisualProperties.IsVisibleInLegend; 164 162 … … 561 559 for (int i = 0; i < row.Values.Count; i++) { 562 560 var value = row.Values[i]; 561 if (IsInvalidValue(value.Item2)) continue; 563 562 var point = new DataPoint(); 564 563 point.SetValueXY(value.Item1, value.Item2);
Note: See TracChangeset
for help on using the changeset viewer.