How to create a chart with a millimeter paper background?
Thanks, Ronald
Like

Code: Select all
procedure TForm1.FormCreate(Sender: TObject);
begin
Series1.FillSampleValues(10);
Chart1.View3D:=false;
With Chart1.Axes do
begin
Left.Grid.Style := psSolid;
Left.Grid.Color := clBlack;
Left.MinorTickCount := 9;
Left.MinorGrid.Visible := true;
Left.MinorGrid.Style := psSolid;
Left.MinorGrid.Color := clGray;
Bottom.Grid.Style := psSolid;
Bottom.Grid.Color := clBlack;
Bottom.MinorTickCount := 9;
Bottom.MinorGrid.Visible := true;
Bottom.MinorGrid.Style := psSolid;
Bottom.MinorGrid.Color := clGray;
end;
end;
Narcís Calvet / Development & Support Steema Software Avinguda Montilivi 33, 17003 Girona, Catalonia Tel: 34 972 218 797 http://www.steema.com |
![]() ![]() ![]() ![]() ![]() ![]() |
Instructions - How to post in this forum |