Hi,
Steema offers a TCalendarSeries
Is there a way to plan not just the days, but the hours of each day as well?
If yes: how?
if not: is there an alternative?
Thanks,
Cheryll
Calendar Series - Time Table
Calendar Series - Time Table
Cheryll
Re: Calendar Series - Time Table
Hello Cheryll,
How were you thinking to display the hours?
Here it is a simple example showing an Annotation with some text when a concrete date is clicked:
I'm afraid not.Chartist wrote:Is there a way to plan not just the days, but the hours of each day as well?
How were you thinking to display the hours?
Here it is a simple example showing an Annotation with some text when a concrete date is clicked:
Code: Select all
uses TeeTools, DateUtils;
var annot1: TAnnotationTool;
procedure TForm1.FormCreate(Sender: TObject);
begin
annot1:=Chart1.Tools.Add(TAnnotationTool) as TAnnotationTool;
annot1.Active:=false;
end;
procedure TForm1.Series1Change(Sender: TCalendarSeries;
var Value: TDateTime);
begin
if (Value=Today) then
begin
annot1.Active:=true;
annot1.Text:='9:00 - First Task' + #13 + '10:00 - Second Task';
annot1.Left:=Chart1.GetCursorPos.X;
annot1.Top:=Chart1.GetCursorPos.Y;
end
else
annot1.Active:=false;
end;
Best Regards,
Yeray Alonso Development & Support Steema Software Av. Montilivi 33, 17003 Girona, Catalonia (SP) | |
Please read our Bug Fixing Policy |
Re: Calendar Series - Time Table
Hi,
thank you so much!
I will take this as base for my idea.
Warm Regards,
Cheryll
thank you so much!
I will take this as base for my idea.
Warm Regards,
Cheryll
Cheryll