2 writes to PlotAreaPosition
System.Windows.Forms.DataVisualization (2)
Common\General\Axis.cs (2)
3162PlotAreaPosition = position; 3382PlotAreaPosition = chartAreaPosition;
87 references to PlotAreaPosition
System.Windows.Forms.DataVisualization (87)
Common\General\Axis.cs (40)
2481first.Y = PlotAreaPosition.Bottom; 2483second.Y = PlotAreaPosition.Y; 2494first.Y = PlotAreaPosition.Bottom; 2496second.Y = PlotAreaPosition.Y; 2506first.X = PlotAreaPosition.X; 2508second.X = PlotAreaPosition.Right; 2519first.X = PlotAreaPosition.X; 2521second.X = PlotAreaPosition.Right; 2535first.Y = PlotAreaPosition.Y + PlotAreaPosition.Height / 2f; 2633first.Y = PlotAreaPosition.Y; 2635second.Y = PlotAreaPosition.Bottom; 2640first.Y = PlotAreaPosition.Y; 2642second.Y = PlotAreaPosition.Bottom; 2646first.X = PlotAreaPosition.X; 2648second.X = PlotAreaPosition.Right; 2653first.X = PlotAreaPosition.X; 2655second.X = PlotAreaPosition.Right; 2663second.Y = PlotAreaPosition.Y + PlotAreaPosition.Height / 2f; 3385PlotAreaPosition.FromRectangleF(plotArea); 5245maxLabelSize = this.PlotAreaPosition.Y - ChartArea.Position.Y; 5247maxLabelSize = ChartArea.Position.Bottom - this.PlotAreaPosition.Bottom; 5249maxLabelSize = this.PlotAreaPosition.X - ChartArea.Position.X; 5251maxLabelSize = ChartArea.Position.Right - this.PlotAreaPosition.Right; 5410rect.X = this.PlotAreaPosition.X; 6277chartAreaSize = PlotAreaPosition.Right - PlotAreaPosition.X; 6281chartAreaSize = PlotAreaPosition.Bottom - PlotAreaPosition.Y; 6304edgePosition = PlotAreaPosition.Bottom; 6308edgePosition = PlotAreaPosition.X; 6312edgePosition = PlotAreaPosition.Right; 6316edgePosition = PlotAreaPosition.Y; 6350return PlotAreaPosition.X + PlotAreaPosition.Width / 2f; 6364return PlotAreaPosition.Y; 6366return PlotAreaPosition.Bottom; 6368return PlotAreaPosition.Right; 6370return PlotAreaPosition.X;
Common\General\AxisScale.cs (6)
1028 if(PlotAreaPosition == null) 1035 position = position - PlotAreaPosition.X; 1037 position = PlotAreaPosition.Bottom - position; 1043 ChartArea = PlotAreaPosition.Width; 1045 ChartArea = PlotAreaPosition.Height; 1822 paintAreaPosition = PlotAreaPosition.ToRectangleF();
Common\General\AxisScaleSegments.cs (2)
426 RectangleF clipRegion = graph.GetAbsoluteRectangle(this.axis.PlotAreaPosition.ToRectangleF()); 690 RectangleF breakPosition = this.axis.PlotAreaPosition.ToRectangleF();
Common\General\ChartArea.cs (4)
1903 labelsPosition = axis.PlotAreaPosition.Bottom; 1907 if(Math.Round(labelsPosition, 2) < Math.Round(axis.PlotAreaPosition.Bottom, 2)) 1952 labelsPosition = axis.PlotAreaPosition.Y; 1956 if(Math.Round(labelsPosition, 2) < Math.Round(axis.PlotAreaPosition.Y, 2))
Common\General\GridTickMarks.cs (13)
270axisPosition = Axis.PlotAreaPosition.X; 297axisPosition = Axis.PlotAreaPosition.Right; 324axisPosition = Axis.PlotAreaPosition.Y; 351axisPosition = Axis.PlotAreaPosition.Bottom; 610axisPosition = Axis.PlotAreaPosition.X; 637axisPosition = Axis.PlotAreaPosition.Right; 664axisPosition = Axis.PlotAreaPosition.Y; 691axisPosition = Axis.PlotAreaPosition.Bottom; 858float axisPosition = Axis.PlotAreaPosition.Y; 899float axisPosition = Axis.PlotAreaPosition.X; 940float axisPosition = Axis.PlotAreaPosition.Right; 1467 plotArea = _axis.PlotAreaPosition.ToRectangleF(); 1556 RectangleF plotArea = _axis.PlotAreaPosition.ToRectangleF(); // Plot area position
Common\General\Label.cs (12)
1394rectLabels.X = _axis.PlotAreaPosition.X; 1408rectLabels.X = _axis.PlotAreaPosition.Right; 1421rectLabels.Y = _axis.PlotAreaPosition.Y; 1434rectLabels.Y = _axis.PlotAreaPosition.Bottom; 1837 rectLabels.Width = (float)Math.Max(rectLabels.Width, rectLabels.X - labelsAxis.PlotAreaPosition.X); 1841 rectLabels.X = labelsAxis.PlotAreaPosition.X; 1861 rectLabels.Width = (float)Math.Max(rectLabels.Width, labelsAxis.PlotAreaPosition.Right - rectLabels.X); 1865 rectLabels.X = labelsAxis.PlotAreaPosition.Right; 1883 rectLabels.Height = (float)Math.Max(rectLabels.Height, rectLabels.Y - labelsAxis.PlotAreaPosition.Y); 1887 rectLabels.Y = labelsAxis.PlotAreaPosition.Y; 1907 rectLabels.Height = (float)Math.Max(rectLabels.Height, labelsAxis.PlotAreaPosition.Bottom - rectLabels.Y); 1911 rectLabels.Y = labelsAxis.PlotAreaPosition.Bottom;
Common\General\Selection.cs (10)
3044first.Y = axis.PlotAreaPosition.Y; 3046second.Y = axis.PlotAreaPosition.Bottom; 3053first.Y = axis.PlotAreaPosition.Y; 3055second.Y = axis.PlotAreaPosition.Bottom; 3061first.X = axis.PlotAreaPosition.X; 3063second.X = axis.PlotAreaPosition.Right; 3070first.X = axis.PlotAreaPosition.X; 3072second.X = axis.PlotAreaPosition.Right; 3081second.Y = axis.PlotAreaPosition.Y + axis.PlotAreaPosition.Height / 2f;