Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
03/16/09 19:42:17 (16 years ago)
Author:
mstoeger
Message:

Implemented multiple Y-Axes. A LineChart has several Y-Axes and each Y-Axis has several data rows. The same clipping area is set for all data rows belonging to a Y-Axis. (#433)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/sources/HeuristicLab.Visualization/IChartDataRowsModel.cs

    r1341 r1350  
    77  public interface IChartDataRowsModel : IItem {
    88    string Title { get; set; }
    9     //string XAxisLabel { get; set; }
    10     //List<string> XLabels { get; }
    119    List<IDataRow> Rows { get; }
    1210    ILabelProvider XAxisLabelProvider { get; set; }
    1311
     12    List<YAxisDescriptor> YAxes { get; }
     13
    1414    void AddDataRow(IDataRow row);
    1515    void RemoveDataRow(IDataRow row);
    16 
    17     //void AddLabel(string label);
    18     //void AddLabel(string label, int index);
    19     //void AddLabels(string[] labels);
    20     //void AddLabels(string[] labels, int index);
    21     //void ModifyLabel(string label, int index);
    22     //void ModifyLabels(string[] labels, int index);
    23     //void RemoveLabel(int index);
    24     //void RemoveLabels(int index, int count);
    2516
    2617    int MaxDataRowValues { get; }
Note: See TracChangeset for help on using the changeset viewer.