Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
05/29/09 17:23:18 (15 years ago)
Author:
cbahner
Message:

#636 first impl. of drawingStyle (DataRowSettings)

File:
1 edited

Legend:

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

    r1886 r1962  
    121121
    122122        XmlAttribute idAttr = document.CreateAttribute("label");
    123         idAttr.Value = row.Label;
     123        idAttr.Value = row.RowSettings.Label;
    124124        columnElement.Attributes.Append(idAttr);
    125125
     
    156156          string rowLabel = rowIdAttr.Value;
    157157          DataRow row = new DataRow();
    158           row.Label = rowLabel;
     158          row.RowSettings.Label = rowLabel;
    159159
    160160          string[] tokens = dataRow.InnerText.Split(';');
Note: See TracChangeset for help on using the changeset viewer.