Search found 46 matches
- Fri Nov 21, 2008 8:42 am
- Forum: VCL
- Topic: MDI Child & Chart width / height
- Replies: 6
- Views: 10951
hi, yes, you can read by yourself the TEE file, but you may want to not depend too much of the Steema file format. This is just a workaround. I use this kind of solution to have a feeling of "instant" loading in my app. (to prevent flashing when you reload a lot of chart/mdi at one). Also, I do load...
- Wed Nov 19, 2008 8:18 am
- Forum: VCL
- Topic: MDI Child & Chart width / height
- Replies: 6
- Views: 10951
Hi, I did have a similar issue. try the following method: - create/move the MID child outside of the visible area (left=-5000). - set a form size > screen size (width=3000) - disable the chart alClient - load the chart file. - read the chart size, and resize the form client area. - re set the chart ...
- Tue Jul 01, 2008 8:58 am
- Forum: VCL
- Topic: How to draw an arrow on top of a point
- Replies: 4
- Views: 9102
found a bug (?)
hi,
I did have a problem using the TAnnotationCallout.
you must reset
ChartTool1.Callout.Arrow.Visible := true;
in the form.OnCreate. If not the arrow is visible on design time, but not during the execution.
see you,
Context:
winXP SP2,
TeeChart win 7.05 (with source)
Delphi Architect 9.0
I did have a problem using the TAnnotationCallout.
you must reset
ChartTool1.Callout.Arrow.Visible := true;
in the form.OnCreate. If not the arrow is visible on design time, but not during the execution.
see you,
Context:
winXP SP2,
TeeChart win 7.05 (with source)
Delphi Architect 9.0
- Tue Jul 01, 2008 7:12 am
- Forum: VCL
- Topic: How to draw an arrow on top of a point
- Replies: 4
- Views: 9102
- Mon Jun 30, 2008 11:53 am
- Forum: VCL
- Topic: How to draw an arrow on top of a point
- Replies: 4
- Views: 9102
How to draw an arrow on top of a point
Hi, I need to draw some small vertical arrow (with a text on top) on top of a candle . The purpose is to add some extra info for a candle. The arrow should “stay” with the candle when the user zooms/scrolls. Also the arrow can be on top or on the bottom of the candle. The find x,y / draw text part a...
- Wed Dec 05, 2007 8:52 am
- Forum: VCL
- Topic: ChartListBox - prevent double selection
- Replies: 18
- Views: 30150
- Tue Dec 04, 2007 8:10 am
- Forum: VCL
- Topic: ChartListBox - prevent double selection
- Replies: 18
- Views: 30150
Hi!
I think this problem was solved there:
http://www.teechart.net/support/viewtop ... artlistbox
greatings,
I think this problem was solved there:
http://www.teechart.net/support/viewtop ... artlistbox
greatings,
- Tue Jul 17, 2007 11:18 am
- Forum: Wishes and ideas
- Topic: add 1 point to a source: optimize the function calculation
- Replies: 1
- Views: 10821
add 1 point to a source: optimize the function calculation
Hi, I got a candle chart with real time value. We display approx. 15’000 candles and 3-4 series with math. Function. We add a new candle or update the last one every 1-3 sec. The problem is that the update of ONE point is pretty slow. In fact, it’s longer to process one new point that to receive one...
- Wed May 30, 2007 9:47 am
- Forum: VCL
- Topic: Bug in TDrawLine.Assign
- Replies: 1
- Views: 4790
Bug in TDrawLine.Assign
Hi, I 'm making a class that herite from TDrawLine and I found problem with the assign method. (Pen and style not recopied) I suggest you replace the implementation of TDrawLine.Assign by this one: procedure TDrawLine.Assign(Source: TPersistent); begin if Source is TDrawLine then Begin Self.StartPos...
- Thu May 03, 2007 8:05 am
- Forum: VCL
- Topic: TCurveFittingFunction raise if PolyDegree > 7
- Replies: 4
- Views: 9527
work around can be found here:
http://www.teechart.net/support/viewtop ... =poly+fitt
http://www.teechart.net/support/viewtop ... =poly+fitt
- Thu May 03, 2007 8:01 am
- Forum: VCL
- Topic: SVG "header" - Style information
- Replies: 5
- Views: 10865
- Fri Apr 27, 2007 7:39 am
- Forum: VCL
- Topic: SVG "header" - Style information
- Replies: 5
- Views: 10865
- Tue Apr 24, 2007 7:28 am
- Forum: VCL
- Topic: SVG "header" - Style information
- Replies: 5
- Views: 10865
hi, thanks for your answer. I understood that more than one format (version) of SVG exist. And they use some DOCTYPE atttribut (like html) to specifie the format. Will you be kind and tell me which format the teechart lib use (1.1 full ?)? What is the type declaration I should add?? off course, I ca...
- Thu Apr 19, 2007 1:02 pm
- Forum: VCL
- Topic: SVG "header" - Style information
- Replies: 5
- Views: 10865
SVG "header" - Style information
hi, I got a question about the SVG export format. I'm a newbie in SVG, but I will like the file to be readable by a commun software. (for my users that are not graphics/images experts) I thought about FireFox since it's free and got support for svg. But when I try to open it, looks like some style i...
- Tue Feb 06, 2007 1:11 pm
- Forum: VCL
- Topic: Pending Bug (Where is the defect list?)
- Replies: 2
- Views: 7373
Hi, Poly Fitt: ok. juste so you, know. Meanwhile I did this procedure TCustomFittingFunction.AddPoints(Source:TChartSeries); [...] try PolyFitting(tmpCount,FPolyDegree,IXVector,IYVector,IAnswerVector); except // added cause in some case (PolyDegree > 7) this raise. // (Exception.Create(TeeMsg_Fittin...