An object that draws channel lines based on the Standard Error calculation.

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

Syntax

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

Remarks

This object is not a free form channel. It uses the standard error calculation to determine the direction of the lines. The first point is the left point. The second point specifies the right point of the channels.

Examples

Create a std error channel object programmatically (C#)
CopyC#
// Setup our X coordinates.
DateTime leftPoint = DateTime.Now.AddDays(-14);
DateTime rightPoint = DateTime.Today;

// Create the std error channel object
ChartStdErrorChannel channel = new ChartStdErrorChannel(new ChartPoint(leftPoint, 25.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, channel);

Inheritance Hierarchy

See Also