Free cookie consent management tool by TermsFeed Policy Generator

source: trunk/sources/HeuristicLab.Visualization/3.2/IDataRow.cs @ 1530

Last change on this file since 1530 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: 1006 bytes
Line 
1using System.Drawing;
2
3namespace HeuristicLab.Visualization {
4  public enum DataRowType {
5    Normal, SingleValue
6  }
7
8  public interface IDataRow {
9    string Label { get; set; }
10    Color Color { get; set; }
11    int Thickness { get; set; }
12    DrawingStyle Style { get; set; }
13    DataRowType LineType { get; set; }
14 
15    YAxisDescriptor YAxis { get; set; }
16
17    void AddValue(double value);
18    void AddValue(double value, int index);
19    void AddValues(double[] values);
20    void AddValues(double[] values, int index);
21
22    void ModifyValue(double value, int index);
23    void ModifyValues(double[] values, int index);
24
25    void RemoveValue(int index);
26    void RemoveValues(int index, int count);
27
28    int Count { get; }
29    double this[int index] { get; set; }
30
31    double MinValue { get; }
32    double MaxValue { get; }
33
34    event ValuesChangedHandler ValuesChanged;
35    event ValueChangedHandler ValueChanged;
36    event DataRowChangedHandler DataRowChanged;
37  }
38}
Note: See TracBrowser for help on using the repository browser.