I was wondering how to adjust the time format in the label of LB Hourly plot from “6 am” to “06:00”, “12pm” to “12:00” and “6pm” to “18:00” etc. ? Thanks for any reply.
this is also my problem
Hi @Jurrijn @letmegraduate
You need to rewrite the ladybug source python code. The path is C:\Program Files\ladybug_tools\python\Lib\site-packages\ladybug\hourlyplot.py
#_hour_text.append(‘{} {}’.format(hr_val, am_pm))
_hour_text.append(‘00:00’,)
_hour_text.append(‘06:00’,)
_hour_text.append(‘12:00’,)
_hour_text.append(‘18:00’,)
_hour_text.append(‘24:00’,)
Thank you for your help. I would try