new-line character
new-line character
Hi,
I used TeeChart 7.0.1.4 version. In this version, I used '/r/n' as new-line character of X aisx's label. It works correctly.
I upgraded TeeChart OCX to 7.0.1.5 version. But new-line character does not work correctly.
The new-line character is changed?
I used TeeChart 7.0.1.4 version. In this version, I used '/r/n' as new-line character of X aisx's label. It works correctly.
I upgraded TeeChart OCX to 7.0.1.5 version. But new-line character does not work correctly.
The new-line character is changed?
Re: new-line character
Hello,
What kind of application are you developing for?
In VB6 you can use vbNewLine, ie:
What kind of application are you developing for?
In VB6 you can use vbNewLine, ie:
Code: Select all
TChart1.AddSeries scBar
Dim i As Integer
For i = 0 To 4
TChart1.Series(0).Add 25 + Rnd * 75, "hello" + vbNewLine + "label" + Str$(i), clTeeColor
Next i
Best Regards,
Yeray Alonso Development & Support Steema Software Av. Montilivi 33, 17003 Girona, Catalonia (SP) | |
Please read our Bug Fixing Policy |
Re: new-line character
I'm developing c++ MFC application.
Re: new-line character
Hi Seth,
\n seems to work fine for me with the Dragging Points example shipped with the installation at "\Examples\Visual C++\Version 6\Dragging Points" in VS2010.Seth wrote:I'm developing c++ MFC application.
Code: Select all
m_ctrlChart.AddSeries(scBar);
int i;
for (i = 0; i < 4; i++) {
m_ctrlChart.Series(0).Add(25 + rand() * 75, "hello\nlabel" + i, clTeeColor);
}
Best Regards,
Yeray Alonso Development & Support Steema Software Av. Montilivi 33, 17003 Girona, Catalonia (SP) | |
Please read our Bug Fixing Policy |
Re: new-line character
In all TeeChart OCX Version(including 7.0.1.4 and 7.0.1.5), '\n' is used as new-line character?
Re: new-line character
Hi Seth,
It depends on the IDE.
With VB6 and TeeChart v7.0.1.5 I could use vbNewLine.
With VS2010 you should be able to use "\n".
If you still find problems with it, please try to arrange a simple example project we can run as-is to reproduce the problem here.
Thanks in advance.
It depends on the IDE.
With VB6 and TeeChart v7.0.1.5 I could use vbNewLine.
With VS2010 you should be able to use "\n".
If you still find problems with it, please try to arrange a simple example project we can run as-is to reproduce the problem here.
Thanks in advance.
Best Regards,
Yeray Alonso Development & Support Steema Software Av. Montilivi 33, 17003 Girona, Catalonia (SP) | |
Please read our Bug Fixing Policy |
Re: new-line character
I want to try to test example(\Examples\Visual C++\Version 6\Dragging Points).
but my examples are built failed.
Can you send me 'Dragging Points' example that works fine?
(hjlee@m2soft.co.kr)
OR
Can you try to test example with 7.0.1.5 Unicode version OCX?
but my examples are built failed.
Can you send me 'Dragging Points' example that works fine?
(hjlee@m2soft.co.kr)
OR
Can you try to test example with 7.0.1.5 Unicode version OCX?
Re: new-line character
Hello Seth,
I'm afraid I've not been able to reproduce the problem here by using the TeeChart Pro ActiveX v7.0.1.5. All seems to work fine here related to the line break on axis labels. I'm using the '\r' to separate the text lines.
I've attached a simple VC6 example with which I'm doing the tests. Could you please check if it's working fine for you by using the same sample ?
I'm afraid I've not been able to reproduce the problem here by using the TeeChart Pro ActiveX v7.0.1.5. All seems to work fine here related to the line break on axis labels. I'm using the '\r' to separate the text lines.
I've attached a simple VC6 example with which I'm doing the tests. Could you please check if it's working fine for you by using the same sample ?
- Attachments
-
- demovc7015.rar
- (470.11 KiB) Downloaded 1618 times
Pep Jorge
http://support.steema.com
http://support.steema.com
Re: new-line character
Thank you very much for your sample!!
I checked this problem by using your sample.
And then I succeeded to reproduce this problem!
My reproduction steps are as follow:
1. I registered 7.0.1.4 OCX by using "RegSvr32" (https://www.dropbox.com/s/yc86l32jk1dtkja/1.png).
2. I checked your sample (https://www.dropbox.com/s/qrcf3gvn9hwjwoh/1-1.png).
3. I registered 7.0.1.5 OCX by using "RegSvr32" (https://www.dropbox.com/s/8bc2dl5pckexvc5/2.png).
4. I checked your sample (https://www.dropbox.com/s/fw1k4umazvt7rpd/2-1.png).
I didn't edit your sample.
I checked this problem by using your sample.
And then I succeeded to reproduce this problem!
My reproduction steps are as follow:
1. I registered 7.0.1.4 OCX by using "RegSvr32" (https://www.dropbox.com/s/yc86l32jk1dtkja/1.png).
2. I checked your sample (https://www.dropbox.com/s/qrcf3gvn9hwjwoh/1-1.png).
3. I registered 7.0.1.5 OCX by using "RegSvr32" (https://www.dropbox.com/s/8bc2dl5pckexvc5/2.png).
4. I checked your sample (https://www.dropbox.com/s/fw1k4umazvt7rpd/2-1.png).
I didn't edit your sample.
Re: new-line character
Hello Seth,
I've just sent a directly to you mail account which includes an ocx version which is working fine here so you can test it there.
Please take a look and let us know something.
I've just sent a directly to you mail account which includes an ocx version which is working fine here so you can test it there.
Please take a look and let us know something.
Pep Jorge
http://support.steema.com
http://support.steema.com
Re: new-line character
I'm sorry.
He who use that mail account changed company.
So, I changed mail account to hjlee@m2soft.co.kr.
please, Can you resend me that e-mail(includes OCX)?
He who use that mail account changed company.
So, I changed mail account to hjlee@m2soft.co.kr.
please, Can you resend me that e-mail(includes OCX)?
Re: new-line character
I checked this problem by using OCX you sent.
When I use this OCX, the sample program and my program work fine.
By the way, Is this OCX Unicode version?
When I use this OCX, the sample program and my program work fine.
By the way, Is this OCX Unicode version?
Re: new-line character
Hi Seth,
TeeChart ActiveX is Full Unicode since v2010 as you can read in the release notes:Seth wrote:By the way, Is this OCX Unicode version?
* Transparent Unicode support
TeeChart ActiveX version now supports unicode input/output for all versions. Languages
may changed for all single and double-byte charactersets at design and/or runtime.
Best Regards,
Yeray Alonso Development & Support Steema Software Av. Montilivi 33, 17003 Girona, Catalonia (SP) | |
Please read our Bug Fixing Policy |
Re: new-line character
Hi Seth,
Ah, sorry, just realised you are in TeeChart v7.
It seems that the version Pep sent you isn't unicode. If you need a unicode version we can prepare one for you.
Ah, sorry, just realised you are in TeeChart v7.
It seems that the version Pep sent you isn't unicode. If you need a unicode version we can prepare one for you.
Best Regards,
Yeray Alonso Development & Support Steema Software Av. Montilivi 33, 17003 Girona, Catalonia (SP) | |
Please read our Bug Fixing Policy |