18 references to ParseDouble
System.Web.DataVisualization (18)
Common\ChartTypes\BubbleChart.cs (8)
226 _minAll = Math.Min(_minAll, CommonElements.ParseDouble(ser[CustomPropertyName.BubbleScaleMin])); 230 _maxAll = Math.Max(_maxAll, CommonElements.ParseDouble(ser[CustomPropertyName.BubbleScaleMax])); 236 _maxPossibleBubbleSize = CommonElements.ParseDouble(ser[CustomPropertyName.BubbleMaxSize]); 246 _minPossibleBubbleSize = CommonElements.ParseDouble(ser[CustomPropertyName.BubbleMinSize]); 365 minAll = Math.Min(minAll, CommonElements.ParseDouble(ser[CustomPropertyName.BubbleScaleMin])); 369 maxAll = Math.Max(maxAll, CommonElements.ParseDouble(ser[CustomPropertyName.BubbleScaleMax])); 375 maxPossibleBubbleSize = CommonElements.ParseDouble(ser[CustomPropertyName.BubbleMaxSize]); 483 maxPossibleBubbleSize = CommonElements.ParseDouble(ser[CustomPropertyName.BubbleMaxSize]);
Common\Converters\DataManagerConverters.cs (1)
546 array[index] = CommonElements.ParseDouble(values[index]);
Common\DataManager\DataPoint.cs (2)
2082 return CommonElements.ParseDouble(stringValue); 2223this._yValue[i] = CommonElements.ParseDouble((string)yValue[i]);
Common\DataManager\DataSeries.cs (6)
646 pointDepth = CommonElements.ParseDouble(attribValue); 676 pointGapDepth = CommonElements.ParseDouble(attribValue); 725 pointPercentageWidth = CommonElements.ParseDouble(strWidth); 746 minPixelPointWidth = CommonElements.ParseDouble(attribValue); 775 maxPixelPointWidth = CommonElements.ParseDouble(attribValue); 801 pixelPointWidth = CommonElements.ParseDouble(attribValue);
Common\General\AxisScale.cs (1)
1154 pointWidthSize = CommonElements.ParseDouble(strWidth);