15 references to EmptyPointValue
System.Windows.Forms.DataVisualization (15)
Common\ChartTypes\BarChart.cs (4)
1218 if( series.EmptyPointStyle.IsCustomPropertySet(CustomPropertyName.EmptyPointValue) ) 1220 emptyPointValue = series.EmptyPointStyle[CustomPropertyName.EmptyPointValue]; 1222 else if( series.IsCustomPropertySet(CustomPropertyName.EmptyPointValue) ) 1224 emptyPointValue = series[CustomPropertyName.EmptyPointValue];
Common\ChartTypes\PointAndFigureChart.cs (2)
284 pointAndFigureSeries.DeleteCustomProperty(CustomPropertyName.EmptyPointValue); 777 pointAndFigureSeries[CustomPropertyName.EmptyPointValue] = "Zero";
Common\ChartTypes\PointChart.cs (4)
1552 if( series.EmptyPointStyle.IsCustomPropertySet(CustomPropertyName.EmptyPointValue) ) 1554 emptyPointValue = series.EmptyPointStyle[CustomPropertyName.EmptyPointValue]; 1556 else if( series.IsCustomPropertySet(CustomPropertyName.EmptyPointValue) ) 1558 emptyPointValue = series[CustomPropertyName.EmptyPointValue];
Common\ChartTypes\RadarChart.cs (4)
1448 if( series.EmptyPointStyle.IsCustomPropertySet(CustomPropertyName.EmptyPointValue) ) 1450 emptyPointValue = series.EmptyPointStyle[CustomPropertyName.EmptyPointValue]; 1452 else if( series.IsCustomPropertySet(CustomPropertyName.EmptyPointValue) ) 1454 emptyPointValue = series[CustomPropertyName.EmptyPointValue];
Common\Utilities\CustomAttributesRegistry.cs (1)
510 CustomPropertyName.EmptyPointValue,