- Timestamp:
- 05/28/14 15:31:47 (11 years ago)
- Location:
- branches/DataPreprocessing/HeuristicLab.DataPreprocessing/3.3
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/DataPreprocessing/HeuristicLab.DataPreprocessing/3.3/Implementations/ChartLogic.cs
r10908 r10915 160 160 } 161 161 162 public ScatterPlot CreateScatterPlot(string name, stringvariableNameX, string variableNameY) {163 ScatterPlot scatterPlot = new ScatterPlot( name, "");162 public ScatterPlot CreateScatterPlot(string variableNameX, string variableNameY) { 163 ScatterPlot scatterPlot = new ScatterPlot(); 164 164 165 165 -
branches/DataPreprocessing/HeuristicLab.DataPreprocessing/3.3/Implementations/ScatterPlotContent.cs
r10882 r10915 29 29 public class ScatterPlotContent : PreprocessingChartContent { 30 30 31 public string SelectedXVariable { get; set; } 32 33 public string SelectedYVariable { get; set; } 34 31 35 public ScatterPlotContent(IChartLogic chartlogic) 32 36 : base(chartlogic) { -
branches/DataPreprocessing/HeuristicLab.DataPreprocessing/3.3/Interfaces/IChartLogic.cs
r10908 r10915 45 45 DataRow CreateDataRowRange(string variableName, int start, int end, DataRowVisualProperties.DataRowChartType chartType); 46 46 47 ScatterPlot CreateScatterPlot(string name,stringvariableNameX,string variableNameY);47 ScatterPlot CreateScatterPlot(string variableNameX,string variableNameY); 48 48 49 49 string GetVariableNameByIndex(int index);
Note: See TracChangeset
for help on using the changeset viewer.