14 writes to markSize
System.Web.DataVisualization (14)
Common\General\Axis.cs (10)
3495
this.
markSize
= 0F;
3532
this.
markSize
+= (float)Math.Max(majorTickSize, minorTickSize);
3541
this.
markSize
+= borderSize.Height / 2f;
3542
this.
markSize
= Math.Min(this.markSize, (plotArea.Height / 100F) * (Axis.maxAxisMarkSize / axesNumber));
3547
this.
markSize
+= borderSize.Width / 2f;
3548
this.
markSize
= Math.Min(this.markSize, (plotArea.Width / 100F) * (Axis.maxAxisMarkSize / axesNumber));
3583
this.
markSize
+= areaWallSize.Height;
3587
this.
markSize
+= areaWallSize.Width;
3599
this.
markSize
= Math.Max(this.markSize, arrowSize - (this.markSize + this.scrollBarSize + this.titleSize));
3600
this.
markSize
= Math.Min(this.markSize, (plotArea.Width / 100F) * (Axis.maxAxisMarkSize / axesNumber));
Common\General\ChartArea.cs (4)
1924
axis.
markSize
+= overlap - axis.markSize;
1940
axis.
markSize
+= overlap - axis.markSize;
1973
axis.
markSize
+= overlap - axis.markSize;
1989
axis.
markSize
+= overlap - axis.markSize;
47 references to markSize
System.Web.DataVisualization (47)
Common\General\Axis.cs (21)
1797
float axisSize = this.
markSize
+ this.labelSize;
2383
float offset = this.labelSize + this.
markSize
+ this.titleSize / 2f;
2632
first.X = axisPosition - (labelSize +
markSize
);
2641
second.X = axisPosition + labelSize +
markSize
;
2649
second.Y = axisPosition + labelSize +
markSize
;
2654
first.Y = axisPosition - (labelSize +
markSize
);
3542
this.markSize = Math.Min(this.
markSize
, (plotArea.Height / 100F) * (Axis.maxAxisMarkSize / axesNumber));
3548
this.markSize = Math.Min(this.
markSize
, (plotArea.Width / 100F) * (Axis.maxAxisMarkSize / axesNumber));
3597
if (arrowSize > (this.
markSize
+ this.scrollBarSize + this.titleSize))
3599
this.markSize = Math.Max(this.
markSize
, arrowSize - (this.
markSize
+ this.scrollBarSize + this.titleSize));
3600
this.markSize = Math.Min(this.
markSize
, (plotArea.Width / 100F) * (Axis.maxAxisMarkSize / axesNumber));
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,
4844
float spacing = graph.GetAbsolutePoint(new PointF(0, this.
markSize
+ Axis.elementSpacing)).Y;
5047
this.
markSize
+ this.scrollBarSize + this.titleSize,
5092
this.
markSize
+ this.scrollBarSize + this.titleSize,
Common\General\ChartArea.cs (11)
1641
float axisSize = axis.
markSize
+ axis.labelSize;
1670
axisSize = axis.titleSize + axis.
markSize
+ axis.scrollBarSize;
1922
if(overlap > axis.
markSize
)
1924
axis.markSize += overlap - axis.
markSize
;
1938
if(overlap > axis.
markSize
)
1940
axis.markSize += overlap - axis.
markSize
;
1971
if(overlap > axis.
markSize
)
1973
axis.markSize += overlap - axis.
markSize
;
1987
if(overlap > axis.
markSize
)
1989
axis.markSize += overlap - axis.
markSize
;
2581
float spacing = chartGraph.GetAbsolutePoint(new PointF(0, this.AxisX.
markSize
+ Axis.elementSpacing)).Y;
Common\General\Label.cs (11)
1166
labelRelativePosition.Y -= _axis.
markSize
+ Axis.elementSpacing;
1396
rectLabels.X -= labelSize + _axis.
markSize
;
1409
rectLabels.X += _axis.
markSize
;
1422
rectLabels.Y -= labelSize + _axis.
markSize
;
1435
rectLabels.Y += _axis.
markSize
;
1848
rectLabels.X -= labelsAxis.
markSize
;
1870
rectLabels.X += labelsAxis.
markSize
;
1894
rectLabels.Y -= labelsAxis.
markSize
;
1913
rectLabels.Y += labelsAxis.
markSize
;
2378
rect.Y += this._axis.
markSize
/ 4f;
2392
rect.Y += this._axis.
markSize
/ 4f;
Common\General\Selection.cs (4)
3047
first.X -= axis.labelSize + axis.
markSize
;
3056
second.X += axis.labelSize + axis.
markSize
;
3065
second.Y += axis.labelSize + axis.
markSize
;
3074
first.Y -= axis.labelSize + axis.
markSize
;