TeeChart's features demo
TeeChart's features demo
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?
Do I have some installation problem?
-
- Site Admin
- Posts: 14730
- Joined: Mon Jun 09, 2003 4:00 am
- Location: Banyoles, Catalonia
- Contact:
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.
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 |
Instructions - How to post in this forum |
-
- Site Admin
- Posts: 14730
- Joined: Mon Jun 09, 2003 4:00 am
- Location: Banyoles, Catalonia
- Contact:
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.
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 |
Instructions - How to post in this forum |
Chart Tool - Cursor
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,
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,
-
- Site Admin
- Posts: 14730
- Joined: Mon Jun 09, 2003 4:00 am
- Location: Banyoles, Catalonia
- Contact:
Hi fabio,
Has this cursor any series associated? You could try not assigning any series to it.
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 |
Instructions - How to post in this forum |
-
- Site Admin
- Posts: 14730
- Joined: Mon Jun 09, 2003 4:00 am
- Location: Banyoles, Catalonia
- Contact:
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.
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 |
Instructions - How to post in this forum |
Chart Tool - Cursor
Hi Narcís,
I've just sent you the files at news://www.steema.net/steema.public.attachments newsgroup.
Thanks.
I've just sent you the files at news://www.steema.net/steema.public.attachments newsgroup.
Thanks.
-
- Site Admin
- Posts: 14730
- Joined: Mon Jun 09, 2003 4:00 am
- Location: Banyoles, Catalonia
- Contact:
Hi fabio,
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 just sent you the files at news://www.steema.net/steema.public.attachments newsgroup.
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.I've found a problem when I try to change the color of Histogram MACD.
The color no changes.
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 |
Instructions - How to post in this forum |