2 writes to vAxis
System.Web.DataVisualization (2)
Common\ChartTypes\BoxPlotChart.cs (2)
273 vAxis = area.GetAxis(AxisName.Y, ser.YAxisType, ser.YSubAxisName); 1078 vAxis = area.GetAxis(AxisName.Y, ser.YAxisType, ser.YSubAxisName);
86 references to vAxis
System.Web.DataVisualization (86)
Common\ChartTypes\BoxPlotChart.cs (86)
350 double yValue0 = vAxis.GetLogValue( point.YValues[0] ); 351 double yValue1 = vAxis.GetLogValue( point.YValues[1] ); 357 (yValue0 < vAxis.ViewMinimum && yValue1 < vAxis.ViewMinimum) || 358 (yValue0 > vAxis.ViewMaximum && yValue1 > vAxis.ViewMaximum) ) 365 double low = vAxis.GetLogValue( point.YValues[0] ); 366 double high = vAxis.GetLogValue( point.YValues[1] ); 369 if( high > vAxis.ViewMaximum ) 371 high = vAxis.ViewMaximum; 373 if( high < vAxis.ViewMinimum ) 375 high = vAxis.ViewMinimum; 377 high = (float)vAxis.GetLinearPosition(high); 379 if( low > vAxis.ViewMaximum ) 381 low = vAxis.ViewMaximum; 383 if( low < vAxis.ViewMinimum ) 385 low = vAxis.ViewMinimum; 387 low = vAxis.GetLinearPosition(low); 420 new PointF(xPosition, (float)vAxis.GetPosition( point.YValues[2] )), 430 new PointF(xPosition, (float)vAxis.GetPosition( point.YValues[3] )), 438 rectSize.Y = (float)vAxis.GetPosition( point.YValues[3] ); 439 rectSize.Height = (float)Math.Abs(rectSize.Y - vAxis.GetPosition( point.YValues[2] )); 507 new PointF(rectSize.Left + relBorderWidth.Width, (float)vAxis.GetPosition( point.YValues[4])), 508 new PointF(rectSize.Right - relBorderWidth.Width, (float)vAxis.GetPosition( point.YValues[4])), 539 float medianValue = (float)vAxis.GetPosition( point.YValues[5]); 612 double yValue0 = vAxis.GetLogValue( point.YValues[0] ); 613 double yValue1 = vAxis.GetLogValue( point.YValues[1] ); 619 (yValue0 < vAxis.ViewMinimum && yValue1 < vAxis.ViewMinimum) || 620 (yValue0 > vAxis.ViewMaximum && yValue1 > vAxis.ViewMaximum) ) 632 double currentValue = vAxis.GetLogValue( point.YValues[valueIndex] ); 633 if( currentValue > vAxis.ViewMaximum ) 635 currentValue = vAxis.ViewMaximum; 637 if( currentValue < vAxis.ViewMinimum ) 639 currentValue = vAxis.ViewMinimum; 641 currentValue = (float)vAxis.GetLinearPosition(currentValue); 704 double yPosition = vAxis.GetLogValue( point.YValues[0] ); 708 yPosition = vAxis.GetLogValue( point.YValues[1] ); 721 yPosition = vAxis.GetLogValue( point.YValues[valueIndex] ); 754 if( yPosition > vAxis.ViewMaximum || yPosition < vAxis.ViewMinimum) 758 yPosition = (float)vAxis.GetLinearPosition(yPosition); 1130 double yValue0 = vAxis.GetLogValue( point.YValues[0] ); 1131 double yValue1 = vAxis.GetLogValue( point.YValues[1] ); 1137 (yValue0 < vAxis.ViewMinimum && yValue1 < vAxis.ViewMinimum) || 1138 (yValue0 > vAxis.ViewMaximum && yValue1 > vAxis.ViewMaximum) ) 1145 double high = vAxis.GetLogValue( point.YValues[1] ); 1146 double low = vAxis.GetLogValue( point.YValues[0] ); 1148 if( high > vAxis.ViewMaximum ) 1150 high = vAxis.ViewMaximum; 1152 if( high < vAxis.ViewMinimum ) 1154 high = vAxis.ViewMinimum; 1156 high = (float)vAxis.GetLinearPosition(high); 1158 if( low > vAxis.ViewMaximum ) 1160 low = vAxis.ViewMaximum; 1162 if( low < vAxis.ViewMinimum ) 1164 low = vAxis.ViewMinimum; 1166 low = vAxis.GetLinearPosition(low); 1175 points[2] = new Point3D(xPosition, (float)vAxis.GetPosition(point.YValues[2]), seriesZPosition+seriesDepth/2f); 1176 points[3] = new Point3D(xPosition, (float)vAxis.GetPosition(point.YValues[3]), seriesZPosition+seriesDepth/2f); 1177 points[4] = new Point3D(xPosition, (float)vAxis.GetPosition(point.YValues[4]), seriesZPosition+seriesDepth/2f); 1178 points[5] = new Point3D(xPosition, (float)vAxis.GetPosition(point.YValues[5]), seriesZPosition+seriesDepth/2f); 1401 double yValue0 = vAxis.GetLogValue( point.YValues[0] ); 1402 double yValue1 = vAxis.GetLogValue( point.YValues[1] ); 1408 (yValue0 < vAxis.ViewMinimum && yValue1 < vAxis.ViewMinimum) || 1409 (yValue0 > vAxis.ViewMaximum && yValue1 > vAxis.ViewMaximum) ) 1416 double high = vAxis.GetLogValue( point.YValues[1] ); 1417 double low = vAxis.GetLogValue( point.YValues[0] ); 1418 if( high > vAxis.ViewMaximum ) 1420 high = vAxis.ViewMaximum; 1422 if( high < vAxis.ViewMinimum ) 1424 high = vAxis.ViewMinimum; 1426 high = (float)vAxis.GetLinearPosition(high); 1428 if( low > vAxis.ViewMaximum ) 1430 low = vAxis.ViewMaximum; 1432 if( low < vAxis.ViewMinimum ) 1434 low = vAxis.ViewMinimum; 1436 low = vAxis.GetLinearPosition(low); 1492 double yPosition = vAxis.GetLogValue( point.YValues[0] ); 1496 yPosition = vAxis.GetLogValue( point.YValues[1] ); 1509 yPosition = vAxis.GetLogValue( point.YValues[valueIndex] );