Search found 13 matches

by Nicho
Tue Mar 15, 2011 10:04 pm
Forum: VCL
Topic: Graph Annotation to move on zoom or scroll
Replies: 6
Views: 10503

Re: Graph Annotation to move on zoom or scroll

I found another way: Series1.XValues.Locate(XValue)
by Nicho
Tue Mar 15, 2011 12:07 am
Forum: VCL
Topic: Graph Annotation to move on zoom or scroll
Replies: 6
Views: 10503

Re: Graph Annotation to move on zoom or scroll

Is there any way to find an index of line series by XValue? Don't want to loop XValues, because it could be more then 10000 point I created a dictionary of annotations as <XValue, TAnnotationTool> now, to move all of them on zoom or scroll, I have to find out an index of each point, contains comment...
by Nicho
Mon Mar 07, 2011 11:05 pm
Forum: VCL
Topic: Graph Annotation to move on zoom or scroll
Replies: 6
Views: 10503

Re: Graph Annotation to move on zoom or scroll

Thank you
by Nicho
Mon Mar 07, 2011 5:46 am
Forum: VCL
Topic: Graph Annotation to move on zoom or scroll
Replies: 6
Views: 10503

Graph Annotation to move on zoom or scroll

Hello, I have to show comments near the selected points on TLine Series (data coming from database). I am using TAnnotationTool and position the annotation correctly on a graph, but after scrolling or zooming graph - all my annotations are not in sync with my points, so how can I stick them together...
by Nicho
Sun Oct 17, 2010 10:37 pm
Forum: VCL
Topic: Undo Redo
Replies: 1
Views: 4664

Undo Redo

There were the questions about Undo \ Redo inbuilt functionality for TChart in 2007, are you planning to implement it soon? I am using TDragPoint and other inbuilt functions, in this case SaveChartToStream and LoadChartFromStream not returning the correct TChart. Also very often if multi Series are ...
by Nicho
Thu Mar 18, 2010 3:17 am
Forum: VCL
Topic: Move Points
Replies: 1
Views: 4487

Move Points

Hello, I have Series1(TLineSeries) on a graph. After I draw the line on a graph I need all the points of Series1 that have the X values between begin and end of the line moved to the line. I can replace line with another series (Series2 that will have 2 points 1 - the begining of the line, another -...
by Nicho
Tue Nov 25, 2008 11:33 pm
Forum: VCL
Topic: How do you access data?
Replies: 2
Views: 12390

Thank you Tom - that's provided all the answers I need.

Best regards
Bruce
by Nicho
Tue Nov 25, 2008 9:48 am
Forum: VCL
Topic: How do you access data?
Replies: 2
Views: 12390

How do you access data?

I have replaced a Delphi TreeView with a TeeTree DBTree. On the dblclick event I used to determine if the user clicked on a parent not by the fllowing: ** SelNode := TheTree.Selected; If SelNode <> Nil then ParentNode := SelNode.Parent else Parentnode := Nil; ** With DBTree:- 1.How do I determine wh...
by Nicho
Thu Oct 02, 2008 11:47 pm
Forum: VCL
Topic: TTrendFunction not found
Replies: 5
Views: 9256

Hi Narcis,

Thanks for your help. Ver8.03 fixed the problem. I tested it several times and it worked fine.
I have to say that TeeChart is a fantastic tool - its saved me so much time in developing professional looking charts.

Cheers
Bruce
by Nicho
Thu Oct 02, 2008 12:32 am
Forum: VCL
Topic: TTrendFunction not found
Replies: 5
Views: 9256

Thanks for your reply. I'm using version 8.02 and CodeGear™ Delphi® 2007 for Win32® Version 11.0.2804.9245. CurveFit is in the Uses Clause In the TeeChart Design tool I set up the following Series:- Series1 (Fast line) Average (using series 1) Median (using series 1) High/Low (using series1) Trend (...
by Nicho
Tue Sep 30, 2008 11:04 pm
Forum: VCL
Topic: TTrendFunction not found
Replies: 5
Views: 9256

TTrendFunction not found

Hi,

I set up a Trend function at design time. When I close Delphi and then reopen again I get the message.

"Class TTrendFunction not found".

Is this a bug?

Thanks
Bruce Nich
by Nicho
Tue Sep 09, 2008 1:35 am
Forum: VCL
Topic: Memory issue with DBChart
Replies: 3
Views: 6788

Thanks for your reply. It will be a couple of days before I can send you an example - I'll have to make a 'cut -down' version of my software. I'm using an SQL database called NexusDB with over million coordinates. I then filter this DB to provide the XY coordinates that I want to plot. As you probab...
by Nicho
Mon Sep 08, 2008 4:44 am
Forum: VCL
Topic: Memory issue with DBChart
Replies: 3
Views: 6788

Memory issue with DBChart

I found that linking a chart to a data source and then using: (* Series1.DataSource := DataTable; Series1.CheckDataSource; *) was very slow plotting points and crashed with memory allocation with around 9,000 XY points. Manually adding the XY coords was a lot faster and did not cause a memory issue....