8000 Merge pull request #2340 from plotly/bump-line2d · plotly/plotly.js@ef2bff1 · GitHub
[go: up one dir, main page]

Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Commit ef2bff1

Browse files
authored
Merge pull request #2340 from plotly/bump-line2d
Bump line2d
2 parents eeef0ed + 1e4362c commit ef2bff1

File tree

4 files changed

+60
-87
lines changed

4 files changed

+60
-87
lines changed

package-lock.json

Lines changed: 3 additions & 86 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,7 @@
9999
"polybooljs": "^1.2.0",
100100
"regl": "^1.3.1",
101101
"regl-error2d": "^2.0.3",
102-
"regl-line2d": "^2.1.2",
102+
"regl-line2d": "^2.1.4",
103103
"regl-scatter2d": "^2.1.13",
104104
"right-now": "^1.0.0",
105105
"robust-orientation": "^1.1.3",
23.7 KB
Loading
Lines changed: 56 additions & 0 deletions
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)
0