Steema Issues Database

Note: 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.



Bug 1280 - Some headers are missing
Summary: Some headers are missing
Status: RESOLVED FIXED
Alias: None
Product: ActiveX TeeChart
Classification: Unclassified
Component: Visual C++ (show other bugs)
Version: unspecified
Hardware: PC Windows
: --- enhancement
Target Milestone: ---
Assignee: Steema Issue Manager
URL: http://stackoverflow.com/questions/32...
Keywords:
Depends on:
Blocks:
 
Reported: 2015-08-25 04:17 EDT by yeray alonso
Modified: 2015-08-25 08:48 EDT (History)
0 users

See Also:
Chart Series: ---
Delphi / C++ Builder RAD IDE Version:


Attachments

Note You need to log in before you can comment on or make changes to this bug.
Description yeray alonso 2015-08-25 04:17:06 EDT
The customer at StackOverflow wants to disable the Hover only from the bottom axis.
In VB6 this works:

TChart1.Axis.Bottom.Labels.Selected.Hover.Visible = False

In VC++ this doesn't work:

m_ctrlChart.GetAxis().GetBottom().GetLabels().GetSelected().GetHover().SetVisible(false);

This is the error I get:

error C2039: 'GetSelected' : is not a member of 'CAxisLabels'

This way doesn't work either, same error:

CAxisLabels labels = m_ctrlChart.GetAxis().GetBottom().GetLabels();
labels->getSelected()....