![]() | 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: | Problem with Marks not always showing | ||
|---|---|---|---|
| Product: | VCL TeeChart | Reporter: | weatherdisplay <info> |
| Component: | Chart | Assignee: | Steema Issue Manager <issuemanager> |
| Status: | RESOLVED NOTABUG | ||
| Severity: | normal | CC: | marc |
| Priority: | --- | ||
| Version: | unspecified | ||
| Target Milestone: | --- | ||
| Hardware: | PC | ||
| OS: | Windows | ||
| Chart Series: | --- | Delphi / C++ Builder RAD IDE Version: | |
| Attachments: |
demo to show the bug
simplified test project |
||
|
Description
weatherdisplay
2017-06-05 19:03:29 EDT
Created attachment 770 [details]
simplified test project
I've simplified the project, clearing design time settings and using two charts: one to show the problem with the point at value=1 and the other one to show how it works fine with the point at value=2.
Note the problem seems to be introduced in v2016.19, because both charts show the "test" label with v2016.18.
Comment on attachment 770 [details]
simplified test project
Hi
Thanks for confirming
I am not able to use a version as old as v2016.18
as it is not compatible with Delphi Berlin
(unless a version that is compatible is able to be made available?
thanks
Brian
The problem appears to relate to the following property: Series.CalcVisiblePoints It is default True for many Series types including the case here for FastLine. Please set the following: Series.CalcVisiblePoints := false; (in the test example: chart2[1].CalcVisiblePoints := false;) We will check how default behaviour should be modified. the behaviour around that setting must have changed as the same code stopped working with the recent updates or did that setting now become true be default |