Hi,
Is it possible to add text "inside" a Gantt figure similar to the figure I have attached?
TGantt Series
TGantt Series
- Attachments
-
- GanttExample.JPG (5.88 KiB) Viewed 3660 times
Re: TGantt Series
Hi,
Yes, you can simply make the marks visible and transparent:
Yes, you can simply make the marks visible and transparent:
Code: Select all
procedure TForm1.FormCreate(Sender: TObject);
begin
Chart1.View3D:=false;
with Chart1.AddSeries(TGanttSeries) as TGanttSeries do
begin
FillSampleValues(5);
Pointer.Size:=10;
Marks.Visible:=true;
Marks.Transparent:=true;
Marks.Font.Color:=clWhite;
end;
end;
Best Regards,
Yeray Alonso Development & Support Steema Software Av. Montilivi 33, 17003 Girona, Catalonia (SP) | |
Please read our Bug Fixing Policy |