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



Glossary Item Box

Gets or sets a value that indicates that the PointAndFigure chart should attempt to draw the X and O values proportionally.
Visual Basic Copy Code
Imports Dundas.Charting.WebControl
   ...

' Set the series to draw the X and O values dis-proportionally.
Chart1.Series(0)("ProportionalSymbols") = "false"


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

// Set the series to draw the X and O values dis-proportionally.
Chart1.Series[0]["ProportionalSymbols"] = "false";


Remarks

Gets or sets a boolean value that indicates that the PointAndFigure chart should attempt to draw the X and O values proportionally. 

Custom Attribute Summary
Possible Values: True  - Values are proportional.
False  - Values are not proportional.
Default Value: True 
2D / 3D Limitations: No
Applies to Chart Elements: Series Objects
Applies to Chart Types: Point and Figure

 

Figure 1: ProportionalSymbols set to true shown left, and ProportionalSymbols set to false shown right.

See Also

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