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 - [TF02012892] If chart title and other strings are Japanese and TeeOpenGL is active...
Summary: [TF02012892] If chart title and other strings are Japanese and TeeOpenGL is a...
Status: CONFIRMED
Alias: None
Product: .NET TeeChart
Classification: Unclassified
Component: Others (show other bugs)
Version: unspecified
Hardware: All All
: Low normal
Target Milestone: ---
Assignee: Steema Issue Manager
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2008-03-11 11:04 EDT by narcís calvet
Modified: 2015-02-24 10:09 EST (History)
1 user (show)

See Also:
Chart Series: ---
Delphi / C++ Builder RAD IDE Version:


Attachments

Note You need to log in before you can comment on or make changes to this bug.
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;