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



Glossary Item Box

Gets or sets the DataPoint drawing style (shape) of one or more data points.

 

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

' Set the Series DrawingStyle to Cylinder.
Chart1.Series(0)("DrawingStyle") = "Cylinder"


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

// Set the Series DrawingStyle to Cylinder.
Chart1.Series[0]["DrawingStyle"] = "Cylinder";


Remarks

Gets or sets the DataPoint drawing style (shape) of one or more data points. 

Custom Attribute Summary
Possible Values: Cylinder - Data points are drawn as cylinders.
Emboss - Data points are drawn with an embossed effect.
LightToDark - Data points are drawn with a light-to-dark effect.
Wedge - Data points are drawn with a wedge effect.
Default  - Data points are drawn as cubes.
Default Value: Default 
2D / 3D Limitations: None.
Applies to Chart Element: Series and DataPoint Objects
Applies to Chart Types: Bar, Column, Stacked Bar, 100% Stacked Bar, Stacked Column, 100% Stacked Column, Gantt, RangeColumn

  


Figure 1: Default DrawingStyle.

 


Figure 2: Cylinder DrawingStyle.

See Also

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