Last change
on this file since 1619 was
1530,
checked in by gkronber, 16 years ago
|
Moved source files of plugins Hive ... Visualization.Test into version-specific sub-folders. #576
|
File size:
797 bytes
|
Line | |
---|
1 | using System.Collections.Generic;
|
---|
2 | using HeuristicLab.Core;
|
---|
3 | using HeuristicLab.Visualization.LabelProvider;
|
---|
4 | using HeuristicLab.Visualization.Options;
|
---|
5 |
|
---|
6 | namespace HeuristicLab.Visualization {
|
---|
7 | public interface IChartDataRowsModel : IItem {
|
---|
8 | string Title { get; set; }
|
---|
9 | List<IDataRow> Rows { get; }
|
---|
10 | ILabelProvider XAxisLabelProvider { get; set; }
|
---|
11 |
|
---|
12 | List<YAxisDescriptor> YAxes { get; }
|
---|
13 |
|
---|
14 | void AddDataRow(IDataRow row);
|
---|
15 | void RemoveDataRow(IDataRow row);
|
---|
16 |
|
---|
17 | int MaxDataRowValues { get; }
|
---|
18 |
|
---|
19 | ViewSettings ViewSettings { get; set; }
|
---|
20 |
|
---|
21 | string XAxisLabel { get; set; }
|
---|
22 | bool ShowXAxisLabel { get; set; }
|
---|
23 |
|
---|
24 | event ModelChangedHandler ModelChanged;
|
---|
25 | event DataRowAddedHandler DataRowAdded;
|
---|
26 | event DataRowRemovedHandler DataRowRemoved;
|
---|
27 | }
|
---|
28 | } |
---|
Note: See
TracBrowser
for help on using the repository browser.