TContourSeries Issue
Posted: Thu Mar 27, 2025 3:49 pm
I am trying to contour elevations from a number of points.
For some reason the contour fill breaks up as shown in attached image.
If
Below is my code; I have excluded the query as it does not contribute.
I can provide the grid points by separate message as I can not post xlsx, csv or txt files.
For some reason the contour fill breaks up as shown in attached image.
If
IrregularGrid := false
then I get a blank grid. Below is my code; I have excluded the query as it does not contribute.
I can provide the grid points by separate message as I can not post xlsx, csv or txt files.
Code: Select all
with Chart1 do
begin
View3D := False;
RemoveAllSeries ;
Title.Clear ;
end;
MyContour := TContourSeries.Create(chart1);
Chart1.AddSeries(MyContour);
with MyContour do
begin
IrregularGrid := true;
Filled := chkFillLevels.checked;
BeginUpdate ;
end;
with QInsSC do
begin
//Formulate Query that will pull values from DB and populate fields[0] - fields[2] with xx, yy, zz values
Active := true;
first;
icount := 0;
while not eof do
begin
inc(icount);
xx := fields[0].AsFloat;
yy := fields[1].AsFloat;
if not fieldbyName('GPD_Z').IsNull then
begin
zz := fields[2].AsFloat;
MyContour.AddXYZ (xx, zz, yy, '', clTeeColor);
end;
next;
end;
end;
MyContour.EndUpdate ;