43 references to DpiX
System.Web.DataVisualization (20)
Common\ChartTypes\BarChart.cs (1)
719size.Width = pixelSize * graph.Graphics.DpiX / 96;
Common\ChartTypes\BoxPlotChart.cs (1)
850size.Width = markerSize * graph.Graphics.DpiX / 96;
Common\ChartTypes\BubbleChart.cs (1)
186size.Width = markerSize * graph.Graphics.DpiX / 96;
Common\ChartTypes\ErrorBarChart.cs (1)
907size.Width = markerSize * graph.Graphics.DpiX / 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)
1418size.Width = markerSize * graph.Graphics.DpiX / 96;
Common\ChartTypes\RadarChart.cs (1)
963size.Width = markerSize * graph.Graphics.DpiX / 96;
Common\ChartTypes\StockChart.cs (4)
545markerSize.Width = point.MarkerSize * graph.Graphics.DpiX / 96; 1012markerSize.Width = point.MarkerSize * graph.Graphics.DpiX / 96; 1372markerSize.Width = point.MarkerSize * graph.Graphics.DpiX / 96; 1879markerSize.Width = point.MarkerSize * common.graph.Graphics.DpiX / 96;
Common\General\Chart.cs (1)
2119border3D.Resolution = chartGraph.Graphics.DpiX;
Common\General\ChartGraphics.cs (1)
4917borderTypeInterface.Resolution = this.Graphics.DpiX;
Common\General\Legend.cs (1)
6212dpi = Common.graph.Graphics.DpiX;
Common\General\LegendColumns.cs (3)
2339int maxShadowOffset = (int)Math.Round((3 * chartGraph.Graphics.DpiX) / 96); 2340int maxBorderWidth = (int)Math.Round((3 * chartGraph.Graphics.DpiX) / 96); 2344int maxBorderWidthRect = (int)Math.Round((2 * chartGraph.Graphics.DpiX) / 96);
Common\Utilities\ImageLoader.cs (3)
389size.Width = image.Width * graphics.DpiX / image.HorizontalResolution; 407return graphics.DpiX == image.HorizontalResolution && graphics.DpiY == image.VerticalResolution; 412Bitmap scaledImage = new Bitmap(image, new Size((int)(image.Width * graphics.DpiX / image.HorizontalResolution),
System.Windows.Forms (1)
winforms\Managed\System\WinForms\ButtonInternal\CheckableControlBaseAdapter.cs (1)
91return g.DpiX / 96;
System.Windows.Forms.DataVisualization (22)
Common\ChartTypes\BarChart.cs (1)
719size.Width = pixelSize * graph.Graphics.DpiX / 96;
Common\ChartTypes\BoxPlotChart.cs (1)
850size.Width = markerSize * graph.Graphics.DpiX / 96;
Common\ChartTypes\BubbleChart.cs (1)
186size.Width = markerSize * graph.Graphics.DpiX / 96;
Common\ChartTypes\ErrorBarChart.cs (1)
907size.Width = markerSize * graph.Graphics.DpiX / 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)
1418size.Width = markerSize * graph.Graphics.DpiX / 96;
Common\ChartTypes\RadarChart.cs (1)
963size.Width = markerSize * graph.Graphics.DpiX / 96;
Common\ChartTypes\StockChart.cs (4)
545markerSize.Width = point.MarkerSize * graph.Graphics.DpiX / 96; 1012markerSize.Width = point.MarkerSize * graph.Graphics.DpiX / 96; 1372markerSize.Width = point.MarkerSize * graph.Graphics.DpiX / 96; 1879markerSize.Width = point.MarkerSize * common.graph.Graphics.DpiX / 96;
Common\General\Chart.cs (1)
2119border3D.Resolution = chartGraph.Graphics.DpiX;
Common\General\ChartGraphics.cs (1)
4917borderTypeInterface.Resolution = this.Graphics.DpiX;
Common\General\Legend.cs (1)
6212dpi = Common.graph.Graphics.DpiX;
Common\General\LegendColumns.cs (3)
2339int maxShadowOffset = (int)Math.Round((3 * chartGraph.Graphics.DpiX) / 96); 2340int maxBorderWidth = (int)Math.Round((3 * chartGraph.Graphics.DpiX) / 96); 2344int maxBorderWidthRect = (int)Math.Round((2 * chartGraph.Graphics.DpiX) / 96);
Common\Utilities\ImageLoader.cs (3)
389size.Width = image.Width * graphics.DpiX / image.HorizontalResolution; 407return graphics.DpiX == image.HorizontalResolution && graphics.DpiY == image.VerticalResolution; 412Bitmap scaledImage = new Bitmap(image, new Size((int)(image.Width * graphics.DpiX / image.HorizontalResolution),
WinForm\Utilities\Printing.cs (2)
255marginPixel.X = (int)(marginPixel.X * (ev.Graphics.DpiX / 100.0f)); 257marginPixel.Width = (int)(marginPixel.Width * (ev.Graphics.DpiX / 100.0f));