Free cookie consent management tool by TermsFeed Policy Generator

Changeset 6638


Ignore:
Timestamp:
08/05/11 08:10:27 (13 years ago)
Author:
abeham
Message:

#1543

  • fixed box plot zooming (the cursor's interval was set to a smaller value)
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/sources/HeuristicLab.Optimization.Views/3.3/RunCollectionBoxPlotView.cs

    r5445 r6638  
    5353      chart.ChartAreas.Add(BoxPlotChartAreaName);
    5454      chart.CustomizeAllChartAreas();
     55      chart.ChartAreas[BoxPlotChartAreaName].Axes.ToList().ForEach(x => { x.ScaleView.Zoomable = true; x.ScaleView.MinSize = 0; });
     56      chart.ChartAreas[BoxPlotChartAreaName].CursorX.Interval = 0.5;
     57      chart.ChartAreas[BoxPlotChartAreaName].CursorY.Interval = 1e-5;
    5558    }
    5659
Note: See TracChangeset for help on using the changeset viewer.