Changeset 15222
- Timestamp:
- 07/12/17 22:59:44 (7 years ago)
- Location:
- trunk/sources/HeuristicLab.Problems.DataAnalysis.Views/3.4/Controls
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/sources/HeuristicLab.Problems.DataAnalysis.Views/3.4/Controls/FactorPartialDependencePlot.cs
r15211 r15222 251 251 axis.Interval = (axis.Maximum - axis.Minimum) / ticks; 252 252 253 try { 254 chart.ChartAreas[0].RecalculateAxesScale(); 255 } 256 catch (InvalidOperationException) { 257 // Can occur if eg. axis min == axis max 258 } 253 chart.ChartAreas[0].RecalculateAxesScale(); 259 254 } 260 255 -
trunk/sources/HeuristicLab.Problems.DataAnalysis.Views/3.4/Controls/PartialDependencePlot.cs
r15213 r15222 347 347 axis.Interval = (axis.Maximum - axis.Minimum) / ticks; 348 348 349 try { 350 chart.ChartAreas[0].RecalculateAxesScale(); 351 } 352 catch (InvalidOperationException) { 353 // Can occur if eg. axis min == axis max 354 } 349 chart.ChartAreas[0].RecalculateAxesScale(); 355 350 } 356 351
Note: See TracChangeset
for help on using the changeset viewer.