I am using cufflink iplot. the default hover date info only include month and year. How to include day as well? like (Jan 24 2022, value) instead of (Jan 2022, value) by default? and there is not hovermode keyword. Thanks
import cufflinks as cf
from plotly.offline import iplot #, init_notebook_mode
df.iplot(asFigure=True, xTitle='Date')
I tried a simple example and the day appears for me in the hovertemplate. Are the datetimes in your
dfof typedatetime64[ns]?Another thing you could try is modifying the
hovertemplateitself. Something like the following (assuming that the x value is the datetime and the y value is the value):