Dundas Chart for ASP.NET
CalloutLineColor Custom Attribute
See Also Send comments on this topic.
Custom Attributes > CalloutLineColor Custom Attribute



Glossary Item Box

Gets or sets the CalloutLineColor for the data point labels of Funnel or Pyramid charts.

 

Visual Basic Copy Code
Imports Dundas.Charting.WebControl
   ...

' Set the Series CalloutLineColor and DataPoint CalloutLineColor.
Chart1.Series(0)("CalloutLineColor") = "DeepPink"
Chart1.Series(0).Points(3)("CalloutLineColor") = "255, 255, 192"


C# Copy Code
using Dundas.Charting.WebControl;
  ...

// Set the Series CalloutLineColor and DataPoint CalloutLineColor.
Chart1.Series[0]["CalloutLineColor"] = "DeepPink";
Chart1.Series[0].Points[3]["CalloutLineColor"] = "255, 255, 192";


Remarks

This custom attribute only applies when the FunnelLabelStyle or PyramidLabelStyle is set to OutsideInColumn

Custom Attribute Summary
Possible Values: Any named Color, ARGB or RGB value.
Default Value: Color.Empty 
2D / 3D Limitations: No
Applies to Chart Element: Series and DataPoint Objects
Applies to Chart Types: Funnel, Pyramid

  


Figure 1: Setting CalloutLineColor for Series and DataPoint objects. 

See Also

Copyright © 2001 - 2009 Dundas Data Visualization, Inc. and others.