Skip to content

Commit eab822c

Browse files
committed
add baseline for contour traces w. coloring:heatmap & autocontours:false
- which has special logic which currently mutates zmin/zmax after the calc step.
1 parent fa67db3 commit eab822c

File tree

2 files changed

+28
-0
lines changed

2 files changed

+28
-0
lines changed
Loading
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
{
2+
"data": [{
3+
"name": "with set contours",
4+
"type": "contour",
5+
"x": [1, 2, 3],
6+
"z": [[1, 2, 3], [1, 2, 3]],
7+
"contours": {
8+
"coloring": "heatmap",
9+
"start": 0, "end": 5
10+
},
11+
"colorbar": {
12+
"x": -0.05, "xanchor": "right",
13+
"title": {"text": "with set<br>contours"}
14+
}
15+
}, {
16+
"type": "contour",
17+
"name": "auto contours",
18+
"x": [5, 6, 7],
19+
"z": [[1, 2, 3], [1, 2, 3]],
20+
"contours": {
21+
"coloring": "heatmap"
22+
},
23+
"colorbar": {
24+
"x": 1.05, "xanchor": "left",
25+
"title": {"text": "auto<br>contours"}
26+
}
27+
}]
28+
}

0 commit comments

Comments
 (0)