Skip to content

Commit

Permalink
Add multiple axes test
Browse files Browse the repository at this point in the history
  • Loading branch information
dy committed Jan 15, 2018
1 parent 1fef351 commit 41499e8
Showing 1 changed file with 44 additions and 0 deletions.
44 changes: 44 additions & 0 deletions test/image/mocks/gl2d_multiple-traces-axes.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,44 @@
{
"data": [
{
"x": [
0,
1,
2
],
"y": [
0,
1,
2
],
"mode": "lines+markers",
"type": "scattergl"
},
{
"x": [
0,
1,
2
],
"y": [
2,
1,
0
],
"mode": "lines+markers",
"type": "scattergl",
"yaxis": "y2"
}
],
"layout": {
"width": 700,
"height": 500,
"yaxis": {
"side": "left"
},
"yaxis2": {
"side": "right",
"overlaying": "y"
}
}
}

0 comments on commit 41499e8

Please sign in to comment.