Skip to content
This repository has been archived by the owner on Jul 27, 2024. It is now read-only.

Commit

Permalink
fix bar charts
Browse files Browse the repository at this point in the history
  • Loading branch information
jameswex committed Sep 5, 2018
1 parent 71f63d2 commit f86e0de
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
8 changes: 4 additions & 4 deletions WORKSPACE
Original file line number Diff line number Diff line change
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
Original file line number Diff line number Diff line change
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 f86e0de

Please sign in to comment.