Search found 9 matches
- Tue Dec 19, 2006 9:43 am
- Forum: VCL
- Topic: Minimum and maximum values
- Replies: 16
- Views: 10684
I deinstall everything, installed the 6.06 and now it's working as expected. Now I have no more time to play with the new release. I will wait for the next 7.xx patch to make further trials. I know that the 8.00 is released, but i'm scared to buy it because of the experience with 7.xx Best regards a...
- Tue Dec 19, 2006 7:05 am
- Forum: VCL
- Topic: Minimum and maximum values
- Replies: 16
- Views: 10684
Hi Spea_User, I forgot to tell you that you should have BCB 6 Update 4 installed to have v7.07 working fine. I'd recommend you to install any TeeChart version you may have on your machine, install BCB 6 Update 4 and reinstall TeeChart v7.07. The builder is updated up to update 4 and teechart v.7.07...
- Mon Dec 18, 2006 3:56 pm
- Forum: VCL
- Topic: Minimum and maximum values
- Replies: 16
- Views: 10684
Hi Spea_User, I forgot to tell you that you should have BCB 6 Update 4 installed to have v7.07 working fine. I'd recommend you to install any TeeChart version you may have on your machine, install BCB 6 Update 4 and reinstall TeeChart v7.07. The builder is updated up to update 4 and teechart v.7.07...
- Mon Dec 18, 2006 3:44 pm
- Forum: VCL
- Topic: Minimum and maximum values
- Replies: 16
- Views: 10684
Hello, Your project works fine for me here. I've attached it at the newsgroups. I also included the projects .exe. Can you please test if it works fine at your end? Have you checked that your BCB6 has v7.07 packages properly installed? Are v7.07 packages enabled at Project\Options\Packages and are ...
- Mon Dec 18, 2006 3:15 pm
- Forum: VCL
- Topic: Minimum and maximum values
- Replies: 16
- Views: 10684
It works fine for me here using your project and adding the color parameter at the AddXY method call, as I told you in my previous message. void __fastcall TForm1::Button1Click(TObject *Sender) { int i; for (i=0; i<1000; i++) { graMeasDistr->Series[0]->AddXY(i, i, "fali", clTeeColor); } } It doesn'...
- Mon Dec 18, 2006 2:43 pm
- Forum: VCL
- Topic: Minimum and maximum values
- Replies: 16
- Views: 10684
- Mon Dec 18, 2006 2:20 pm
- Forum: VCL
- Topic: Minimum and maximum values
- Replies: 16
- Views: 10684
Which TeeChart version are you using? What I posted works fine for me here usinv 7.07 VCL which is the latest version available at the client area for BCB 6. Now I have installed 7.07 VCL but unbelievably I can't insert a serie values! for (int i=0; i<1000; i++) { pLineSeries->AddXY(i,i,""); } but ...
- Mon Dec 18, 2006 1:22 pm
- Forum: VCL
- Topic: Minimum and maximum values
- Replies: 16
- Views: 10684
This is because you are not populating the series properly, instead of using Add method with 2 integer parameters you should AddXY method: for (int i=0; i<10; i++) { graFreqDistr->Series[0]->AddXY(i,i); } I try also addxy but i get the same result. it doesn't work! I want to have minimum and maximu...
- Mon Dec 18, 2006 9:02 am
- Forum: VCL
- Topic: Minimum and maximum values
- Replies: 16
- Views: 10684
Minimum and maximum values
Hi! I have a problem with teechart (Borland c++ Builder 6) I want to set the maximum and minimun values on bottom axes because i draw many series with values too different I use this code: oChart->LeftAxis->Automatic = FALSE; oChart->LeftAxis->SetMinMax (2.5,5); but, after this code, on the axis the...