Skip to content

Commit 221a5a1

Browse files
committed
add multi-trace heatmap mock
1 parent 48dc191 commit 221a5a1

File tree

2 files changed

+193
-0
lines changed

2 files changed

+193
-0
lines changed
23 KB
Loading
Lines changed: 193 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,193 @@
1+
{
2+
"data": [
3+
{
4+
"x": [
5+
1,
6+
1,
7+
1,
8+
1,
9+
1,
10+
1
11+
],
12+
"y": [
13+
0,
14+
1,
15+
2,
16+
3,
17+
4,
18+
5
19+
],
20+
"z": [
21+
3,
22+
4,
23+
2,
24+
5,
25+
3,
26+
1
27+
],
28+
"type": "heatmap",
29+
"showlegend": false,
30+
"showscale": false,
31+
"zmax": 5,
32+
"zmin": 1
33+
},
34+
{
35+
"x": [
36+
2,
37+
2,
38+
2,
39+
2,
40+
2
41+
],
42+
"y": [
43+
0.2,
44+
1.2,
45+
2.2,
46+
3.2,
47+
4.2
48+
],
49+
"z": [
50+
6,
51+
1,
52+
3,
53+
2,
54+
4
55+
],
56+
"type": "heatmap",
57+
"showlegend": false,
58+
"showscale": false,
59+
"zmax": 6,
60+
"zmin": 1
61+
},
62+
{
63+
"x": [
64+
3,
65+
3,
66+
3,
67+
3,
68+
3,
69+
3,
70+
3,
71+
3,
72+
3,
73+
3,
74+
3
75+
],
76+
"y": [
77+
0,
78+
0.5,
79+
1,
80+
1.5,
81+
2,
82+
2.5,
83+
3,
84+
3.5,
85+
4,
86+
4.5,
87+
5
88+
],
89+
"z": [
90+
6,
91+
1,
92+
3,
93+
2,
94+
4,
95+
2,
96+
7,
97+
4,
98+
3,
99+
2,
100+
5
101+
],
102+
"type": "heatmap",
103+
"showlegend": false,
104+
"showscale": false,
105+
"zmax": 7,
106+
"zmin": 1
107+
},
108+
{
109+
"x": [
110+
4,
111+
4,
112+
4,
113+
4,
114+
4,
115+
4
116+
],
117+
"y": [
118+
0,
119+
0.2,
120+
0.5,
121+
1.2,
122+
3.5,
123+
4
124+
],
125+
"z": [
126+
2,
127+
4,
128+
7,
129+
3,
130+
2,
131+
1
132+
],
133+
"type": "heatmap",
134+
"showlegend": false,
135+
"showscale": false,
136+
"zmax": 7,
137+
"zmin": 1
138+
},
139+
{
140+
"x": [
141+
5.2,
142+
5.2,
143+
5.2,
144+
5.2,
145+
5.2,
146+
5.2
147+
],
148+
"y": [
149+
0,
150+
0.2,
151+
0.5,
152+
1.2,
153+
3.5,
154+
4
155+
],
156+
"z": [
157+
2,
158+
4,
159+
7,
160+
3,
161+
2,
162+
1
163+
],
164+
"type": "heatmap",
165+
"showlegend": false,
166+
"showscale": true,
167+
"zmax": 10,
168+
"zmin": 0
169+
}
170+
],
171+
"layout": {
172+
"hovermode": "closest",
173+
"xaxis": {
174+
"type": "linear",
175+
"range": [
176+
0.5,
177+
5.7
178+
],
179+
"autorange": true
180+
},
181+
"yaxis": {
182+
"type": "linear",
183+
"range": [
184+
-0.5,
185+
5.5
186+
],
187+
"autorange": true
188+
},
189+
"height": 450,
190+
"width": 1100,
191+
"autosize": true
192+
}
193+
}

0 commit comments

Comments
 (0)