-
-
Notifications
You must be signed in to change notification settings - Fork 1.9k
Scale gl3d error bars #74
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from 4 commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,65 @@ | ||
{ | ||
"data": [ | ||
{ | ||
"type": "scatter3d", | ||
"mode": "markers", | ||
"x": [ | ||
1, | ||
2, | ||
3 | ||
], | ||
"y": [ | ||
1, | ||
2, | ||
3 | ||
], | ||
"z": [ | ||
2000, | ||
1000, | ||
2000 | ||
], | ||
"error_z": { | ||
"array": [ | ||
1000, | ||
500, | ||
1000 | ||
], | ||
"arrayminus": [ | ||
0, | ||
500, | ||
0 | ||
], | ||
"color": "green", | ||
"thinkness": 5 | ||
}, | ||
"error_x": { | ||
"type": "constant", | ||
"value": 0.1, | ||
"color": "black" | ||
}, | ||
"marker": { | ||
"symbol": "square" | ||
}, | ||
"uid": "0c6e64" | ||
} | ||
], | ||
"layout": { | ||
"scene": { | ||
"camera": { | ||
"eye": { | ||
"x": 0.2, | ||
"y": 3.5, | ||
"z": 0.4 | ||
} | ||
}, | ||
"aspectratio": { | ||
"x": 2, | ||
"y": 2, | ||
"z": 1 | ||
} | ||
}, | ||
"height": 450, | ||
"width": 1000, | ||
"autosize": true | ||
} | ||
} |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,53 @@ | ||
{ | ||
"data": [ | ||
{ | ||
"type": "scatter3d", | ||
"x": [ | ||
1, | ||
2, | ||
3 | ||
], | ||
"y": [ | ||
1, | ||
2, | ||
3 | ||
], | ||
"z": [ | ||
200, | ||
100, | ||
200 | ||
], | ||
"error_z": { | ||
"type": "percent", | ||
"value": 20, | ||
"color": "red", | ||
"width": 0.5 | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. This is sposed to add caps, right? Want to make it bigger so we can see them and verify that they end up looking similar to caps that size on 2D svg error bars? There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. sure. my mistake |
||
}, | ||
"error_y": { | ||
"type": "constant", | ||
"value": 0.25, | ||
"valueminus": 0.1 | ||
}, | ||
"uid": "a8f51d" | ||
} | ||
], | ||
"layout": { | ||
"scene": { | ||
"camera": { | ||
"eye": { | ||
"x": 3, | ||
"y": 0.2, | ||
"z": 0.2 | ||
} | ||
}, | ||
"aspectratio": { | ||
"x": 2, | ||
"y": 2, | ||
"z": 1 | ||
} | ||
}, | ||
"height": 450, | ||
"width": 1000, | ||
"autosize": true | ||
} | ||
} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I don't "think" that's what you meant
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
haha good catch. Thanks.