Skip to content

Commit 9a31ccd

Browse files
committed
Add scatter/scattergl lines mock
1 parent a9f545e commit 9a31ccd

File tree

1 file changed

+56
-0
lines changed

1 file changed

+56
-0
lines changed
+56
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,56 @@
1+
{
2+
"data": [
3+
{
4+
"x" : [ 20, 20 ],
5+
"y" : [ 40, 30 ],
6+
"type" : "scattergl",
7+
"mode" : "lines+markers",
8+
"name" : "Same X-points scattergl"
9+
},
10+
11+
{
12+
"x" : [ 21, 21 ],
13+
"y" : [ 40, 30 ],
14+
"type" : "scatter",
15+
"mode" : "lines+markers",
16+
"name" : "Same X-points scatter"
17+
},
18+
19+
{
20+
"x" : [ 25, 30 ],
21+
"y" : [ 25, 30 ],
22+
"type" : "scattergl",
23+
"mode" : "lines+markers",
24+
"name" : "All Different scattergl"
25+
},
26+
27+
{
28+
"x" : [ 25, 30 ],
29+
"y" : [ 30, 35 ],
30+
"type" : "scatter",
31+
"mode" : "lines+markers",
32+
"name" : "All Different scatter"
33+
},
34+
35+
{
36+
"x" : [ 15, 20 ],
37+
"y" : [ 23, 23 ],
38+
"type" : "scattergl",
39+
"mode" : "lines+markers",
40+
"name" : "Same Y-points scattergl"
41+
},
42+
43+
{
44+
"x" : [ 15, 20 ],
45+
"y" : [ 25, 25 ],
46+
"type" : "scatter",
47+
"mode" : "lines+markers",
48+
"name" : "Same Y-points scatter"
49+
}
50+
],
51+
"layout": {
52+
"showlegend": false,
53+
"width": 800,
54+
"height": 500
55+
}
56+
}

0 commit comments

Comments
 (0)