Free cookie consent management tool by TermsFeed Policy Generator

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

Last change on this file since 1803 was 1530, checked in by gkronber, 15 years ago

Moved source files of plugins Hive ... Visualization.Test into version-specific sub-folders. #576

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