I need to force teeChart to use the english number format 123.456 ("." is the decimal point) instead of the german 123,456 where "," ist the decimal point. This should be done regardles of the enviroment settings of the computer.
I use the "OnGetAxisLabelTchart1(...)" event to do this:
Code: Select all
void CPlotView::OnGetAxisLabelTchart1(long Axis, long SeriesIndex, long ValueIndex, BSTR* LabelText)
{
BSTR d=L"12.3"; // only for testing
*LabelText = d;
}
Is the any way to fix it or another possibility to cange the number format regardless of the enviroment settings of the PC?