31 references to DpiY
System.Drawing (1)
commonui\System\Drawing\Advanced\Font.cs (1)
1005float pixelsPerPoint = (float) (graphics.DpiY / 72.0);
System.Web.DataVisualization (14)
Common\ChartTypes\BarChart.cs (1)
720size.Height = pixelSize * graph.Graphics.DpiY / 96;
Common\ChartTypes\BoxPlotChart.cs (1)
851size.Height = markerSize * graph.Graphics.DpiY / 96;
Common\ChartTypes\BubbleChart.cs (1)
187size.Height = markerSize * graph.Graphics.DpiY / 96;
Common\ChartTypes\ErrorBarChart.cs (1)
908size.Height = markerSize * graph.Graphics.DpiY / 96;
Common\ChartTypes\FastPointChart.cs (1)
336markerSize = (int)Math.Max(markerSize * graph.Graphics.DpiX / 96, markerSize * graph.Graphics.DpiY / 96);
Common\ChartTypes\PointChart.cs (1)
1419size.Height = markerSize * graph.Graphics.DpiY / 96;
Common\ChartTypes\RadarChart.cs (1)
964size.Height = markerSize * graph.Graphics.DpiY / 96;
Common\ChartTypes\StockChart.cs (4)
546markerSize.Height = point.MarkerSize * graph.Graphics.DpiY / 96; 1013markerSize.Height = point.MarkerSize * graph.Graphics.DpiY / 96; 1373markerSize.Height = point.MarkerSize * graph.Graphics.DpiY / 96; 1880markerSize.Height = point.MarkerSize * common.graph.Graphics.DpiY / 96;
Common\Utilities\ImageLoader.cs (3)
390size.Height = image.Height * graphics.DpiY / image.VerticalResolution; 407return graphics.DpiX == image.HorizontalResolution && graphics.DpiY == image.VerticalResolution; 413(int)(image.Height * graphics.DpiY / image.VerticalResolution)));
System.Windows.Forms.DataVisualization (16)
Common\ChartTypes\BarChart.cs (1)
720size.Height = pixelSize * graph.Graphics.DpiY / 96;
Common\ChartTypes\BoxPlotChart.cs (1)
851size.Height = markerSize * graph.Graphics.DpiY / 96;
Common\ChartTypes\BubbleChart.cs (1)
187size.Height = markerSize * graph.Graphics.DpiY / 96;
Common\ChartTypes\ErrorBarChart.cs (1)
908size.Height = markerSize * graph.Graphics.DpiY / 96;
Common\ChartTypes\FastPointChart.cs (1)
336markerSize = (int)Math.Max(markerSize * graph.Graphics.DpiX / 96, markerSize * graph.Graphics.DpiY / 96);
Common\ChartTypes\PointChart.cs (1)
1419size.Height = markerSize * graph.Graphics.DpiY / 96;
Common\ChartTypes\RadarChart.cs (1)
964size.Height = markerSize * graph.Graphics.DpiY / 96;
Common\ChartTypes\StockChart.cs (4)
546markerSize.Height = point.MarkerSize * graph.Graphics.DpiY / 96; 1013markerSize.Height = point.MarkerSize * graph.Graphics.DpiY / 96; 1373markerSize.Height = point.MarkerSize * graph.Graphics.DpiY / 96; 1880markerSize.Height = point.MarkerSize * common.graph.Graphics.DpiY / 96;
Common\Utilities\ImageLoader.cs (3)
390size.Height = image.Height * graphics.DpiY / image.VerticalResolution; 407return graphics.DpiX == image.HorizontalResolution && graphics.DpiY == image.VerticalResolution; 413(int)(image.Height * graphics.DpiY / image.VerticalResolution)));
WinForm\Utilities\Printing.cs (2)
256marginPixel.Y = (int)(marginPixel.Y * (ev.Graphics.DpiY / 100.0f)); 258marginPixel.Height = (int)(marginPixel.Height * (ev.Graphics.DpiY / 100.0f));