Changeset 15043
- Timestamp:
- 06/21/17 16:21:14 (7 years ago)
- Location:
- branches/DataPreprocessing Enhancements/HeuristicLab.DataPreprocessing.Views/3.4
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/DataPreprocessing Enhancements/HeuristicLab.DataPreprocessing.Views/3.4/LineChartView.cs
r15019 r15043 72 72 if (Content.AllInOneMode) { 73 73 if (allInOneDataTableView == null) 74 allInOneDataTableView = new DataTableView() { Content = allInOneDataTable, Show Name = false };74 allInOneDataTableView = new DataTableView() { Content = allInOneDataTable, ShowChartOnly = true }; 75 75 return new[] { allInOneDataTableView }; 76 76 } -
branches/DataPreprocessing Enhancements/HeuristicLab.DataPreprocessing.Views/3.4/PreprocessingChartView.cs
r15027 r15043 68 68 foreach (var name in Content.VariableItemList.CheckedItems) { 69 69 if (!dataTableViews.ContainsKey(name.Value.Value)) 70 dataTableViews.Add(name.Value.Value, new DataTableView() { Content = dataTables[name.Value.Value], Show Name = false });70 dataTableViews.Add(name.Value.Value, new DataTableView() { Content = dataTables[name.Value.Value], ShowChartOnly = true }); 71 71 yield return dataTableViews[name.Value.Value]; 72 72 } -
branches/DataPreprocessing Enhancements/HeuristicLab.DataPreprocessing.Views/3.4/ScatterPlotMultiView.cs
r15037 r15043 429 429 Content = dataTable, 430 430 Dock = DockStyle.Fill, 431 Show Name = false431 ShowChartOnly = true 432 432 }; 433 433 //pcv.ChartDoubleClick += HistogramDoubleClick; // ToDo: not working; double click is already handled by the chart
Note: See TracChangeset
for help on using the changeset viewer.