hello,
D2007 TeechartPro VCL 8.04
I try to do display in general tool tip (or hint) all values at time with line chart ?
it's very easy for the user must clicker once with the mouse cursor and displays all values at time T in same mark.
I find with OnGetMark, but whithout result.
i note the values are not plot at same time!
ex:
trend1 10:00:02 15.5
trend1 10:05:00 14.5
trend1 10:30:00 11.6
trend1 10:31:00 25.5
trend1 11:00:00 20.5
etc...
trend2 10:10:00 120
trend2 10:20:00 125
trend2 10:30:00 121
trend3 10:40:00 126
etc..
General Mark Tip
-
- Site Admin
- Posts: 14730
- Joined: Mon Jun 09, 2003 4:00 am
- Location: Banyoles, Catalonia
- Contact:
Re: General Mark Tip
Hello mivchart,
I'm not sure about which is the exact problem. If you want to display all series marks at once you could just toggle them like this:
So that you could use chart's mouse events like this:
If this doesn't help please give us more details about the exact problem.
I'm not sure about which is the exact problem. If you want to display all series marks at once you could just toggle them like this:
Code: Select all
Series1.Marks.Visible := True;
Code: Select all
procedure TForm1.Chart1MouseMove(Sender: TObject; Shift: TShiftState; X,
Y: Integer);
begin
Series1.Marks.Visible := Series1.Clicked(X, Y) <> -1;
end;
Best Regards,
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 |
Re: General Mark Tip
no,
In a chart you have multiple curved line (or Gantt)
Click with the vertical cursor and hop display all values in a single hint for same TOP (X is DateTime axe).
In a chart you have multiple curved line (or Gantt)
Click with the vertical cursor and hop display all values in a single hint for same TOP (X is DateTime axe).
-
- Site Admin
- Posts: 14730
- Joined: Mon Jun 09, 2003 4:00 am
- Location: Banyoles, Catalonia
- Contact:
Re: General Mark Tip
Hi mivchart,
Ok, in that case I recommend you to do something as in the interpolating example I posted here.
Ok, in that case I recommend you to do something as in the interpolating example I posted here.
Best Regards,
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 |
Re: General Mark Tip
Sorry I was absent
Ok, I think it is good solution for me, but it's complexe.
why do not you propose an integrated tool in chart ?
Ok, I think it is good solution for me, but it's complexe.
why do not you propose an integrated tool in chart ?
-
- Site Admin
- Posts: 14730
- Joined: Mon Jun 09, 2003 4:00 am
- Location: Banyoles, Catalonia
- Contact:
Re: General Mark Tip
Hi mivchart,
Ok, I'll add your request to the wish-list to be considered for inclusion in future versions.
Ok, I'll add your request to the wish-list to be considered for inclusion in future versions.
Best Regards,
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 |