1 instantiation of CustomPropertyRegistry
System.Web.DataVisualization (1)
WebForm\ChartWebControl.cs (1)
258 _customPropertyRegistry = new CustomPropertyRegistry();
22 references to CustomPropertyRegistry
System.Web.DataVisualization (22)
Common\Converters\CustomAttributesConverters.cs (3)
194 CustomPropertyRegistry registry = (CustomPropertyRegistry)series.Common.container.GetService(typeof(CustomPropertyRegistry));
Common\DataManager\DataPoint.cs (3)
6975CustomPropertyRegistry registry = (CustomPropertyRegistry)this.DataPointCustomProperties.Common.container.GetService(typeof(CustomPropertyRegistry));
Common\DataManager\DataSeries.cs (8)
657if (pointDepth > CustomPropertyRegistry.MaxValueOfPixelAttribute) 659throw (new InvalidOperationException(SR.ExceptionCustomAttributeMustBeInRange("PixelPointDepth", (0).ToString(CultureInfo.CurrentCulture), CustomPropertyRegistry.MaxValueOfPixelAttribute.ToString(CultureInfo.CurrentCulture)))); 687if (pointGapDepth > CustomPropertyRegistry.MaxValueOfPixelAttribute) 689throw (new InvalidOperationException(SR.ExceptionCustomAttributeMustBeInRange("PixelPointGapDepth", (0).ToString(CultureInfo.CurrentCulture), CustomPropertyRegistry.MaxValueOfPixelAttribute.ToString(CultureInfo.CurrentCulture)))); 756if (minPixelPointWidth > CustomPropertyRegistry.MaxValueOfPixelAttribute) 758throw (new InvalidOperationException(SR.ExceptionCustomAttributeMustBeInRange("MinPixelPointWidth", (0).ToString(CultureInfo.CurrentCulture), CustomPropertyRegistry.MaxValueOfPixelAttribute.ToString(CultureInfo.CurrentCulture)))); 811if (pixelPointWidth > CustomPropertyRegistry.MaxValueOfPixelAttribute) 813throw (new InvalidOperationException(SR.ExceptionCustomAttributeMustBeInRange("PixelPointWidth", (0).ToString(CultureInfo.CurrentCulture), CustomPropertyRegistry.MaxValueOfPixelAttribute.ToString(CultureInfo.CurrentCulture))));
Common\General\ChartElement.cs (1)
1362if (Utilities.CustomPropertyRegistry.IsXAxisQuantitativeChartTypes.Contains(series.ChartType) &&
Common\Utilities\CustomAttributesRegistry.cs (6)
431 if(serviceType == typeof(CustomPropertyRegistry)) 646attrInfo.MaxValue = CustomPropertyRegistry.MaxValueOfPixelAttribute; 659attrInfo.MaxValue = CustomPropertyRegistry.MaxValueOfPixelAttribute; 672attrInfo.MaxValue = CustomPropertyRegistry.MaxValueOfPixelAttribute; 1148attrInfo.MaxValue = CustomPropertyRegistry.MaxValueOfPixelAttribute; 1162attrInfo.MaxValue = CustomPropertyRegistry.MaxValueOfPixelAttribute;
WebForm\ChartWebControl.cs (1)
184private CustomPropertyRegistry _customPropertyRegistry = null;