How to remove axis ticks and keep title

Hi guys, I’ve managed to remove the axis line but somehow the axis number lines are still visible how do I remove them? Thanks :slight_smile:

layout = go.Layout(title='<b>Share Price vs Net Margin</b>',
font=dict(family="Gilroy-Extrabold",size=19),
xaxis=dict(title='NetMargin',ticklen=20,showticklabels=False,
zeroline=False,titlefont=dict(family="Gilroy",size=20)),
yaxis=dict(title='YTD',ticklen=20,zeroline=False,showticklabels=False,
titlefont=dict(family="Gilroy",size=20)))

EDIT:

i just managed to fix it, for those who wants the answer just add
ticks=""

Add ticks where?