![]() | Steema Issues DatabaseNote: 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. |
| Summary: | [TF02012892] If chart title and other strings are Japanese and TeeOpenGL is active... | ||
|---|---|---|---|
| Product: | .NET TeeChart | Reporter: | narcís calvet <narcis> |
| Component: | Others | Assignee: | 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
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;
|