69 references to EmptyPointStyle
System.Web.DataVisualization (69)
Common\ChartTypes\BarChart.cs (2)
1218 if( series.EmptyPointStyle.IsCustomPropertySet(CustomPropertyName.EmptyPointValue) ) 1220 emptyPointValue = series.EmptyPointStyle[CustomPropertyName.EmptyPointValue];
Common\ChartTypes\FastLineChart.cs (3)
317 Pen emptyLinePen = new Pen(series.EmptyPointStyle.Color, series.EmptyPointStyle.BorderWidth); 318 emptyLinePen.DashStyle = graph.GetPenStyle( series.EmptyPointStyle.BorderDashStyle );
Common\ChartTypes\FastPointChart.cs (8)
314 SolidBrush emptyMarkerBrush = new SolidBrush( ((series.EmptyPointStyle.MarkerColor.IsEmpty) ? series.EmptyPointStyle.Color : series.EmptyPointStyle.MarkerColor) ); 323 if(!series.EmptyPointStyle.MarkerBorderColor.IsEmpty && series.EmptyPointStyle.MarkerBorderWidth > 0) 325 emptyBorderPen = new Pen(series.EmptyPointStyle.MarkerBorderColor, series.EmptyPointStyle.MarkerBorderWidth); 350 MarkerStyle emptyMarkerStyle = series.EmptyPointStyle.MarkerStyle;
Common\ChartTypes\PointChart.cs (2)
1552 if( series.EmptyPointStyle.IsCustomPropertySet(CustomPropertyName.EmptyPointValue) ) 1554 emptyPointValue = series.EmptyPointStyle[CustomPropertyName.EmptyPointValue];
Common\ChartTypes\RadarChart.cs (2)
1448 if( series.EmptyPointStyle.IsCustomPropertySet(CustomPropertyName.EmptyPointValue) ) 1450 emptyPointValue = series.EmptyPointStyle[CustomPropertyName.EmptyPointValue];
Common\ChartTypes\StackedAreaChart.cs (2)
1234pointProperties = ser.EmptyPointStyle; 1275pointProperties = ser.EmptyPointStyle;
Common\DataManager\DataPoint.cs (46)
2960 return (string)series.EmptyPointStyle.properties[name]; 3029 return series.EmptyPointStyle.properties[(int)attrib]; 3229 return (string)series.EmptyPointStyle.properties[name]; 3273 return (string)series.EmptyPointStyle.GetAttributeObject(CommonCustomProperties.Label); 3331 return (string)series.EmptyPointStyle.GetAttributeObject(CommonCustomProperties.AxisLabel); 3396 return (string)series.EmptyPointStyle.GetAttributeObject(CommonCustomProperties.LabelFormat); 3453 return (bool)series.EmptyPointStyle.GetAttributeObject(CommonCustomProperties.IsValueShownAsLabel); 3506 return (Color)series.EmptyPointStyle.GetAttributeObject(CommonCustomProperties.Color); 3568 return (Color)series.EmptyPointStyle.GetAttributeObject(CommonCustomProperties.BorderColor); 3618 return (ChartDashStyle)series.EmptyPointStyle.GetAttributeObject(CommonCustomProperties.BorderDashStyle); 3669 return (int)series.EmptyPointStyle.GetAttributeObject(CommonCustomProperties.BorderWidth); 3725 return (string)series.EmptyPointStyle.GetAttributeObject(CommonCustomProperties.BackImage); 3785 return (ChartImageWrapMode)series.EmptyPointStyle.GetAttributeObject(CommonCustomProperties.BackImageWrapMode); 3842 return (Color)series.EmptyPointStyle.GetAttributeObject(CommonCustomProperties.BackImageTransparentColor); 3894 return (ChartImageAlignmentStyle)series.EmptyPointStyle.GetAttributeObject(CommonCustomProperties.BackImageAlignment); 3946 return (GradientStyle)series.EmptyPointStyle.GetAttributeObject(CommonCustomProperties.BackGradientStyle); 3999 return (Color)series.EmptyPointStyle.GetAttributeObject(CommonCustomProperties.BackSecondaryColor); 4051 return (ChartHatchStyle)series.EmptyPointStyle.GetAttributeObject(CommonCustomProperties.BackHatchStyle); 4104 return series.EmptyPointStyle.Font; 4156 return (Color)series.EmptyPointStyle.GetAttributeObject(CommonCustomProperties.LabelForeColor); 4213 return (int)series.EmptyPointStyle.GetAttributeObject(CommonCustomProperties.LabelAngle); 4270 return (MarkerStyle)series.EmptyPointStyle.GetAttributeObject(CommonCustomProperties.MarkerStyle); 4328 return (int)series.EmptyPointStyle.GetAttributeObject(CommonCustomProperties.MarkerSize); 4381 return (string)series.EmptyPointStyle.GetAttributeObject(CommonCustomProperties.MarkerImage); 4441 return (Color)series.EmptyPointStyle.GetAttributeObject(CommonCustomProperties.MarkerImageTransparentColor); 4495 return (Color)series.EmptyPointStyle.GetAttributeObject(CommonCustomProperties.MarkerColor); 4549 return (Color)series.EmptyPointStyle.GetAttributeObject(CommonCustomProperties.MarkerBorderColor); 4603 return (int)series.EmptyPointStyle.GetAttributeObject(CommonCustomProperties.MarkerBorderWidth); 4834 return (string)series.EmptyPointStyle.GetAttributeObject(CommonCustomProperties.ToolTip); 4888 return (string)series.EmptyPointStyle.GetAttributeObject(CommonCustomProperties.Url); 4938 return (string)series.EmptyPointStyle.GetAttributeObject(CommonCustomProperties.MapAreaAttributes); 4977return (string)series.EmptyPointStyle.GetAttributeObject(CommonCustomProperties.PostBackValue); 5046 return (bool)series.EmptyPointStyle.GetAttributeObject(CommonCustomProperties.IsVisibleInLegend); 5106 return (string)series.EmptyPointStyle.GetAttributeObject(CommonCustomProperties.LegendText); 5164 return (string)series.EmptyPointStyle.GetAttributeObject(CommonCustomProperties.LegendToolTip); 5212 return (Color)series.EmptyPointStyle.GetAttributeObject(CommonCustomProperties.LabelBackColor); 5271 return (Color)series.EmptyPointStyle.GetAttributeObject(CommonCustomProperties.LabelBorderColor); 5328 return (ChartDashStyle)series.EmptyPointStyle.GetAttributeObject(CommonCustomProperties.LabelBorderDashStyle); 5380 return (int)series.EmptyPointStyle.GetAttributeObject(CommonCustomProperties.LabelBorderWidth); 5451 return (string)series.EmptyPointStyle.GetAttributeObject(CommonCustomProperties.LabelToolTip); 5505 return (string)series.EmptyPointStyle.GetAttributeObject(CommonCustomProperties.LegendUrl); 5558 return (string)series.EmptyPointStyle.GetAttributeObject(CommonCustomProperties.LegendMapAreaAttributes); 5598return (string)series.EmptyPointStyle.GetAttributeObject(CommonCustomProperties.LegendPostBackValue); 5661 return (string)series.EmptyPointStyle.GetAttributeObject(CommonCustomProperties.LabelUrl); 5713 return (string)series.EmptyPointStyle.GetAttributeObject(CommonCustomProperties.LabelMapAreaAttributes); 5753return (string)series.EmptyPointStyle.GetAttributeObject(CommonCustomProperties.LabelPostBackValue);
Common\General\ChartGraphics3D.cs (4)
2507 if(leftPointAttr.dataPoint.series.EmptyPointStyle.Color == color || 2508 leftPointAttr.dataPoint.series.EmptyPointStyle.Color.A == 255) 2563 if(rightPointAttr.dataPoint.series.EmptyPointStyle.Color == color || 2564 rightPointAttr.dataPoint.series.EmptyPointStyle.Color.A == 255)