Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
05/30/09 10:23:01 (15 years ago)
Author:
mstoeger
Message:

upper/lowercase #498

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/sources/HeuristicLab.Visualization/3.2/LineChart.cs

    r1964 r1965  
    472472        }
    473473      } 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!!
    475475        for (int i = 0; i < row.Count; i++)
    476476          rowEntry.LinesShape.AddMarkerShape(new MarkerShape(i, row[i], 8, row.RowSettings.Color));
    477477      } else if (row.LineType == DataRowType.Normal) {
    478         rowEntry.showMarkers(row.ShowMarkers);
     478        rowEntry.ShowMarkers(row.ShowMarkers);
    479479        for (int i = 1; i < row.Count; i++) {
    480480          LineShape lineShape = new LineShape(i - 1, row[i - 1], i, row[i], row.RowSettings.Color, row.RowSettings.Thickness, row.Style);
     
    806806      }
    807807
    808       public void showMarkers(bool flag) {
     808      public void ShowMarkers(bool flag) {
    809809        linesShape.markersShape.ShowChildShapes = flag;
    810810      }
Note: See TracChangeset for help on using the changeset viewer.