Last change
on this file since 10535 was
10382,
checked in by aesterer, 11 years ago
|
Added variable selection in line chart
|
File size:
424 bytes
|
Line | |
---|
1 | using System;
|
---|
2 | using System.Collections.Generic;
|
---|
3 | using System.Linq;
|
---|
4 | using System.Text;
|
---|
5 | using HeuristicLab.Analysis;
|
---|
6 |
|
---|
7 | namespace HeuristicLab.DataPreprocessing
|
---|
8 | {
|
---|
9 | public interface ILineChartLogic
|
---|
10 | {
|
---|
11 |
|
---|
12 | void RemoveVariable(string name);
|
---|
13 |
|
---|
14 | void AddVariable(string name);
|
---|
15 |
|
---|
16 | IEnumerable<object> GetVariableNames();
|
---|
17 |
|
---|
18 | DataTable GetDataTable();
|
---|
19 |
|
---|
20 | bool VariableIsDisplayed(string name);
|
---|
21 | }
|
---|
22 | }
|
---|
Note: See
TracBrowser
for help on using the repository browser.