- Timestamp:
- 06/12/12 12:55:22 (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/sources/HeuristicLab.Problems.DataAnalysis.Views/3.4/Regression/RegressionSolutionScatterPlotView.cs
r7259 r7990 119 119 this.chart.ChartAreas[0].CursorX.Interval = zoomInterval; 120 120 this.chart.ChartAreas[0].CursorY.Interval = zoomInterval; 121 122 this.chart.ChartAreas[0].AxisX.ScaleView.SmallScrollSize = zoomInterval; 123 this.chart.ChartAreas[0].AxisY.ScaleView.SmallScrollSize = zoomInterval; 124 125 this.chart.ChartAreas[0].AxisX.ScaleView.SmallScrollMinSizeType = DateTimeIntervalType.Number; 126 this.chart.ChartAreas[0].AxisX.ScaleView.SmallScrollMinSize = zoomInterval; 127 this.chart.ChartAreas[0].AxisY.ScaleView.SmallScrollMinSizeType = DateTimeIntervalType.Number; 128 this.chart.ChartAreas[0].AxisY.ScaleView.SmallScrollMinSize = zoomInterval; 129 130 if (digits < 0) { 131 this.chart.ChartAreas[0].AxisX.LabelStyle.Format = "F" + (int)Math.Abs(digits); 132 this.chart.ChartAreas[0].AxisY.LabelStyle.Format = "F" + (int)Math.Abs(digits); 133 } else { 134 this.chart.ChartAreas[0].AxisX.LabelStyle.Format = "F0"; 135 this.chart.ChartAreas[0].AxisY.LabelStyle.Format = "F0"; 136 } 121 137 } 122 138
Note: See TracChangeset
for help on using the changeset viewer.