PB with fullsreen
Posted: Tue Feb 16, 2010 11:16 am
I use the component Fullscreen and it works.
The PB is that after fullscreen a rectangle activated Zoom! I tried the "UndoZoom" but nothing
my code at run time :
//if not find fullscreen tools > create at run time (not necessary)
if not assigned(ScreenMax) then
ScreenMax:= AChart.Tools.Add(TFullScreenTool.Create(AForm)) as TFullScreenTool;
//if tools fullscreen > force dysplay
if assigned(ScreenMax) and not ScreenMax.Active then begin
ScreenMax.ShowInEditor :=false;
AChart.undoZoom;
ScreenMax.Active :=True;
Application.ProcessMessages;
end;
The PB is that after fullscreen a rectangle activated Zoom! I tried the "UndoZoom" but nothing
my code at run time :
//if not find fullscreen tools > create at run time (not necessary)
if not assigned(ScreenMax) then
ScreenMax:= AChart.Tools.Add(TFullScreenTool.Create(AForm)) as TFullScreenTool;
//if tools fullscreen > force dysplay
if assigned(ScreenMax) and not ScreenMax.Active then begin
ScreenMax.ShowInEditor :=false;
AChart.undoZoom;
ScreenMax.Active :=True;
Application.ProcessMessages;
end;