1 write to Height
System.Windows.Forms.DataVisualization (1)
Common\General\Chart.cs (1)
347
Height
= (int)Math.Ceiling(Height * newResolution / resolution);
25 references to Height
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)
345
double yPixelConverter = (graph.Common.ChartPicture.
Height
- 1.0) / 100.0;
Common\ChartTypes\FastPointChart.cs (1)
348
double yPixelConverter = (graph.Common.ChartPicture.
Height
- 1.0) / 100.0;
Common\ChartTypes\KagiChart.cs (1)
658
(float)(yPosition * (graph.Common.ChartPicture.
Height
- 1) / 100F));
Common\ChartTypes\LineChart.cs (4)
398
float chartHeightPercentage = (graph.Common.ChartPicture.
Height
- 1) / 100F;
988
RectangleF rect = new RectangleF(0, 0, graph.Common.ChartPicture.Width, graph.Common.ChartPicture.
Height
);
993
adjustedPoint2 = rect.Contains(pt2) ? pt2 : GetIntersectionY(pt1, pt2, graph.Common.ChartPicture.
Height
);
1182
(float)yPosition * (graph.Common.ChartPicture.
Height
- 1) / 100F);
Common\General\AxisScale.cs (2)
994
val *= (this.Common.ChartPicture.
Height
- 1) / 100F;
1086
val *= 100F / ((float)(this.Common.ChartPicture.
Height
- 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
));
347
Height = (int)Math.Ceiling(
Height
* 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 ),
2598
this.InspectChartDimensions(value, this.
Height
);
Common\General\Title.cs (1)
1371
(titlePosition.Height == 0) ? Common.ChartPicture.
Height
: titlePosition.Height);