I want the new data drawn yes, if it appears on the zoomed area, but i don't want any axis rescaling, zoom area change or anything.
Which properties I need to alter?
This is what I am using now, but just disables drawing completely while zoomed.
- Code: Select all
// If zoomed, disable autoupdate
if Graph.ZoomStage=0 then
begin
Series.AutoUpdate := true;
end
else
begin
Series.AutoUpdate := false;
end;
