Interface IChartElement
- Namespace
- StockSharp.Charting
- Assembly
- StockSharp.Charting.Interfaces.dll
The interface that describes the chart element (indicator, candle, etc.).
public interface IChartElement : IChartPart<IChartElement>, INotifyPropertyChanging, INotifyPropertyChanged, IPersistable
- Inherited Members
- Extension Methods
Properties
ChartArea
The chart area on which the element is drawn.
IChartArea ChartArea { get; }
Property Value
Colorer
Custom elements colorer.
Func<IComparable, Color?> Colorer { get; set; }
Property Value
- Func<IComparable, Color?>
FullTitle
The full series title. If this property is undefined, auto-generated title will be used instead.
string FullTitle { get; set; }
Property Value
IsLegend
Should this element be shown in the legend.
bool IsLegend { get; set; }
Property Value
IsVisible
Whether this element is visible on chart.
bool IsVisible { get; set; }
Property Value
PersistantChartArea
The chart area on which the element is drawn.
IChartArea PersistantChartArea { get; }
Property Value
XAxisId
X-axis.
string XAxisId { get; set; }
Property Value
YAxisId
Y-axis.
string YAxisId { get; set; }