Has anyone else run into issues with the plotly titles and y and x axis titles not updating?
scatter = go.Bar(x = [feed_date for feed_date in feed_records[0]],
y = [feed_date for feed_date in feed_records[1]],
name = 'Feeding Records By Date')
self.feed_graph.data = scatter
self.feed_graph.layout.title = 'Feed Records By Prey Count'
self.feed_graph.layout.xaxis.title = 'date'
self.feed_graph.layout.yaxis.title = 'prey count'
This is giving me the below but according to the docs I would have thought it should be showing my titles and such.