1 write to Width
System.Windows.Forms.DataVisualization (1)
Common\General\Chart.cs (1)
346
Width
= (int)Math.Ceiling(Width * newResolution / resolution);
25 references to Width
System.Windows.Forms.DataVisualization (25)
Common\Annotation\TextAnnotation.cs (2)
937
graphicsImage = new System.Drawing.Bitmap(Common.ChartPicture.
Width
, Common.ChartPicture.Height);
941
tempChartGraph.SetPictureSize( Common.ChartPicture.
Width
, Common.ChartPicture.Height );
Common\ChartTypes\FastLineChart.cs (1)
344
double xPixelConverter = (graph.Common.ChartPicture.
Width
- 1.0) / 100.0;
Common\ChartTypes\FastPointChart.cs (1)
347
double xPixelConverter = (graph.Common.ChartPicture.
Width
- 1.0) / 100.0;
Common\ChartTypes\KagiChart.cs (1)
657
(float)(xPosition * (graph.Common.ChartPicture.
Width
- 1) / 100F),
Common\ChartTypes\LineChart.cs (4)
397
float chartWidthPercentage = (graph.Common.ChartPicture.
Width
- 1) / 100F;
988
RectangleF rect = new RectangleF(0, 0, graph.Common.ChartPicture.
Width
, graph.Common.ChartPicture.Height);
999
adjustedPoint2 = rect.Contains(pt2) ? pt2 : GetIntersectionX(pt1, pt2, graph.Common.ChartPicture.
Width
);
1181
(float)xPosition * (graph.Common.ChartPicture.
Width
- 1) / 100F,
Common\General\AxisScale.cs (2)
990
val *= (this.Common.ChartPicture.
Width
- 1) / 100F;
1082
val *= 100F / ((float)(this.Common.ChartPicture.
Width
- 1));
Common\General\Chart.cs (13)
249
using (Bitmap bitmap = new Bitmap(this.
Width
, this.Height))
266
new Rectangle(0, 0, this.
Width
, this.Height),
280
metaGraphics.Clip = new Region(new Rectangle(0, 0, this.
Width
, this.Height));
320
image = new Bitmap(Math.Max(1,
Width
), Math.Max(1,Height));
346
Width = (int)Math.Ceiling(
Width
* newResolution / resolution);
375
offScreen.DrawRectangle(pen, 0, 0,
Width
, Height);
1604
if (this.
Width
<= 0 || this.Height <= 0)
1623
Bitmap image = new Bitmap(Math.Max(1,
Width
), Math.Max(1,Height));
1684
return _borderSkin.SkinStyle != BorderSkinStyle.None && this.
Width
> 20 && this.Height > 20;
1709
if (this.
Width
< 5 || this.Height < 5)
1885
ChartGraph.FillRectangleAbs( new RectangleF( 0, 0,
Width
-1 , Height-1 ),
1919
ChartGraph.FillRectangleAbs( new RectangleF( 0, 0,
Width
-1 , Height-1 ),
2645
this.InspectChartDimensions(this.
Width
, value);
Common\General\Title.cs (1)
1370
(titlePosition.Width == 0) ? Common.ChartPicture.
Width
: titlePosition.Width,