Skip to content

Commit

Permalink
Merge pull request #152 from PAIR-code/chartfix
Browse files Browse the repository at this point in the history
fix bar charts
  • Loading branch information
jimbojw committed Sep 5, 2018
2 parents 71f63d2 + f86e0de commit 3d7ac5f
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
8 changes: 4 additions & 4 deletions WORKSPACE
Expand Up @@ -21,11 +21,11 @@ closure_repositories(

http_archive(
name = "org_tensorflow_tensorboard",
sha256 = "5f921949cd70f06e6f5de56d5453ea621bf27fc4e5b3dc2122b6e62a346367ce",
strip_prefix = "tensorboard-6d47ca3b5fe0ffb2c3ef0e8babbadf6632fe4eea",
sha256 = "892999b71a8b51f20fecf52eb70ed357eb2db1f0834dec73d43de3b86aa761ef",
strip_prefix = "tensorboard-199cf2c94fa097ccc67aca71ebf5870eef4bc78d",
urls = [
"https://mirror.bazel.build/github.com/tensorflow/tensorboard/archive/6d47ca3b5fe0ffb2c3ef0e8babbadf6632fe4eea.tar.gz",
"https://github.com/tensorflow/tensorboard/archive/6d47ca3b5fe0ffb2c3ef0e8babbadf6632fe4eea.tar.gz", # 2018-08-07
"https://mirror.bazel.build/github.com/tensorflow/tensorboard/archive/199cf2c94fa097ccc67aca71ebf5870eef4bc78d.tar.gz",
"https://github.com/tensorflow/tensorboard/archive/199cf2c94fa097ccc67aca71ebf5870eef4bc78d.tar.gz", # 2018-09-05
],
)

Expand Down
Expand Up @@ -229,10 +229,10 @@ Polymer({
}
}
return x;
}, xScale)
})
.y(() => 0, yScale)
.y2((d: Histogram.Bucket) =>
this._getCountWithFloor(d, maxCount, logScale), yScale);
this._getCountWithFloor(d, maxCount, logScale));

// Set the rectangle attributes.
bars.attr(
Expand Down

0 comments on commit 3d7ac5f

Please sign in to comment.