Skip to content

Commit

Permalink
test new histogram logic in images
Browse files Browse the repository at this point in the history
  • Loading branch information
alexcjohnson committed Aug 14, 2017
1 parent ec12eab commit 3f173a4
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 13 deletions.
Binary file modified test/image/baselines/hist_grouped.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified test/image/baselines/hist_stacked.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
12 changes: 6 additions & 6 deletions test/image/mocks/hist_grouped.json
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
{
"data":[{
"x":["1","2","3","4"],
"type":"histogram"
},{
"x":["1","2","3","4"],
"type":"histogram"
"x": [1, 1, 1, 2, 2],
"type": "histogram"
}, {
"x": [1, 2, 3, 4],
"type": "histogram"
}],
"layout":{"height":300,"width":400}
"layout": {"height": 300, "width": 400}
}
14 changes: 7 additions & 7 deletions test/image/mocks/hist_stacked.json
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
{
"data":[{
"x":["1","2","3","4"],
"type":"histogram"
},{
"x":["1","2","3","4"],
"type":"histogram"
"data": [{
"x": [1, 1, 1, 2, 2],
"type": "histogram"
}, {
"x": [1, 2, 3, 4],
"type": "histogram"
}],
"layout":{"height":300,"width":400,"barmode":"stack"}
"layout": {"height": 300, "width": 400, "barmode": "stack"}
}

0 comments on commit 3f173a4

Please sign in to comment.