Page 1 of 1

TeeChart5 Language support

Posted: Fri Sep 11, 2009 10:30 am
by 9528318
We are still using TeeChart5 for one of our projects, and we are asked to translate the software to Japanese. Is it possible to use Japanese characters as axis labels ?

I have tried to set the fontname and charset of the Axis Label property (this is a horizontal bar chart).

Code: Select all

ITeeFontPtr font = m_Chart->Axis->Left->Labels->Font;
font->Name = _T("MS Mincho");
font->Charset = SHIFTJIS_CHARSET;
font->Size = 20;
but when I add a point

Code: Select all

Series->AddXY(dValueX, dValueY, (_bstr_t) cstr, clTeeColor);
I only see questionmarks "??????" as a label. Do I need to convert the strings ? Or is there something else I'm doing wrong ?

Re: TeeChart5 Language support

Posted: Mon Sep 14, 2009 8:18 am
by narcis
Hi xpar,

I'm afraid not. Unicode support was added in later versions of TeeChart.

Re: TeeChart5 Language support

Posted: Mon Nov 23, 2009 8:25 pm
by 9529800
What is the earliest version of TeeChart Ax that is Unicode enabled? I'm using 7.0.0.6 and it seems that it is not.

Re: TeeChart5 Language support

Posted: Tue Nov 24, 2009 4:02 pm
by yeray
Hi jalen,

It came with TeeChart v7.0.1.2. Please try the latest version available at the client area.

Re: TeeChart5 Language support

Posted: Tue Nov 24, 2009 7:06 pm
by 9529800
thanks, I'll try that.