Skip to content

Commit 65eb813

Browse files
committed
Merge branch 'master' into update-ci
2 parents 81834e0 + 2719d7c commit 65eb813

14 files changed

+414
-17
lines changed

_data/jsversion.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
{
2-
"version": "3.3.0"
2+
"version": "3.4.0"
33
}

_data/orderings.json

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,9 @@
9797
"title",
9898
"visible",
9999
"showlegend",
100+
"showlegendsrc",
100101
"legend",
102+
"legendsrc",
101103
"legendrank",
102104
"legendgroup",
103105
"legendgrouptitle",

_data/plotschema.json

Lines changed: 184 additions & 10 deletions
Large diffs are not rendered by default.

_data/pyversion.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
{
2-
"version": "6.5.0"
2+
"version": "6.6.0"
33
}
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11

22
<a href="https://plotly.com/webinars/power-bi-models-beyond-the-static-dashboard/?utm_source=graphing_libraries&utm_medium=documentation&utm_campaign=power-bi-models-beyond-dashboard&utm_content=sidebar" target="_blank">
3-
<img src="https://images.prismic.io/plotly-marketing-website-2/aZc238FoBIGEgkS__power-bi-static-dashboards-311-square.jpg?auto=format,compress"
3+
<img src="https://images.prismic.io/plotly-marketing-website-2/aaHFvsFoBIGEg7rA_power-bi-webinar-square.jpg?auto=format,compress"
44
style="width: 200px; height: 200px; position: fixed; bottom: 10px; left: 50px" alt="Sign up for the upcoming webinar: Take Your Power BI Models Beyond the Static Dashboard">
55
</a>
Lines changed: 56 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,56 @@
1+
---
2+
name: Legend Title Click Behavior
3+
language: plotly_js
4+
suite: legends
5+
order: 12
6+
sitemap: false
7+
arrangement: horizontal
8+
---
9+
10+
var trace1 = {
11+
x: [1, 2, 3],
12+
y: [2, 1, 3],
13+
name: 'Trace 1',
14+
type: 'scatter'
15+
};
16+
17+
var trace2 = {
18+
x: [1, 2, 3],
19+
y: [1, 3, 2],
20+
name: 'Trace 2',
21+
type: 'scatter'
22+
};
23+
24+
var trace3 = {
25+
x: [1, 2, 3],
26+
y: [3, 2, 1],
27+
name: 'Trace 3',
28+
legend: 'legend2',
29+
type: 'scatter'
30+
};
31+
32+
var trace4 = {
33+
x: [1, 2, 3],
34+
y: [2, 3, 1],
35+
name: 'Trace 4',
36+
legend: 'legend2',
37+
type: 'scatter'
38+
};
39+
40+
var data = [trace1, trace2, trace3, trace4];
41+
42+
var layout = {
43+
legend: {
44+
title: {text: 'First Legend'},
45+
titleclick: 'toggleothers',
46+
titledoubleclick: 'toggle'
47+
},
48+
legend2: {
49+
title: {text: 'Second Legend'},
50+
titleclick: 'toggleothers',
51+
titledoubleclick: 'toggle',
52+
y: 0.5
53+
}
54+
};
55+
56+
Plotly.newPlot('myDiv', data, layout);

_posts/plotly_js/fundamentals/marker-style/2018-03-15-color-opacity.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
name: Color Opacity
33
language: plotly_js
44
suite: marker-style
5-
order: 5
5+
order: 7
66
sitemap: false
77
arrangement: horizontal
88
markdown_content: |

_posts/plotly_js/fundamentals/marker-style/2018-03-15-marker-opacity.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
name: Marker Opacity
33
language: plotly_js
44
suite: marker-style
5-
order: 4
5+
order: 6
66
sitemap: false
77
arrangement: horizontal
88
markdown_content: |

_posts/plotly_js/fundamentals/marker-style/2018-03-15-marker-opaque.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
name: Fully Opaque
33
language: plotly_js
44
suite: marker-style
5-
order: 2
5+
order: 4
66
sitemap: false
77
arrangement: horizontal
88
markdown_content: |

_posts/plotly_js/fundamentals/marker-style/2018-03-15-trace-opacity.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
name: Trace Opacity
33
language: plotly_js
44
suite: marker-style
5-
order: 3
5+
order: 5
66
sitemap: false
77
arrangement: horizontal
88
markdown_content: |

0 commit comments

Comments
 (0)