Hello guys, I tried to hide ticktexts but only can do it with a little tricky way: set the color white.
However, the texts still take up space. Is there any better way to hide only ticktexts?
p.s. my data have duplicated datetimes and matches, so I treat them as string.
layout = go.Layout(
title = 'Overview: Player Age in SF and F<br>' + start_year + ' ~ ' + end_year,
xaxis = go.XAxis(
title = 'Time',
# tickmode = 'array',
# tickvals = '',
# ticktext = '',
# tickfont = go.Font(
# color = 'rgb(255, 255, 255)'
# )
),
yaxis = go.YAxis(
title = 'Age'
)
)