Free cookie consent management tool by TermsFeed Policy Generator

source: branches/DataPreprocessing/HeuristicLab.DataPreprocessing/3.3/Interfaces/ILineChartLogic.cs @ 10534

Last change on this file since 10534 was 10382, checked in by aesterer, 10 years ago

Added variable selection in line chart

File size: 424 bytes
Line 
1using System;
2using System.Collections.Generic;
3using System.Linq;
4using System.Text;
5using HeuristicLab.Analysis;
6
7namespace 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.