![]() | 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: | Pen seems to be still drawn in GDIPlus after setting to be inVisible | ||
---|---|---|---|
Product: | VCL TeeChart | Reporter: | yeray alonso <yeray> |
Component: | Canvas | Assignee: | Steema Issue Manager <issuemanager> |
Status: | CONFIRMED --- | ||
Severity: | enhancement | CC: | david, mertelmeyer |
Priority: | --- | ||
Version: | 140512 | ||
Target Milestone: | --- | ||
Hardware: | PC | ||
OS: | Windows | ||
URL: | http://www.teechart.net/support/viewtopic.php?f=3&t=15017&view=unread#unread | ||
Chart Series: | --- | Delphi / C++ Builder RAD IDE Version: |
Description
yeray alonso
2014-06-26 08:16:03 EDT
Pen.Visible is not the problem. The pen is hidden, but the problem is GDI+ antialias, leaves one extra pixel at polygon (pie slice) right/bottom corner. And the background appears. This works fine: with TTeeGDIPlus.Create(Self) do begin TeePanel:=Chart1; Active:=True; Antialias:=False; <----- disable antialias end; The solution is not easy. Maybe using polygon-offset GDI+ api parameters. |