Free cookie consent management tool by TermsFeed Policy Generator

source: trunk/sources/HeuristicLab.Visualization/IChartDataRowsModel.cs @ 1210

Last change on this file since 1210 was 1194, checked in by mstoeger, 16 years ago

Implemented a continuous-, discrete- and string- label provider for the X/Y axis labels. (#433)

File size: 988 bytes
RevLine 
[859]1using System.Collections.Generic;
[874]2using HeuristicLab.Core;
[1194]3using HeuristicLab.Visualization.LabelProvider;
[859]4
5namespace HeuristicLab.Visualization {
[874]6  public interface IChartDataRowsModel : IItem {
[761]7    string Title { get; set; }
[1190]8    //string XAxisLabel { get; set; }
9    //List<string> XLabels { get; }
[859]10    List<IDataRow> Rows { get; }
[1190]11    ILabelProvider XAxisLabelProvider { get; set; }
[697]12
[761]13    void AddDataRow(IDataRow row);
14    void RemoveDataRow(IDataRow row);
15
[1190]16    //void AddLabel(string label);
17    //void AddLabel(string label, int index);
18    //void AddLabels(string[] labels);
19    //void AddLabels(string[] labels, int index);
20    //void ModifyLabel(string label, int index);
21    //void ModifyLabels(string[] labels, int index);
22    //void RemoveLabel(int index);
23    //void RemoveLabels(int index, int count);
[761]24
25    event ModelChangedHandler ModelChanged;
26    event DataRowAddedHandler DataRowAdded;
27    event DataRowRemovedHandler DataRowRemoved;
[680]28  }
[761]29}
Note: See TracBrowser for help on using the repository browser.