4 writes to Height
System.Web.DataVisualization (4)
Common\General\Chart.cs (1)
347Height = (int)Math.Ceiling(Height * newResolution / resolution);
WebForm\ChartWebControl.cs (3)
1054this.chartPicture.Height = position.Height; 1071this.chartPicture.Height = oldHeight; 2461 chartPicture.Height = (int)value.Value;
28 references to Height
System.Web.DataVisualization (28)
Common\Annotation\TextAnnotation.cs (2)
937graphicsImage = 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)
398float chartHeightPercentage = (graph.Common.ChartPicture.Height - 1) / 100F; 988RectangleF rect = new RectangleF(0, 0, graph.Common.ChartPicture.Width, graph.Common.ChartPicture.Height); 993adjustedPoint2 = 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\AxisScaleSegments.cs (1)
520brush = graph.GetGradientBrush(new RectangleF(0, 0, chart.chartPicture.Width - 1, chart.chartPicture.Height - 1), chart.BackColor, chart.BackSecondaryColor, chart.BackGradientStyle);
Common\General\Chart.cs (13)
249using (Bitmap bitmap = new Bitmap(this.Width, this.Height)) 266new Rectangle(0, 0, this.Width, this.Height), 280metaGraphics.Clip = new Region(new Rectangle(0, 0, this.Width, this.Height)); 320image = new Bitmap(Math.Max(1,Width), Math.Max(1,Height)); 347Height = (int)Math.Ceiling(Height * newResolution / resolution); 375offScreen.DrawRectangle(pen, 0, 0, Width, Height); 1604if (this.Width <= 0 || this.Height <= 0) 1623Bitmap image = new Bitmap(Math.Max(1,Width), Math.Max(1,Height)); 1684return _borderSkin.SkinStyle != BorderSkinStyle.None && this.Width > 20 && this.Height > 20; 1709if (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 ), 2598this.InspectChartDimensions(value, this.Height);
Common\General\Title.cs (1)
1371(titlePosition.Height == 0) ? Common.ChartPicture.Height : titlePosition.Height);
WebForm\ChartWebControl.cs (2)
1048int oldHeight = this.chartPicture.Height; 2453 return new Unit(chartPicture.Height);