Say I have the following plot:
from plotly.offline import download_plotlyjs, init_notebook_mode, plot, iplot
import plotly.graph_objs as go
trace1 = go.Scatter(x=[1,2,3], y=[4,5,6], marker={'color': 'red', 'symbol': 104, 'size': 10},
mode="markers+lines", text=["one","two","three"], name='1st Trace')
data=go.Data([trace1])
layout=go.Layout(xaxis={'title':'x1', 'showline':True}, yaxis={'title':'y1', 'showline':True}, height=380, width=380)
figure1=go.Figure(data=data,layout=layout)
init_notebook_mode(connected=True)
iplot(figure1, show_link=False)
I want to increment the x-ticks by 1, but while doing that the y-axis also moves 1 unit to the right (i.e., the x-axis starts at 2 now instead of 1):
figure1['data'][0]['x'] = (2,3,4)
iplot(figure1)
I want to retain the original axis layout (i.e., I still want the x-axis to start at 1, and not at 2, even though I incremented the x-axis values). I tried adding tickvals
and ticktext
to the xaxis
parameter in layout
, but that doesn’t seem to have any effect:
figure1['layout'] = {'xaxis':{'title':'x2',
'tickvals':[0,1,2,3,4,5],
'ticktext':[0,1,2,3,4,5],
'showline':True
},
'yaxis':{'title':'y1', 'showline':True},
'height':380,
'width':380
}
iplot(figure1)
I also tried using tickmode='linear'
and ticks='outside'
, but they don’t have any effect either.
How can I achieve this?