A SeriesRenderer that draws candlesticks in its containing plot.
Namespace: MindFusion.Charting
Assembly: MindFusion.Charting
SyntaxC#
Copy Code
|
|---|
public class CandlestickRenderer : Renderer2D |
Visual Basic
Copy Code
|
|---|
Public Class CandlestickRenderer |
RemarksThe Series assigned to this renderer must support at least five Dimensions, where first dimension specifies horizontal position and the next four coordinates specify vertical positions of candlestick body and wicks. StockPriceSeries is a convenience class that implements this kind of data in terms of open/close/low/high stock prices per date. CandlestickRenderer must be placed inside a Plot2D component. If the GetLabel method of Series object returns OuterLabel string, the label is drawn above its corresponding candlestick.
Inheritance HierarchySystem.Object![]()
MindFusion.Charting.SeriesRenderer
MindFusion.Charting.Renderer2D
MindFusion.Charting.CandlestickRenderer
See Also