Search found 35 matches

by odissey1
Mon Feb 01, 2010 5:39 pm
Forum: Beta versions
Topic: TeeChart VCL v2010 BETA Release!
Replies: 15
Views: 77851

Re: TeeChart VCL v2010 BETA Release!

Why BETA for D2007 is 57MB in size, while BETA for D2010 is only 35MB?
odissey1
by odissey1
Mon Feb 01, 2010 5:37 pm
Forum: Beta versions
Topic: TeeChart VCL v2010 BETA Release!
Replies: 15
Views: 77851

Re: TeeChart VCL v2010 BETA Release!

It works now.
Must Delete cookies from Steema first.
To download in FireFox: goto: Tool->Options->Privacy->ShowCookies,scroll down to find 'steema' and delete it.
regards,
odissey1
by odissey1
Mon Feb 01, 2010 4:12 am
Forum: VCL
Topic: Add Custom Colors to TColorButton color dialog
Replies: 6
Views: 12927

Re: Add Custom Colors to TColorButton color dialog

Here is some solution: //add TColorDialod component on the form and define custom colors in it uses ..., TeCanvas; procedure TForm1.FormCreate(Sender: TObject); begin TeeCustomEditColors:=TStringList.Create; TeeCustomEditColors.Assign(ColorDialog1.CustomColors); end; procedure TForm1.FormDestroy(Sen...
by odissey1
Mon Feb 01, 2010 1:03 am
Forum: Beta versions
Topic: TeeChart VCL v2010 BETA Release!
Replies: 15
Views: 77851

Re: TeeChart VCL v2010 BETA Release!

Hi,
Access to Eval. version is unavailable. System goes in circles: download->get password->dowload->get password...
Actually, I would like to see a TeeNew10.exe only. Is there a separate download of TeeNew10?

regards,
odissey1
by odissey1
Mon Feb 01, 2010 12:44 am
Forum: VCL
Topic: Add Custom Colors to TColorButton color dialog
Replies: 6
Views: 12927

Add Custom Colors to TColorButton color dialog

Hi,
I want to add custom colors to the color dialog , which appears when TColorButton is clicked. Is there any possibility to add a 'custom color string' to the TeeChart application?

Sincerely,
odissey1
TC8.02 Pro +Source/D2007
by odissey1
Fri Jun 05, 2009 6:50 pm
Forum: VCL
Topic: TWindRose series incorrect representation
Replies: 1
Views: 4006

TWindRose series incorrect representation

Hi, In current inplementation of the TWindRose series angle increments could be set only at 1deg increment. As a result, the labels could be set to appear 'normal' only at increments of 45 and 90 deg. For example, at 30deg interval the displayed labels looks like: N, NNE, NEE, E, SEE, SSE, S, SSW, S...
by odissey1
Tue Dec 09, 2008 10:36 pm
Forum: VCL
Topic: NearestPoint disappear on menu Popup
Replies: 3
Views: 6227

Hi Narcis, I uploaded NearestPoint_01p2.zip which contains 2 setst of screenshots, 2 compiled demos of the same project and a source code into upload directory. one of the project is compiled in D7/WinXP, another in D2007/VistaHomePremium. It seems that OS type is not to blame, only compiler is impo...
by odissey1
Tue Dec 09, 2008 7:35 pm
Forum: VCL
Topic: Error on deleting a shape polygone in TMapSeries
Replies: 7
Views: 11156

But something wrong in TeeChart 8.x also. Try to open Tee8new.exe -> MapGIS series -> Edit -> Shapes. Now select any shape with a mouse. Hit 'Delete' button on keyboard. You will get an error message.
I posted a screenshot on Attachments forum
by odissey1
Tue Dec 09, 2008 7:02 pm
Forum: VCL
Topic: Error on deleting a shape polygone in TMapSeries
Replies: 7
Views: 11156

Hi odissey1, Yes, you can use Delete method, for example: Series1.Delete(0); -I am afraid not. At least not in my TeeChart v.7.12. Compiler say: 'There is no overload version of Series1.Delete(0)'; But something wrong in TeeChart 8.x also. Try to open Tee8new.exe -> MapGIS series -> Edit -> Shapes....
by odissey1
Tue Dec 09, 2008 6:54 pm
Forum: VCL
Topic: Clear All Series method
Replies: 5
Views: 11069

Hi odissey1, I'm afraid not, such method doesn't exist. You should use Clear in a loop as you already do. I suspected that. I typically have 5-6 charts in the project each having several series. Every time I reload data all charts need to be 'reset' so such procedure would be useful. Please conside...
by odissey1
Tue Dec 09, 2008 6:48 pm
Forum: VCL
Topic: pixels to value conversion
Replies: 5
Views: 11232

Hi odissey1, What about this? Val:=Chart1.Axes.Bottom.IStartPos + 20; Nope, this is not it. The result should be a Float, not an integer. Let me re-phrase my question: I nedd a Bubble point with radius 20pix. Let say that the BottomAxis spans from 0 to 100 units. What Radius value shoud I assign to...
by odissey1
Tue Dec 09, 2008 2:59 am
Forum: VCL
Topic: //Bug Report [+solution] TMapSeries.onClick
Replies: 1
Views: 3888

//Bug Report [+solution] TMapSeries.onClick

I am working with TMapSeries drawing numerous balloons on the chart. I noticed that if some of the top shapes are made invisible, then they are still clickable, which is wrong, as they obstruct underlying shape objects. Please find below corrected code for Clicked(..) function. Please note that whil...
by odissey1
Tue Dec 09, 2008 2:46 am
Forum: VCL
Topic: pixels to value conversion
Replies: 5
Views: 11232

You can use CalcXPosValue() as following int X0 = Chart1->Axes->Bottom->CalcXPosValue( 100 ); int Y0 = Chart1->Axes->Left->CalcYPosValue(50); Nope, that won't work, X:=CalcXPosValue(Val) is an integer and returns chart point 'X' position for a given axis value 'Val'. I am looking for a function inv...
by odissey1
Tue Dec 09, 2008 2:05 am
Forum: VCL
Topic: Clear All Series method
Replies: 5
Views: 11069

8574101 wrote:You can use Chart1.RemoveAllSeries() .
I want to keep and re-use series for a new data. 'RemoveAllSeries' wipes off all existing series.
by odissey1
Mon Dec 08, 2008 8:48 pm
Forum: VCL
Topic: Clear All Series method
Replies: 5
Views: 11069

Clear All Series method

Hi,
To clear all series in a chart I frequently use
for i:=0 to Chart1.SeriesCount-1 do Chart1.Clear;

Is there some analog of that code like
Chart1.ClearAllSeries;

regards,
odissey1