A Rounded Rectangle

Namespace:  RightEdge.Common.ChartObjects
Assembly:  Common (in Common.dll)
Version: 2008.1.0.0 (2008.1.0.0)

Syntax

C#
[SerializableAttribute]
public class ChartRoundedRectangle : ChartRectangle
Visual Basic (Declaration)
<SerializableAttribute> _
Public Class ChartRoundedRectangle _
	Inherits ChartRectangle
Visual C++
[SerializableAttribute]
public ref class ChartRoundedRectangle : public ChartRectangle

Remarks

This object will create a rectangle on the chart. The rectangle can be filled or transparent. This rectangle also adds the ability to have rounded edges. This is controlled using the RoundWidth property.

Examples

Create a rounded rectangle programmatically (C#)
CopyC#
// Setup our X coordinates.
DateTime leftPoint = DateTime.Now.AddDays(-7);
DateTime rightPoint = DateTime.Now;

// Create the rectangle object with the default color.
ChartRoundedRectangle rectangle = new ChartRoundedRectangle(new ChartPoint(leftPoint, 20.00), new ChartPoint(rightPoint, 25.00));

// Add this object to the chart.  "symbol" would equal the current symbol object in the system.
ChartObjects.Add(symbol, rectangle);

Inheritance Hierarchy

See Also