Search found 9 matches

by lolo1988
Mon Aug 21, 2017 10:14 am
Forum: VCL
Topic: Problem with OnGetAxisLabel event
Replies: 3
Views: 9114

Re: Problem with OnGetAxisLabel event

Hello Sandra, Thank you for your reply. Actually, my problem came from the fact that the "Series" parameter of the event is not assigned when the event occurs. So calling properties of this local parameter failed. I solve my problem by using the global Chart1.Series parameter instead of the local 'S...
by lolo1988
Thu Aug 17, 2017 11:58 am
Forum: VCL
Topic: Problem with OnGetAxisLabel event
Replies: 3
Views: 9114

Problem with OnGetAxisLabel event

Hello, I've got an issue when using the OnGetAxisLabel. I've got a couple of TLineSeries, created at runtime , with ParentChart assigned to Chart1 for instance. Those Series are drawn correctly in Chart1. But when the Chart1.OnGetAxisLabel(Sender : TChartAxis; Series : TChartSeries; ValueIndex : int...
by lolo1988
Tue Nov 23, 2010 12:40 pm
Forum: VCL
Topic: Displaying single marks
Replies: 14
Views: 19005

Re: Displaying single marks

Hello Yeray,

I'll try this as soon as possible.
It finally seems not as complicated as I supposed it to be !

Thanks a lot,

Laurent
by lolo1988
Wed Nov 17, 2010 4:37 pm
Forum: VCL
Topic: Displaying single marks
Replies: 14
Views: 19005

Re: Displaying single marks

Hi Narcis, Well, the RectangleTool is finally not so easy to use as a marks displayer. It is not enough connected with the series points, and things like resizing the chart is tough to manage (the callout is connected to a screen point, not a serie point...) Too complicated (and too much time consum...
by lolo1988
Wed Nov 10, 2010 9:51 am
Forum: VCL
Topic: Displaying single marks
Replies: 14
Views: 19005

Re: Displaying single marks

Hi Narcis, I finally manage my individual 'marks' with the TRectangleTool. I go deeper in this object's understanding and you were right : the sample I posted could be realized with this object. To add a 'mark', I click on a serie point, create a TRectangleTool object and add it in a TObjectList. Al...
by lolo1988
Mon Nov 08, 2010 4:48 pm
Forum: VCL
Topic: Displaying single marks
Replies: 14
Views: 19005

Re: Displaying single marks

Ok, this is most likely done using TAnnotationTool object and its Callout object. If you need to drag those tools you'd better use TRectangleTool instead of TAnnotationTool. Hope this helps! Narcis, I've tried the TRectangleTool, but the object used in the sample enclosed above mostly behaves like ...
by lolo1988
Mon Nov 08, 2010 4:11 pm
Forum: VCL
Topic: Displaying single marks
Replies: 14
Views: 19005

Re: Displaying single marks

Thanks Narcis.
I will try that and report, if it can help somebody else.

Regards,

Laurent
by lolo1988
Mon Nov 08, 2010 3:53 pm
Forum: VCL
Topic: Displaying single marks
Replies: 14
Views: 19005

Re: Displaying single marks

Hi Laurent, What about using TMarksTipTool? Hi Narcis, As I've seen of the TMarksTipTool behaviour, it won't fit my needs. Here's a sample of a soft that really does exactly what I want : CustomMarks.jpg The Marks are individually painted on the chart when the series point is clicked. ... and no, I...
by lolo1988
Mon Nov 08, 2010 3:10 pm
Forum: VCL
Topic: Displaying single marks
Replies: 14
Views: 19005

Displaying single marks

Hello, With TeeChart 7.07 for Delphi6, I would like to display single mark on a LineSeries when, for exemple, I click on a Series point. None of the Marks properties or methods (Marks.item[].visible, etc.) fit my needs until now. An example of what I would like to do : - I display a TLineSeries on a...