ICustom3DGridSeries.ReuseGridIndex
ICustom3DGridSeries See also

property ReuseGridIndex: WordBool;

Type Library
TeeChartx

Description

Set this property to True when using the FastBrush Surface Series paint technique.

Example

With TChart1

.Aspect.Orthogonal = False

.Aspect.Zoom = 70

.Series(0).FillSampleValues (30)

' Speed trick, as we know Surface data will not be modified anymore:

.Series(0).asSurface.FillGridIndex 0

.Series(0).asSurface.ReuseGridIndex = True

.Series(0).asSurface.Pen.Visible = False

.Series(0).asSurface.FastBrush = True

' other setting to increase speed:

.ClipPoints = False

.Walls.Left.Visible = False

.Axis.FastCalc = True ' <-- bypass overflow checkings...

End With



See also:
ISurfaceSeries.FastBrush