Implemented interface member:
method
GetYValue
System.Web.UI.DataVisualization.Charting.ChartTypes.IChartType.GetYValue(System.Web.UI.DataVisualization.Charting.CommonElements, System.Web.UI.DataVisualization.Charting.ChartArea, System.Web.UI.DataVisualization.Charting.Series, System.Web.UI.DataVisualization.Charting.DataPoint, System.Int32, System.Int32)
2 overrides of GetYValue
System.Web.DataVisualization (2)
Common\ChartTypes\ColumnChart.cs (1)
1055 override public double GetYValue(
Common\ChartTypes\StackedAreaChart.cs (1)
1571 override public double GetYValue(
21 references to GetYValue
System.Web.DataVisualization (21)
Common\ChartTypes\ColumnChart.cs (7)
384 double yValue = vAxis.GetLogValue( GetYValue(common, area, ser, point, index, (useTwoValues) ? 1 : 0) ); 403 double yValueStart = vAxis.GetLogValue( GetYValue(common, area, ser, point, index, 0 ) ); 729 double yValue = GetYValue(common, area, ser, pointEx.dataPoint, pointEx.index - 1, (useTwoValues) ? 1 : 0); 750 double yValueStart = vAxis.GetLogValue( GetYValue(common, area, ser, point, pointEx.index - 1, 0 ) ); 1066 return -(base.GetYValue(common, area, series, point, pointIndex, 1) - 1067 base.GetYValue(common, area, series, point, pointIndex, 0)); 1070 return base.GetYValue(common, area, series, point, pointIndex, yValueIndex);
Common\ChartTypes\KagiChart.cs (1)
643 double yValue = GetYValue(Common, Area, series, point, index, this.YValueIndex);
Common\ChartTypes\LineChart.cs (10)
498 double yValue = GetYValue(common, area, ser, point, index, this.YValueIndex); 660 yValuePrev = GetYValue(common, area, ser, point, index, 0); 1104 double current = GetYValue(Common, Area, series, series.Points[pointIndex], pointIndex, 0); 1110 previous = GetYValue(Common, Area, series, series.Points[pointIndex-1], pointIndex-1, 0); 1113 next = GetYValue(Common, Area, series, series.Points[pointIndex+1], pointIndex+1, 0); 1126 previous = GetYValue(Common, Area, series, series.Points[pointIndex-1], pointIndex-1, 0); 1139 next = GetYValue(Common, Area, series, series.Points[pointIndex + 1], pointIndex + 1, 0); 1165 double yValue = GetYValue(Common, Area, series, point, index, this.YValueIndex); 1361 double yValue = GetYValue(common, area, ser, pointEx.dataPoint, pointEx.index - 1, 0); 1362 double yValuePrev = GetYValue(common, area, ser, prevDataPointEx.dataPoint, prevDataPointEx.index - 1, 0);
Common\ChartTypes\PointChart.cs (3)
387 double yValue = GetYValue(common, area, ser, point, index - 1, YValueIndex); 1123 double yValue = GetYValue(common, area, ser, pointEx.dataPoint, pointEx.index - 1, YValueIndex); 1663 double yValue = GetYValue(common, area, series, point, index - 1, YValueIndex);