Page 1 of 1

TeeChart's features demo

Posted: Mon Jan 23, 2006 3:32 pm
by 9343900
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?

Posted: Mon Jan 23, 2006 3:38 pm
by narcis
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.

Posted: Mon Jan 23, 2006 3:43 pm
by 9343900
I've installed using the TeeChart7.05SourceCode.exe
How can I install in the correct way?
Could you help me?

Posted: Mon Jan 23, 2006 4:09 pm
by narcis
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.

Chart Tool - Cursor

Posted: Mon Jan 23, 2006 6:11 pm
by 9343900
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,

Posted: Tue Jan 24, 2006 8:50 am
by narcis
Hi fabio,

Has this cursor any series associated? You could try not assigning any series to it.

Posted: Tue Jan 24, 2006 11:01 am
by 9343900
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,

Posted: Tue Jan 24, 2006 12:47 pm
by narcis
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.

Chart Tool - Cursor

Posted: Wed Jan 25, 2006 4:33 pm
by 9343900
Hi Narcís,

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

Thanks.

Posted: Wed Jan 25, 2006 4:45 pm
by 9343900
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.

Posted: Thu Jan 26, 2006 8:46 am
by narcis
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;