17 references to DataPointCustomProperties
System.Windows.Forms.DataVisualization (17)
Common\Converters\CustomAttributesConverters.cs (14)
99 return ((CustomProperties)value).DataPointCustomProperties.CustomProperties; 130CustomProperties newAttributes = new CustomProperties(((CustomProperties)context.Instance).DataPointCustomProperties); 189 Series series = (attr.DataPointCustomProperties is Series) ? ( (Series) attr.DataPointCustomProperties) : attr.DataPointCustomProperties.series; 251obj = customProperties.DataPointCustomProperties; 540 string stringValue = customAttr.DataPointCustomProperties[this._name]; 588 if( !(customAttr.DataPointCustomProperties is DataPoint) || 589 !((DataPoint)customAttr.DataPointCustomProperties).series.IsCustomPropertySet(this._name) ) 592 if(customAttr.DataPointCustomProperties.IsCustomPropertySet(this._name)) 594 customAttr.DataPointCustomProperties.DeleteCustomProperty(this._name); 603 customAttr.DataPointCustomProperties[this._name] = stringValue; 606 customAttr.DataPointCustomProperties.CustomProperties = customAttr.DataPointCustomProperties.CustomProperties;
Common\DataManager\DataPoint.cs (3)
6971string customAttribute = this.DataPointCustomProperties.CustomProperties; 6975CustomPropertyRegistry registry = (CustomPropertyRegistry)this.DataPointCustomProperties.Common.container.GetService(typeof(CustomPropertyRegistry)); 7054this.DataPointCustomProperties.CustomProperties = properties;