IEnvironment.InternalRepaint
IEnvironment

procedure InternalRepaint;

Type Library
TeeChartx

Description
The InternalRepaint method repaints the internal Chart canvas, which is the canvas TeeChart uses as a "mock-up" before painting to the Chart canvas itself.

Example [Visual Basic]:

With TChart1

.AddSeries scLine

.Series(0).FillSampleValues 20

.Tools.Add tcCursor

With .Tools.Items(0).asTeeCursor

.Active = True

.Style = cssBoth

End With

.Environment.InternalRepaint

With .Tools.Items(0).asTeeCursor

.XVal = 10

.YVal = 50

End With

End With