You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
As identified in #57 , and in alignment with the Highcharts (JS) API, the options.axes.plot_bands.PlotLine.value property expects a numeric value. Currently, if a Python datetime is supplied, it fails on type validation. However, if the datetime is converted to a POSIX timestamp it works correctly.
Therefore, it would be good for the PlotLine.value property to auto-convert datetime.datetime values to POSIX timestamps using the .timestamp() method.
The text was updated successfully, but these errors were encountered:
As identified in #57 , and in alignment with the Highcharts (JS) API, the
options.axes.plot_bands.PlotLine.value
property expects a numeric value. Currently, if a Pythondatetime
is supplied, it fails on type validation. However, if thedatetime
is converted to a POSIX timestamp it works correctly.Therefore, it would be good for the
PlotLine.value
property to auto-convertdatetime.datetime
values to POSIX timestamps using the.timestamp()
method.The text was updated successfully, but these errors were encountered: