Changeset 12134 for trunk/sources/HeuristicLab.Analysis.Views/3.3
- Timestamp:
- 03/05/15 10:22:03 (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/sources/HeuristicLab.Analysis.Views/3.3/HistogramControl.cs
r12012 r12134 134 134 135 135 chart.Series.Clear(); 136 137 136 foreach (var point in points) { 138 137 if (!point.Value.Any()) continue; … … 172 171 173 172 ChartArea chartArea = chart.ChartAreas[0]; 173 // don't show grid lines for second y-axis 174 chartArea.AxisY2.MajorGrid.Enabled = false; 175 chartArea.AxisY2.MinorGrid.Enabled = false; 174 176 chartArea.AxisY.Title = "Frequency"; 175 177 … … 200 202 } 201 203 204 // densities should be plotted on the second axis (different scale) 205 newSeries.YAxisType = AxisType.Secondary; 202 206 chart.Series.Add(newSeries); 203 207 }
Note: See TracChangeset
for help on using the changeset viewer.