4 writes to CustomProperties
System.Web.DataVisualization (4)
Common\Converters\CustomAttributesConverters.cs (3)
123((DataPointCustomProperties)context.Instance).CustomProperties = stringValue; 147attributes.CustomProperties = stringValue; 606 customAttr.DataPointCustomProperties.CustomProperties = customAttr.DataPointCustomProperties.CustomProperties;
Common\DataManager\DataPoint.cs (1)
7054this.DataPointCustomProperties.CustomProperties = properties;
7 references to CustomProperties
System.Web.DataVisualization (7)
Common\Converters\CustomAttributesConverters.cs (2)
99 return ((CustomProperties)value).DataPointCustomProperties.CustomProperties; 606 customAttr.DataPointCustomProperties.CustomProperties = customAttr.DataPointCustomProperties.CustomProperties;
Common\DataManager\DataPoint.cs (1)
6971string customAttribute = this.DataPointCustomProperties.CustomProperties;
Common\Utilities\XmlSerializer.cs (4)
1646if (hasCustomProperties && !String.IsNullOrEmpty(dataPoint.CustomProperties) && IsSerializableContent("CustomProperties", objectToSerialize)) 1649attrib.Value = GetXmlValue(dataPoint.CustomProperties, dataPoint, "CustomProperties"); 2514if (hasCustomProperties && !String.IsNullOrEmpty(dataPoint.CustomProperties) && IsSerializableContent("CustomProperties", objectToSerialize)) 2516SerializeProperty(dataPoint.CustomProperties, dataPoint, "CustomProperties", writer);