Community Tip - Stay updated on what is happening on the PTC Community by subscribing to PTC Community Announcements. X
While the service is loading Bar chart is showing the word "error" in the place of xaxis values. Once the service passed output to the xaxis values of bar chart, the word "error" is replaced with the xaxis values.
The word error should not be displayed at all. How to fix this ?
Solved! Go to Solution.
@AP_9587236 : This is already being worked upon as part of an enhancement by our R&D team.
@AP_9587236 : This is already being worked upon as part of an enhancement by our R&D team.
Okay, thanks
You're accessing ArrayList index that is way out of bounds, because you are trying to use value as an index. You need to find index of value to return it.
You have to override getAxisLabel(), the deprecated method getFormattedValue(float, AxisBase) is never called. Kotlin example:
Thanks