Is is possible to use dtickrange with the Python offline plotting?
I get āInvalid property specified for object of type plotly.graph_objs.layout.YAxis: ādtickrangeāā when I try.
I could be using the wrong syntax, since I couldnāt find a good example of the Python usage.
@crj11, There is no dtickrange key for yaxis or xaxis If you define
dtickrange
yaxis
xaxis
xaxis=dict(range=[2,5]) then the ticks will be marked between 2 and 5. Eventually you can set dtick=1, i.e. the distance between two consecutive ticks is 1.
xaxis=dict(range=[2,5])
dtick=1