TwoHistogramsAndLineAddLine Method |
LightningChart .NET Help
Adds a line to the indicator.
Namespace:
Arction.CustomControls.Trader.WinForms.TechnicalIndicators
Assembly:
Arction.WinForms.TradingCharts (in Arction.WinForms.TradingCharts.dll) Version: 10.3.1
Syntaxpublic void AddLine(
DateTime[] xValues,
double[] yValues,
double lineWidth,
Color color
)
Public Sub AddLine (
xValues As DateTime(),
yValues As Double(),
lineWidth As Double,
color As Color
)
public:
void AddLine(
array<DateTime>^ xValues,
array<double>^ yValues,
double lineWidth,
Color color
)
Parameters
- xValues
- Type: SystemDateTime
Line X-values as DateTimes - yValues
- Type: SystemDouble
Y-values of the line - lineWidth
- Type: SystemDouble
Width of the line - color
- Type: System.DrawingColor
Color of the line
See Also