Last change
on this file since 1388 was
1350,
checked in by mstoeger, 16 years ago
|
Implemented multiple Y-Axes. A LineChart has several Y-Axes and each Y-Axis has several data rows. The same clipping area is set for all data rows belonging to a Y-Axis. (#433)
|
File size:
719 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 | event ModelChangedHandler ModelChanged;
|
---|
22 | event DataRowAddedHandler DataRowAdded;
|
---|
23 | event DataRowRemovedHandler DataRowRemoved;
|
---|
24 | }
|
---|
25 | } |
---|
Note: See
TracBrowser
for help on using the repository browser.