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)
6975
CustomPropertyRegistry
registry = (
CustomPropertyRegistry
)this.DataPointCustomProperties.Common.container.GetService(typeof(
CustomPropertyRegistry
));
Common\DataManager\DataSeries.cs (8)
657
if (pointDepth >
CustomPropertyRegistry
.MaxValueOfPixelAttribute)
659
throw (new InvalidOperationException(SR.ExceptionCustomAttributeMustBeInRange("PixelPointDepth", (0).ToString(CultureInfo.CurrentCulture),
CustomPropertyRegistry
.MaxValueOfPixelAttribute.ToString(CultureInfo.CurrentCulture))));
687
if (pointGapDepth >
CustomPropertyRegistry
.MaxValueOfPixelAttribute)
689
throw (new InvalidOperationException(SR.ExceptionCustomAttributeMustBeInRange("PixelPointGapDepth", (0).ToString(CultureInfo.CurrentCulture),
CustomPropertyRegistry
.MaxValueOfPixelAttribute.ToString(CultureInfo.CurrentCulture))));
756
if (minPixelPointWidth >
CustomPropertyRegistry
.MaxValueOfPixelAttribute)
758
throw (new InvalidOperationException(SR.ExceptionCustomAttributeMustBeInRange("MinPixelPointWidth", (0).ToString(CultureInfo.CurrentCulture),
CustomPropertyRegistry
.MaxValueOfPixelAttribute.ToString(CultureInfo.CurrentCulture))));
811
if (pixelPointWidth >
CustomPropertyRegistry
.MaxValueOfPixelAttribute)
813
throw (new InvalidOperationException(SR.ExceptionCustomAttributeMustBeInRange("PixelPointWidth", (0).ToString(CultureInfo.CurrentCulture),
CustomPropertyRegistry
.MaxValueOfPixelAttribute.ToString(CultureInfo.CurrentCulture))));
Common\General\ChartElement.cs (1)
1362
if (Utilities.
CustomPropertyRegistry
.IsXAxisQuantitativeChartTypes.Contains(series.ChartType) &&
Common\Utilities\CustomAttributesRegistry.cs (6)
431
if(serviceType == typeof(
CustomPropertyRegistry
))
646
attrInfo.MaxValue =
CustomPropertyRegistry
.MaxValueOfPixelAttribute;
659
attrInfo.MaxValue =
CustomPropertyRegistry
.MaxValueOfPixelAttribute;
672
attrInfo.MaxValue =
CustomPropertyRegistry
.MaxValueOfPixelAttribute;
1148
attrInfo.MaxValue =
CustomPropertyRegistry
.MaxValueOfPixelAttribute;
1162
attrInfo.MaxValue =
CustomPropertyRegistry
.MaxValueOfPixelAttribute;
WebForm\ChartWebControl.cs (1)
184
private
CustomPropertyRegistry
_customPropertyRegistry = null;