Hi @ddavo, I donβt think there is a built in function for that but you could use html tags.
import plotly.graph_objects as go
fig = go.Figure(
go.Scatter(
x=[1 ,2, 3],
y=[1 ,2, 3]
)
)
fig.update_layout(
xaxis={
'tickmode': 'array',
'tickvals': [1, 2, 3],
'ticktext': [
'a',
f"<span style='color:red'> b </span>",
'c'
]
}
)
creates:
mrep ticks