I am getting a JSON like this :
{
"count": {
"2018-03-26 07": 4,
"2018-03-26 08": 21,
"2018-03-26 09": 34,
"2018-03-26 10": 43,
"2018-03-26 11": 64,
"2018-03-26 12": 48,
"2018-03-26 13": 31,
"2018-03-26 14": 45,
"2018-03-26 15": 48,
"2018-03-26 16": 45,
"2018-03-26 17": 40,
"2018-03-26 18": 44,
"2018-03-26 19": 58,
"2018-03-26 20": 49,
"2018-03-26 21": 60,
"2018-03-26 22": 46,
"2018-03-26 23": 35,
"2018-03-27 00": 34,
"2018-03-27 01": 36,
"2018-03-27 02": 16,
"2018-03-27 03": 23,
"2018-03-27 04": 14,
"2018-03-27 05": 12,
"2018-03-27 06": 12,
"2018-03-27 07": 1
}
}
Now to get all values from this dict I tried [dict allValues] but it is returning dictionary in unordered format. It will take more effort to create these keys manually and get all the values in ordered manner. What i want is all these value (4,21,34,...) in the same order as they are coming because I have to use these values to draw some kind of graph. Is there a better way to do this?