6 writes to titleSize
System.Windows.Forms.DataVisualization (6)
Common\General\Axis.cs (6)
3390
this.
titleSize
= 0F;
3404
this.
titleSize
= Math.Min(titleStringSize.Width, maxTitlesize);
3408
this.
titleSize
= Math.Min(titleStringSize.Height, maxTitlesize);
3419
this.
titleSize
= Math.Min(titleStringSize.Width, maxTitlesize);
3423
this.
titleSize
= Math.Min(titleStringSize.Height, maxTitlesize);
3429
this.
titleSize
+= elementSpacing;
19 references to titleSize
System.Windows.Forms.DataVisualization (19)
Common\General\Axis.cs (13)
1816
float titleSizeWithoutSpacing = this.
titleSize
- elementSpacing;
2383
float offset = this.labelSize + this.markSize + this.
titleSize
/ 2f;
3427
if (this.
titleSize
> 0)
3597
if (arrowSize > (this.markSize + this.scrollBarSize + this.
titleSize
))
3599
this.markSize = Math.Max(this.markSize, arrowSize - (this.markSize + this.scrollBarSize + this.
titleSize
));
3763
this.markSize + this.scrollBarSize + this.
titleSize
+ spacer,
3978
this.labelSize = (maxAxisElementsSize) - this.markSize - this.scrollBarSize - this.
titleSize
;
3995
(maxLabelSize / 100F) * (maxAxisElementsSize - this.markSize - this.scrollBarSize - this.
titleSize
), out this.unRotatedLabelSize);
4001
(maxLabelSize / 100F) * (maxAxisElementsSize - this.markSize - this.scrollBarSize - this.
titleSize
), out this.unRotatedLabelSize);
4113
this.markSize + this.scrollBarSize + this.
titleSize
,
4290
this.markSize + this.scrollBarSize + this.
titleSize
,
5047
this.markSize + this.scrollBarSize + this.
titleSize
,
5092
this.markSize + this.scrollBarSize + this.
titleSize
,
Common\General\ChartArea.cs (6)
1663
axisSize += axis.
titleSize
+ axis.scrollBarSize;
1670
axisSize = axis.
titleSize
+ axis.markSize + axis.scrollBarSize;
1797
float xTitleSize = (float)Math.Max(this.AxisY.
titleSize
, this.AxisY2.
titleSize
);
1803
float yTitleSize = (float)Math.Max(this.AxisX.
titleSize
, this.AxisX2.
titleSize
);