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
|
Rev | Line | |
---|
[859] | 1 | using System.Collections.Generic;
|
---|
[874] | 2 | using HeuristicLab.Core;
|
---|
[1194] | 3 | using HeuristicLab.Visualization.LabelProvider;
|
---|
[1341] | 4 | using HeuristicLab.Visualization.Options;
|
---|
[859] | 5 |
|
---|
| 6 | namespace 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 |
|
---|
[761] | 21 | event ModelChangedHandler ModelChanged;
|
---|
| 22 | event DataRowAddedHandler DataRowAdded;
|
---|
| 23 | event DataRowRemovedHandler DataRowRemoved;
|
---|
[680] | 24 | }
|
---|
[761] | 25 | } |
---|
Note: See
TracBrowser
for help on using the repository browser.