-
-
Notifications
You must be signed in to change notification settings - Fork 6k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Clearing all highlighted values #171
Comments
It actually is exposed, as |
@danielgindi I honestly have no idea how I missed that.. It's possible I was looking for that property on the data set, not the chart itself. Either way, sorry about that! Thanks for the help! |
No problem! Have fun! On Mon, Jun 29, 2015 at 11:28 PM, Matt Cooksey notifications@github.com
|
Is exposed highlightValues in Combined Chart View? It does not appear to me |
@carlosandresSanchez yes it is. In my case, I'm using a CombinedChartView and have an instance of that class named chartView. In order to clear all highlighted values, I had to do: [self.chartView highlightValues:NULL]; Hope this helps! |
@mcooksey good! This helps me a lot!! |
in Version 3.0.2 I use a combinedChartView for different data sets. When switching over to a new data set I call update: I overlooked the function |
I am highlighting a value on my chart with a BalloonMarker when it is tapped, like what is done in the ChartsDemo application.
Now, I need to remove a selection programmatically. I looked in the Android documentation and saw in "Interacting with the Chart" it says:
highlightValues(Highlight[] highs): Highlights the values at the given indices in the given DataSets. Provide null or an empty array to undo all highlighting.
However, this doesn't seem to be exposed to my object anywhere. Is this implemented? Any ideas how to accomplish this?
The text was updated successfully, but these errors were encountered: