![]() | 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: | Setting Transparency property for TFastLineSeries results in segfault 11 | ||
|---|---|---|---|
| Product: | FireMonkey TeeChart | Reporter: | Vsevolod V Gromov <gromov.vsevolod> |
| Component: | Series | Assignee: | Steema Issue Manager <issuemanager> |
| Status: | CONFIRMED --- | ||
| Severity: | critical | CC: | gromov.vsevolod, sandra |
| Priority: | Normal | ||
| Version: | 150120 | ||
| Target Milestone: | --- | ||
| Hardware: | Other | ||
| OS: | Android | ||
| Chart Series: | FastLine | Delphi / C++ Builder RAD IDE Version: | RAD XE7 |
| Attachments: |
Callstack at segfault
Test project |
||
I suspect though, it's a more common bug, related not only to fast line series, but to any series transparency. Hello Vsevolod V Gromov,
Unfortunately, we can't reproduce the problem you are experiencing, using a simple code as next in latest TeeChart Pro VCL/FMX 2015
void __fastcall TForm1::FormCreate(TObject *Sender)
{
Series1->FillSampleValues(10);
Series1->Pen->Width = 3;
Series1->Transparency = TTeeTransparency(50);
}
Could you attach a simple project where the problem appears?
Created attachment 397 [details]
Test project
Simple test project, I ran it both, on Android emulators and real hardware, as soon as "Transparency" button is clicked, AV occurred.
software used:
C++Builder XE7 Upd1 Version 21.0.17707.5020
Beta Android hotfix for Lollipop
TeeChart Full Source 2015.14.150120,
re-built from source to accomodate Android hotfix.
(In reply to sandra pazos from comment #2) > Hello Vsevolod V Gromov, > Unfortunately, we can't reproduce the problem you are experiencing, using a > simple code as next in latest TeeChart Pro VCL/FMX 2015 > void __fastcall TForm1::FormCreate(TObject *Sender) > { > Series1->FillSampleValues(10); > Series1->Pen->Width = 3; > Series1->Transparency = TTeeTransparency(50); > } > Could you attach a simple project where the problem appears? Project attached. Maybe it's beta Android Lollipop hotfix infulence... Hello Vsevolod V Gromov, The problem is reproduced using the project you have attached. Many thanks for your help. Regards. |
Created attachment 393 [details] Callstack at segfault Executng the following code on Android results in segfault on Transparency assignment: (C++ Builder XE7 Upd 1, Android Lollipop hotfix installed) m_osc = new TFastLineSeries(0); ES_ASSERT(m_osc); m_osc->Transparency = TTeeTransparency(10); // <<< Segfault here Snapshot of callstack is attached.