Square Cycle Line

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

Syntax

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

Examples

Create a square cycle line object programmatically (C#)
CopyC#
// Setup our X coordinates.
DateTime point1 = DateTime.Now.AddDays(-21);

// Create the square cycle line object.
ChartSquareCycleLine cycleLine = new ChartSquareCycleLine(new ChartPoint(point1, 25.00));

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

Inheritance Hierarchy

See Also