![]() | 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: | Custom labels disapear when you use FullScreen Tool | ||
|---|---|---|---|
| Product: | ActiveX TeeChart | Reporter: | yeray alonso <yeray> |
| Component: | Chart Tools | Assignee: | Steema Issue Manager <issuemanager> |
| Status: | RESOLVED FIXED | ||
| Severity: | normal | CC: | basset3, sandra |
| Priority: | Normal | ||
| Version: | TeeChart Pro Activex Control v2014 v2014.0.0.1 Release | ||
| Target Milestone: | --- | ||
| Hardware: | PC | ||
| OS: | Windows | ||
| URL: | http://www.teechart.net/support/viewtopic.php?f=1&t=15252 | ||
| Chart Series: | --- | Delphi / C++ Builder RAD IDE Version: | |
The problem is fixed in TeeChart Activex v2015.0.0.2. |
Custom labels disappear when you use FullScreen Tool. The same code works fine in VCL. Private Sub Form_Load() TChart1.AddSeries scPoint TChart1.Series(0).FillSampleValues 8 With TChart1.Axis.Bottom.Labels .Clear .Add 3, "One custom label" .Add 7, "Another custom label" End With TChart1.Tools.Add tcFullScreen End Sub Private Sub Command1_Click() TChart1.Tools.Items(0).Active = True End Sub