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

Summary: Some headers are missing
Product: ActiveX TeeChart Reporter: yeray alonso <yeray>
Component: Visual C++Assignee: Steema Issue Manager <issuemanager>
Status: RESOLVED FIXED    
Severity: enhancement    
Priority: ---    
Version: unspecified   
Target Milestone: ---   
Hardware: PC   
OS: Windows   
URL: http://stackoverflow.com/questions/32110700/disable-hover-only-for-x-axis
Chart Series: --- Delphi / C++ Builder RAD IDE Version:

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()....