I have some data representing answer questions at a specific time, for example.
Question 1 was answered at 00:00:20. I am trying to use AChartEngine to represent this, but no luck. First of all, I cannot have the value Y as this format for any reason, I believe that it is not supported or needs to be configured, which until now could not find a way to achieve.
My chart should have an X-axis at the end with the values ββ1, 2, 3, 4, 5 .... and a Y-axis from 00:00:20, 00:00:15, 00:00:05, 00:00 : 10 .... The time reached in each question is stored in the "Time Object" field. I try this approach:
private void fillData() { int i = 0; for (Answer answer : getAnswers()) { i++; if (answer.getEstimatedAnswerTime() != null) { Log.d(TAG, String.valueOf(answer.getEstimatedAnswerTime())); myQuestionsTimeSeries.add(new Date(DateTimeHelper.getMillisFromTime(answer.getEstimatedAnswerTime())), i); } } }
The first problem, cannot get the time values ββin Y-Axis and not display correctly. See screenshot below.

I guess you guessed it. Thank you in advance.
source share