public PaintChartEventHandler AfterDraw
Remarks
This event gets called just after TChart has drawn all series.
Warning
:Do not modify any property in this event that would force a TChart repaint. Doing this will cause a recursive loop.
Example
[C#]
private void WebChart1_AfterDraw(object sender, Steema.TeeChart.Drawing.Graphics3D g)
{
//output text message to the rendered Chart.
if (clickedX!=-1)
{
g.Font.Bold=true;
g.Font.Color=Color.Blue;
g.TextOut(clickedX,clickedY,msgText);
}
}
See Also
WebChart Class | WebChart Members | Steema.TeeChart.Web Namespace