I'm trying to add vertical guides on the category axis to show sport activities on my chart. I have a variable in my json file called UNIX_TIMESTAMP(start_time) which is a Unix timestamp. I use this field to show on my category axis. Here is a codepen is created with my code for the chart: https://codepen.io/thomasdesaranno-r0629748/pen/jJrQgO
this is an example of my JSON file:
{
"id": "NULL",
"bg": "NULL",
"UNIX_TIMESTAMP(start_time)": 1546603542000,
"duration": 30,
"sport_type": "running",
"average_hr": 60,
"average_speed": 30,
"calories": 496,
"fat_percentage_of_calories": 36,
"food": "NULL",
"ci": "NULL",
"emotion": "NULL"
}
Does anybody know why my guides don't show?