3D Chart with TGLCanvas
Posted: Sun Dec 06, 2020 4:41 am
I want to have “AutoHide” Walls with Frame (see Red Lines in attached pictures). The code used as follows:
1. When View3DWalls := false, Walls are AutoHide, but no Frame. When View3DWalls := true, the Chart shows Frame, but Walls are not AutoHide (except Walls.Back).
2. When Axis.Title.Caption use Chinese characters, they display in garbled code.
How to solve these problems?
Code: Select all
with Walls do
begin
Visible := true;
Size := 1;
View3DWalls := false;
Left.Visible := true;
Left.AutoHide := true;
Bottom.Visible := true;
Bottom.AutoHide := true;
Back.Visible := true;
Back.AutoHide := true;
Right.Visible := false;
end;
2. When Axis.Title.Caption use Chinese characters, they display in garbled code.
How to solve these problems?