I am looking to create a line graph similar to the example shown here. My JSON data is structured as follows:
[
{
"timeStamp": "23:33:58",
"usage": 90
},
{
"timeStamp": "00:04:03",
"usage": 94
},
{
"timeStamp": "00:54:04",
"usage": 82
},
{
"timeStamp": "01:04:00",
"usage": 100
},
{
"timeStamp": "01:34:02",
"usage": 97
}
]
However, I am facing an issue with the x-axis as it does not start at 23:33:58 but instead begins at 00:00:00 (12:00 AM) and goes until 23:59:00. This setup does not meet my requirements, so I am seeking guidance on how to solve this problem. Any assistance would be greatly appreciated.