![]() | 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: | [TV52016263] The legend text looks blurred when OpenGL is active. At least since ... | ||
---|---|---|---|
Product: | VCL TeeChart | Reporter: | yeray alonso <yeray> |
Component: | Canvas | Assignee: | Steema Issue Manager <issuemanager> |
Status: | CONFIRMED --- | ||
Severity: | major | CC: | pawel.kaluza, sandra |
Priority: | Normal | ||
Version: | unspecified | ||
Target Milestone: | --- | ||
Hardware: | All | ||
OS: | All | ||
Chart Series: | --- | Delphi / C++ Builder RAD IDE Version: |
Description
yeray alonso
2014-06-17 07:03:06 EDT
It concerns all text labels: axis label / chart title / legend independent of OpenGL options (Font Style / Antialias / DrawStyle). The example from the old tracking system was doing just this: uses Chart, TeeGLCanvas, Series, TeeConst; var Chart1: TChart; procedure TForm1.FormCreate(Sender: TObject); var i: Integer; begin Caption:=TeeMsg_Version; Chart1:=TChart.Create(Self); Chart1.Parent:=Self; Chart1.Align:=alClient; Chart1.Canvas:=TGLCanvas.Create; for i:=0 to 4 do Chart1.AddSeries(TLineSeries).FillSampleValues; Chart1.Aspect.Orthogonal:=false; Chart1.Aspect.Zoom:=55; Chart1.Legend.CheckBoxes:=true; end; |