Steema Issues Database

Note: This database is for bugs and wishes only. For technical support help, if you are a customer please visit our online forums;
otherwise you can use StackOverflow.
Before using this bug-tracker we recommend a look at this document, Steema Bug Fixing Policy.



Bug 1150

Summary: [TF02012892] If chart title and other strings are Japanese and TeeOpenGL is active...
Product: .NET TeeChart Reporter: narcís calvet <narcis>
Component: OthersAssignee: Steema Issue Manager <issuemanager>
Status: CONFIRMED ---    
Severity: normal CC: narcis
Priority: Low    
Version: unspecified   
Target Milestone: ---   
Hardware: All   
OS: All   
Chart Series: --- Delphi / C++ Builder RAD IDE Version:

Description narcís calvet 2015-02-24 07:09:51 EST
If chart title and other strings are Japanese and TeeOpenGL is active, they are garbled.
See attached project reproducing this. [created:2008-03-11T11:04:46.000+01:00 reported by:narcis@steema.com reported in version:Build 3.2.2980.19081 (TeeChart for .NET)]
Comment 1 narcís calvet 2015-02-24 10:09:06 EST
The same problem exists with the VCL/FMX version:

uses
  VCLTee.Chart, VCLTee.TeeOpenGL, VCLTee.Series;

procedure TForm1.FormCreate(Sender: TObject);
var
  Chart1 : TChart;
  OpenGL : TTeeOpenGL;
begin
  Chart1:=TChart.Create(Self);
  Chart1.Parent:=Self;
  Chart1.Align:=alClient;
  Chart1.AddSeries(TLineSeries).FillSampleValues();
  Chart1.Title.Text.Add('中央から');

  OpenGL:=TTeeOpenGL.Create(Self);
  OpenGL.TeePanel:=Chart1;
  OpenGL.Active:=True;
end;