Rev | Line | |
---|
[859] | 1 | using System.Collections.Generic;
|
---|
[874] | 2 | using HeuristicLab.Core;
|
---|
[1341] | 3 | using HeuristicLab.Visualization.Options;
|
---|
[859] | 4 |
|
---|
| 5 | namespace 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 |
|
---|
[1966] | 20 | YAxisDescriptor DefaultYAxis { get; }
|
---|
| 21 |
|
---|
[761] | 22 | event ModelChangedHandler ModelChanged;
|
---|
| 23 | event DataRowAddedHandler DataRowAdded;
|
---|
| 24 | event DataRowRemovedHandler DataRowRemoved;
|
---|
[1986] | 25 | void AddDataRows(params IDataRow[] rows);
|
---|
[680] | 26 | }
|
---|
[761] | 27 | } |
---|
Note: See
TracBrowser
for help on using the repository browser.