Skip to content

Commit 3615690

Browse files
committed
teste 3levels OK
1 parent a4eca4f commit 3615690

File tree

1 file changed

+13
-8
lines changed

1 file changed

+13
-8
lines changed

devtools/test_dashboard/index.html

Lines changed: 13 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -133,6 +133,11 @@
133133
1.1, 1.1, 1.1, 1.2, 1.2, 1.2, 1.2, 1.2, 1.2, 1.2, 1.25,
134134
];
135135

136+
let x3 = [
137+
1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
138+
2,
139+
];
140+
136141
let y = [
137142
74.794746, 73.263952, 73.175294, 89.929494, 87.071843, 78.117551,
138143
76.690038, 85.818503, 97.373488, 76.747523, 73.172017, 68.891727,
@@ -142,20 +147,20 @@
142147
];
143148

144149
var trace1 = {
145-
x: [x1, x2],
150+
x: [x1, x2, x3],
146151

147-
y: y.slice(0, 12),
152+
y: y,
148153
type: "box",
149154
};
150155

151-
var trace2 = {
152-
x: [x1, x2],
156+
// var trace2 = {
157+
// x: [x1, x2],
153158

154-
y: y.slice(12, 24),
155-
type: "box",
156-
};
159+
// y: y,
160+
// type: "box",
161+
// };
157162

158-
var data = [trace1, trace2];
163+
var data = [trace1];
159164

160165
Plotly.newPlot("tester", data);
161166
</script>

0 commit comments

Comments
 (0)