Free cookie consent management tool by TermsFeed Policy Generator

source: trunk/sources/HeuristicLab.Visualization/3.2/IChartDataRowsModel.cs @ 1965

Last change on this file since 1965 was 1886, checked in by mstoeger, 15 years ago

removed unused interfaces/classes. reordered methods. #498

File size: 653 bytes
RevLine 
[859]1using System.Collections.Generic;
[874]2using HeuristicLab.Core;
[1341]3using HeuristicLab.Visualization.Options;
[859]4
5namespace HeuristicLab.Visualization {
[874]6  public interface IChartDataRowsModel : IItem {
[761]7    string Title { get; set; }
[697]8
[1880]9    XAxisDescriptor XAxis { get; }
[1350]10    List<YAxisDescriptor> YAxes { get; }
11
[1886]12    List<IDataRow> Rows { get; }
[761]13    void AddDataRow(IDataRow row);
14    void RemoveDataRow(IDataRow row);
15
[1285]16    int MaxDataRowValues { get; }
17
[1341]18    ViewSettings ViewSettings { get; set; }
19
[761]20    event ModelChangedHandler ModelChanged;
21    event DataRowAddedHandler DataRowAdded;
22    event DataRowRemovedHandler DataRowRemoved;
[680]23  }
[761]24}
Note: See TracBrowser for help on using the repository browser.