Equal Cycle Line
Namespace:
RightEdge.Common.ChartObjectsAssembly: Common (in Common.dll) Version: 2010.1.0.0 (2010.1.0.0)
Syntax
| C# |
|---|
[SerializableAttribute] public class ChartEqualCycleLine : ChartCycleLineBase |
| Visual Basic (Declaration) |
|---|
<SerializableAttribute> _ Public Class ChartEqualCycleLine _ Inherits ChartCycleLineBase |
| Visual C++ |
|---|
[SerializableAttribute] public ref class ChartEqualCycleLine : public ChartCycleLineBase |
Remarks
Draws a set of lines that are the same distance from each other vertically.
The distance is set by the initial two points. For example, if the distance
between point 1 and point 2 is 5, there will be lines drawn at position 0,
5, 10, 15, 20, 25, etc.
Examples
Create an equal cycle line object programmatically (C#)
CopyC#
// Setup our X coordinates. DateTime point1 = DateTime.Now.AddDays(-5); DateTime point2 = DateTime.Now; // Create the equal cycle line object. ChartEqualCycleLine cycleLine = new ChartEqualCycleLine(new ChartPoint(point1, 25.00), new ChartPoint(point2, 25.00)); // Add this object to the chart. "symbol" would equal the current symbol object in the system. ChartObjects.Add(symbol, cycleLine);
Inheritance Hierarchy
System..::.Object
RightEdge.Common.ChartObjects..::.ChartObjectBase
RightEdge.Common.ChartObjects..::.ChartCycleLineBase
RightEdge.Common.ChartObjects..::.ChartEqualCycleLine
RightEdge.Common.ChartObjects..::.ChartObjectBase
RightEdge.Common.ChartObjects..::.ChartCycleLineBase
RightEdge.Common.ChartObjects..::.ChartEqualCycleLine