![]() | 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: | Legend highlighting does not match series highlighting | ||
|---|---|---|---|
| Product: | VCL TeeChart | Reporter: | h.hasenack <hans> |
| Component: | Legend | Assignee: | Steema Issue Manager <issuemanager> |
| Status: | RESOLVED FIXED | ||
| Severity: | minor | CC: | david, sandra |
| Priority: | --- | ||
| Version: | 150901 | ||
| Target Milestone: | --- | ||
| Hardware: | PC | ||
| OS: | Windows | ||
| Chart Series: | --- | Delphi / C++ Builder RAD IDE Version: | |
|
Description
h.hasenack
2015-12-18 05:10:59 EST
I have been trying to debug and fix this, but it appears to be quite hard. Maybe later. I Hope Steema will provide an "easy fix" soon. By the way, our bugtracker issue number is 21486 https://mantis.sg-assetmanagement.nl/view.php?id=21486 (Not publicly accessible AFAIK) Fixed. There was a missing check of series Visible, at Chart.pas:
function NotLegendVisible(UpTo:Integer):Integer;
var t : Integer;
begin
result:=0;
for t:=0 to UpTo do
if (not Series[t].Visible) or (not Series[t].Legend.Visible) then
Inc(result);
end;
|