Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit bb23484

Browse files
committed
replace autotick
1 parent d0abad5 commit bb23484

File tree

6 files changed

+9
-9
lines changed

6 files changed

+9
-9
lines changed

_posts/plotly_js/basic/dot/2015-08-11-categorical-dot-plot.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@
6363
color: 'rgb(102, 102, 102)'
6464
}
6565
},
66-
autotick: false,
66+
tickmode: linear,
6767
dtick: 10,
6868
ticks: 'outside',
6969
tickcolor: 'rgb(102, 102, 102)'

_posts/plotly_js/basic/line-plots/2015-08-07-labelling-with-annotations.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@
6464
showticklabels: true,
6565
linecolor: 'rgb(204,204,204)',
6666
linewidth: 2,
67-
autotick: false,
67+
tickmode: linear,
6868
ticks: 'outside',
6969
tickcolor: 'rgb(204,204,204)',
7070
tickwidth: 2,

_posts/plotly_js/fundamentals/axes/2015-04-09-axes-ticks.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
var data = [trace1, trace2];
2020
var layout = {
2121
xaxis: {
22-
autotick: false,
22+
tickmode: linear,
2323
ticks: 'outside',
2424
tick0: 0,
2525
dtick: 0.25,
@@ -28,7 +28,7 @@
2828
tickcolor: '#000'
2929
},
3030
yaxis: {
31-
autotick: false,
31+
tickmode: linear,
3232
ticks: 'outside',
3333
tick0: 0,
3434
dtick: 0.25,

_posts/plotly_js/fundamentals/colorscales/2015-08-10-discretized-heatmap-colorscale.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@
5252
],
5353
type: 'heatmap',
5454
colorbar:{
55-
autotick: false,
55+
tickmode: linear,
5656
tick0: 0,
5757
dtick: 1
5858
}

_posts/plotly_js/fundamentals/images/2016-06-21-logo.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@
5252
title: "Moving Up, Moving Down<br><i>Percentile change in income between childhood and adulthood</i>",
5353
width: 700,
5454
xaxis: {
55-
autotick: false,
55+
tickmode: linear,
5656
dtick: 10,
5757
gridcolor: "rgba(102, 102, 102, 0.4)",
5858
linecolor: "#000",
@@ -66,7 +66,7 @@
6666
},
6767
yaxis: {
6868
anchor: "x",
69-
autotick: false,
69+
tickmode: linear,
7070
gridcolor: "rgba(102, 102, 102, 0.4)",
7171
gridwidth: 1,
7272
linecolor: "#000",

_posts/plotly_js/fundamentals/shapes/2015-08-10-venn-diagram-with-circle-shapes.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,13 +24,13 @@
2424
title: 'Venn Diagram with Circle Shapes',
2525
xaxis: {
2626
showticklabels: false,
27-
autotick: false,
27+
tickmode: linear,
2828
showgrid: false,
2929
zeroline: false
3030
},
3131
yaxis: {
3232
showticklabels: false,
33-
autotick: false,
33+
tickmode: linear,
3434
showgrid: false,
3535
zeroline: false
3636
},

0 commit comments

Comments
 (0)