Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
03/12/18 15:37:28 (6 years ago)
Author:
fbaching
Message:

#2888: disallow zooming in PartialDependencePlot graphs
handle NaN erros for PartialDependencePlot data

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/HeuristicLab.Problems.DataAnalysis.Views/3.4/Controls/FactorPartialDependencePlot.cs

    r15583 r15839  
    144144      chart.CustomizeAllChartAreas();
    145145      chart.ChartAreas[0].CursorX.IsUserSelectionEnabled = true;
    146       chart.ChartAreas[0].AxisX.ScaleView.Zoomable = true;
    147146      chart.ChartAreas[0].CursorX.Interval = 0;
    148147
    149148      chart.ChartAreas[0].CursorY.IsUserSelectionEnabled = true;
    150       chart.ChartAreas[0].AxisY.ScaleView.Zoomable = true;
    151149      chart.ChartAreas[0].CursorY.Interval = 0;
     150
     151      chart.ChartAreas[0].Axes.ToList().ForEach(x => { x.ScaleView.Zoomable = false; });
    152152
    153153      Disposed += Control_Disposed;
Note: See TracChangeset for help on using the changeset viewer.