9 writes to _yValue
System.Web.DataVisualization (9)
Common\DataManager\DataPoint.cs (9)
1830 _yValue = new double[1]; 1840 _yValue = new double[series.YValuesPerPoint]; 1855 this._yValue = new double[1]; 1873this._yValue = yValues; 1896_yValue = new double[values.Length]; 2213this._yValue = new double[yValue.Length]; 2349 clonePoint._yValue = new double[this._yValue.Length]; 2381 _yValue = newArray; 2747 _yValue = value;
26 references to _yValue
System.Web.DataVisualization (26)
Common\DataManager\DataPoint.cs (26)
1856 this._yValue[0] = yValue; 1900_yValue[index] = CommonElements.ParseDouble(values[index], true); 2154 foreach(double d in this._yValue) 2167 for(int valueIndex = 0; valueIndex < this._yValue.Length; valueIndex++) 2169 this._yValue[valueIndex] = 0.0; 2211if (this._yValue.Length < yValue.Length) 2223this._yValue[i] = CommonElements.ParseDouble((string)yValue[i]); 2251 this._yValue[i] = DateTime.Now.ToOADate(); 2255 this._yValue[i] = ((DateTime)yValue[i]).ToOADate(); 2263 this._yValue[i] = ConvertValue(yValue[i]); 2277 this._yValue[i] = Math.Floor(this._yValue[i]); 2281 this._yValue[i] = this._xValue - Math.Floor(this._yValue[i]); 2305 this._yValue[i] = date.ToOADate(); 2326 this._yValue[i] = time.ToOADate(); 2349 clonePoint._yValue = new double[this._yValue.Length]; 2350 this._yValue.CopyTo(clonePoint._yValue, 0); 2373 if(_yValue != null) 2375 for(int i = 0; i < ((_yValue.Length < newSize) ? _yValue.Length : newSize); i++) 2377 newArray[i] = _yValue[i]; 2733 return _yValue; 2740 for(int i=0; i < _yValue.Length; i++) 2742 _yValue[i] = 0;