TeeChart's features demo

TeeChart VCL for Borland/CodeGear/Embarcadero RAD Studio, Delphi and C++ Builder.
Post Reply
report
Newbie
Newbie
Posts: 10
Joined: Fri Oct 21, 2005 4:00 am

TeeChart's features demo

Post by report » Mon Jan 23, 2006 3:32 pm

I can find the TeeChart's features demo, available at TeeChart's program group in order to see an example at "All Features\Welcome !\Chart Styles\Financial\Candle (OHLC)\Axis Labels no Weekends".
Do I have some installation problem?

Narcís
Site Admin
Site Admin
Posts: 14730
Joined: Mon Jun 09, 2003 4:00 am
Location: Banyoles, Catalonia
Contact:

Post by Narcís » Mon Jan 23, 2006 3:38 pm

Hi fabio,

Did you use the binary installer to install TeeChart or you used the source code installer? To have the demo you'll need to install using the binary installer as the source code installer doesn't include examples nor documentation.
Best Regards,
Narcís Calvet / Development & Support
Steema Software
Avinguda Montilivi 33, 17003 Girona, Catalonia
Tel: 34 972 218 797
http://www.steema.com
Image Image Image Image Image Image
Instructions - How to post in this forum

report
Newbie
Newbie
Posts: 10
Joined: Fri Oct 21, 2005 4:00 am

Post by report » Mon Jan 23, 2006 3:43 pm

I've installed using the TeeChart7.05SourceCode.exe
How can I install in the correct way?
Could you help me?

Narcís
Site Admin
Site Admin
Posts: 14730
Joined: Mon Jun 09, 2003 4:00 am
Location: Banyoles, Catalonia
Contact:

Post by Narcís » Mon Jan 23, 2006 4:09 pm

Hi fabio,

You should log into our Customer Download Area and click on the binary installers link, select the installer for your desired IDE and run this installer.

Please notice that current release is v7.06.
Best Regards,
Narcís Calvet / Development & Support
Steema Software
Avinguda Montilivi 33, 17003 Girona, Catalonia
Tel: 34 972 218 797
http://www.steema.com
Image Image Image Image Image Image
Instructions - How to post in this forum

report
Newbie
Newbie
Posts: 10
Joined: Fri Oct 21, 2005 4:00 am

Chart Tool - Cursor

Post by report » Mon Jan 23, 2006 6:11 pm

Hi Narcís,

Thanks, now it works.

I have another problem.
I have a financial chart with different custom axes and series and I would like to use the cursor tool.
I realized that when I change of mouse to another series, I don't have the cursor vertical line on the others series.
How can I do this cursor "draw" a vertical line in all of my series?

Best regards,

Narcís
Site Admin
Site Admin
Posts: 14730
Joined: Mon Jun 09, 2003 4:00 am
Location: Banyoles, Catalonia
Contact:

Post by Narcís » Tue Jan 24, 2006 8:50 am

Hi fabio,

Has this cursor any series associated? You could try not assigning any series to it.
Best Regards,
Narcís Calvet / Development & Support
Steema Software
Avinguda Montilivi 33, 17003 Girona, Catalonia
Tel: 34 972 218 797
http://www.steema.com
Image Image Image Image Image Image
Instructions - How to post in this forum

report
Newbie
Newbie
Posts: 10
Joined: Fri Oct 21, 2005 4:00 am

Post by report » Tue Jan 24, 2006 11:01 am

I try to not assigning any series, but it didn't work.
Even any series association, the cursor has associated just the series1.
Do you have any clue?

Best regards,

Narcís
Site Admin
Site Admin
Posts: 14730
Joined: Mon Jun 09, 2003 4:00 am
Location: Banyoles, Catalonia
Contact:

Post by Narcís » Tue Jan 24, 2006 12:47 pm

Hi fabio,

Could you please send us an example we can run "as-is" to reproduce the problem here? You can post your files at [url]news://www.steema.net/steema.public.attachments[/url] newsgroup.

Thanks in advance.
Best Regards,
Narcís Calvet / Development & Support
Steema Software
Avinguda Montilivi 33, 17003 Girona, Catalonia
Tel: 34 972 218 797
http://www.steema.com
Image Image Image Image Image Image
Instructions - How to post in this forum

report
Newbie
Newbie
Posts: 10
Joined: Fri Oct 21, 2005 4:00 am

Chart Tool - Cursor

Post by report » Wed Jan 25, 2006 4:33 pm

Hi Narcís,

I've just sent you the files at news://www.steema.net/steema.public.attachments newsgroup.

Thanks.

report
Newbie
Newbie
Posts: 10
Joined: Fri Oct 21, 2005 4:00 am

Post by report » Wed Jan 25, 2006 4:45 pm

I've found a problem when I try to change the color of Histogram MACD.
The color no changes.

You can see it in the same example I've sent you about the cursor.

Thanks.

Narcís
Site Admin
Site Admin
Posts: 14730
Joined: Mon Jun 09, 2003 4:00 am
Location: Banyoles, Catalonia
Contact:

Post by Narcís » Thu Jan 26, 2006 8:46 am

Hi fabio,
I've just sent you the files at news://www.steema.net/steema.public.attachments newsgroup.
Thanks for the files but I can't run the project as I don't have the database connection. Could you please send me further instructions on how to make it work or send another example project I can run "as-is" to reproduce the problem here?
I've found a problem when I try to change the color of Histogram MACD.
The color no changes.
This is because MACD creates a set of "internal" sub-series. You can use something like the code below to change the Histogram color of the MACD function.

Code: Select all

procedure TForm1.FormCreate(Sender: TObject);
var
  i: Integer;
begin
  Series1.FillSampleValues();

  for i:=0 to Chart1.SeriesCount-1 do
    if (Chart1[i] is TVolumeSeries) then Chart1[i].Color:=clYellow;
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
Image Image Image Image Image Image
Instructions - How to post in this forum

Post Reply