Need one tick mark only per day

Hello.

Bokeh novice here. Thank you in advance.

I’d like to have just ONE tick mark per day on the x axis. I’m seeing multiple tick marks per day with my data set. If I change the tick label to show the time (not just the date), I understand why Bokeh does this. But still, I want just one tick mark per day.

I want to keep the time in my data source so I can see that with hover.

Any advice?

You want to set the ticker for the axis to something like

DaysTicker(days=list(range(1, 32)))

Thank you. I will give this a try.

This topic was automatically closed 90 days after the last reply. New replies are no longer allowed.