3 writes to _sizeCorrection
System.Windows.Forms.DataVisualization (3)
Common\ChartTypes\PieChart.cs (3)
649
this.
_sizeCorrection
= correction;
662
_sizeCorrection
= 0.8F;
667
_sizeCorrection
= 0.95F;
7 references to _sizeCorrection
System.Windows.Forms.DataVisualization (7)
Common\ChartTypes\PieChart.cs (7)
640
float correction = (this._labelsOverlap) ? this.
_sizeCorrection
: 0.95F;
660
if( _sliceExploded &&
_sizeCorrection
> 0.8F )
805
if(
_sizeCorrection
!= 1 )
807
rectangle.X += rectangle.Width * ( 1 -
_sizeCorrection
) / 2;
808
rectangle.Y += rectangle.Height * ( 1 -
_sizeCorrection
) / 2;
809
rectangle.Width = rectangle.Width *
_sizeCorrection
;
810
rectangle.Height = rectangle.Height *
_sizeCorrection
;