TwoHistogramsAndLineAddHistogram Method |
LightningChart .NET Help
Adds a histogram to the indicator.
Namespace:
Arction.CustomControls.Trader.WPF.TechnicalIndicators
Assembly:
Arction.Wpf.TradingCharts (in Arction.Wpf.TradingCharts.dll) Version: 10.3.1
Syntaxpublic void AddHistogram(
DateTime[] xValues,
double[] yValues,
double barWidth,
Color color,
int histogramIndex
)
Public Sub AddHistogram (
xValues As DateTime(),
yValues As Double(),
barWidth As Double,
color As Color,
histogramIndex As Integer
)
public:
void AddHistogram(
array<DateTime>^ xValues,
array<double>^ yValues,
double barWidth,
Color color,
int histogramIndex
)
Parameters
- xValues
- Type: SystemDateTime
Histogram X-values as DateTimes - yValues
- Type: SystemDouble
Y-values of the histogram bars - barWidth
- Type: SystemDouble
Width of the histogram bars - color
- Type: System.Windows.MediaColor
Color of the histogram bars - histogramIndex
- Type: SystemInt32
Histogram to be updated.
See Also