Changeset 1965 for trunk/sources/HeuristicLab.Visualization
- Timestamp:
- 05/30/09 10:23:01 (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/sources/HeuristicLab.Visualization/3.2/LineChart.cs
r1964 r1965 472 472 } 473 473 } else if (row.LineType == DataRowType.Points) { 474 rowEntry. showMarkers(true); //no lines, only markers are shown!!474 rowEntry.ShowMarkers(true); //no lines, only markers are shown!! 475 475 for (int i = 0; i < row.Count; i++) 476 476 rowEntry.LinesShape.AddMarkerShape(new MarkerShape(i, row[i], 8, row.RowSettings.Color)); 477 477 } else if (row.LineType == DataRowType.Normal) { 478 rowEntry. showMarkers(row.ShowMarkers);478 rowEntry.ShowMarkers(row.ShowMarkers); 479 479 for (int i = 1; i < row.Count; i++) { 480 480 LineShape lineShape = new LineShape(i - 1, row[i - 1], i, row[i], row.RowSettings.Color, row.RowSettings.Thickness, row.Style); … … 806 806 } 807 807 808 public void showMarkers(bool flag) {808 public void ShowMarkers(bool flag) { 809 809 linesShape.markersShape.ShowChildShapes = flag; 810 810 }
Note: See TracChangeset
for help on using the changeset viewer.