I have some problems with the actual TeeChart version (8.04) and some features from TSurfaceSeries and TContourSeries (in BCB2007).
Some internal pointers seems to be uninitialized. Up to now i found
from TContourSeries
ContourMarks, Levels, Smoothing
from TSurfaceSeries
WaterLines
Sometimes the pointers are 0 and sometimes it haves invalid values. This makes this features unusable. I saw a similar problems some threads ago. I tried to initialize these pointers by myself but this doesn't work. After i assigned the new value the internal pointer keeps 0. Example below
Code: Select all
TSmoothPoints* sp = new TSmoothPoints(CSer);
CSer->Smoothing = sp; // after this Smoothing keeps 0
by