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



Glossary Item Box

Indicates that the Pie or Doughnut data point is exploded.
Visual Basic Copy Code
Imports Dundas.Charting.WebControl
   ...

' Set Exploded for Point 3 but not the entire series.
Chart1.Series(0).Points(3)("Exploded") = "True"


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

// Set Exploded for Point 3 but not the entire series.
Chart1.Series[0].Points[3]["Exploded"] = "true";

                    

Remarks

Gets or sets a textual boolean value that indicates whether the Pie or Doughnut data point is exploded (separated from the rest of the pie or doughnut). 

Custom Attribute Summary
Possible Values: True or False 
Default Value: False
2D / 3D Limitations: No
Applies to Chart Element: DataPoint Objects
Applies to Chart Types: Pie, Doughnut

 


Figure 1: Pie chart with exploded set to True.

See Also

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