//++++++++++++++++++++++++++++++++++++++++++++++++++ +++++++++++++++++++++++++++
publicoverridevoid Plot(Graphics graphics, Rectangle bounds, double min, double max)
{
if (Bars == null || rowpos==0) return;
string mostrar = TargetTF + "M ";
if (mode==1) mostrar = mostrar + "L"; else mostrar=mostrar+"S";
mostrar = mostrar + stage;
if (textBrush.Color != ChartControl.AxisColor || textFont != ChartControl.Font)
{
textBrush.Color = ChartControl.AxisColor;
textFont = ChartControl.Font;
SizeF size = graphics.MeasureString((mostrar) , textFont);
textWidth = size.Width + 5;
textHeight = size.Height + 1;
}
graphics.DrawString( mostrar,
ChartControl.Font,
textBrush,
bounds.X + bounds.Width - textWidth,
bounds.Y + (rowpos-1)*textHeight ,
stringFormat);
}
//++++++++++++++++++++++++++++++++++++++++++++++++++ ++++++++++++++++++++++++++++
Just over #region Properties ( like in volume counter indicator).
It shows the text perfect but now the 2 plots are gone ( only its values are shown at the Y axis ).
Any help ?

Comment