Changeset 15021
- Timestamp:
- 06/01/17 17:43:19 (7 years ago)
- Location:
- branches/DataPreprocessing Enhancements/HeuristicLab.DataPreprocessing.Views/3.4
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/DataPreprocessing Enhancements/HeuristicLab.DataPreprocessing.Views/3.4/HistogramView.cs
r14996 r15021 21 21 22 22 using System; 23 using System.Drawing; 23 24 using HeuristicLab.Analysis; 24 25 using HeuristicLab.MainForm; … … 57 58 protected override DataTable CreateDataTable(string variableName) { 58 59 var aggregation = (DataRowVisualProperties.DataRowHistogramAggregation)aggregationComboBox.SelectedItem; 59 return HistogramContent.CreateHistogram(Content.PreprocessingData, variableName, Content.GroupingVariableName, aggregation, Content.Order); 60 var hist = HistogramContent.CreateHistogram(Content.PreprocessingData, variableName, Content.GroupingVariableName, aggregation, Content.Order); 61 hist.VisualProperties.TitleFont = new Font(DefaultFont.FontFamily, 10, FontStyle.Bold); 62 return hist; 60 63 } 61 64 -
branches/DataPreprocessing Enhancements/HeuristicLab.DataPreprocessing.Views/3.4/ScatterPlotMultiView.cs
r14996 r15021 96 96 int numChecked = list.CheckedItems.Count(); 97 97 if (numChecked > 20) { 98 string message = string.Format("Displaying {0} variables ({1} charts) can cause HeuristicLab to become instable. " +98 string message = string.Format("Displaying {0} variables ({1} charts) can slown down HeuristicLab. " + 99 99 "Should the number of initially checked variables be reduced to 20?", 100 100 numChecked, numChecked * numChecked);
Note: See TracChangeset
for help on using the changeset viewer.