Skip to content

Commit

Permalink
Add test for small timerange on surface plot
Browse files Browse the repository at this point in the history
  • Loading branch information
hborchardt committed May 17, 2024
1 parent e2e4fbb commit 910706a
Showing 1 changed file with 43 additions and 0 deletions.
43 changes: 43 additions & 0 deletions test/image/mocks/zz-gl3d_surface_small_timerange.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,43 @@
{
"data": [
{
"type": "surface",
"x": [0.1, 0.2],
"y": [
"2024-02-03T10:00:00",
"2024-02-03T11:00:00",
],
"z": [
[1001, 1002],
[1002, 1001]
]
}
],
"layout": {
"title": {"text": "Surface plot with time axis with small timerange"},
"width": 600,
"height": 400,
"scene": {
"yaxis": {
"type": "date"
},
"aspectratio": {
"x": 1,
"y": 2,
"z": 0.5
},
"camera": {
"center": {
"x": 0.11,
"y": 0.19,
"z": -0.3
},
"eye": {
"x": 1.44,
"y": 1.53,
"z": 1.02
}
}
}
}
}

0 comments on commit 910706a

Please sign in to comment.