This method always returns false. When debugging this method, it calls another method within the TimeLine class, called: containsDomainValue().
This method contains the following code:
Code: Select all
return true;
I have a DateAxis on which I use the setMinimumDate() and setMaximumDate(). This allows me to specify a specific time span I want to see (even if my data contains more). Because I'm doing some proeccesing with the data I first want to check if the new data is within the visible scope of my axis. If true I can do my processing and if false I do not have to process it, because it's not visible on the axis. That's why I tought "isHiddenValue" would tell me if the new data is wihtin the visible time span or not.
Is there already a solutions for this 'bug', or am I making a mistake, or is there a workaround for me ?
Thanks so far,
Greetings Muriel