Skip to content
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

Show histogram tooltips that bleed out of content box. #5631

Merged
merged 1 commit into from
Mar 29, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
Expand Up @@ -106,7 +106,6 @@ mat-spinner {

tb-histogram {
flex-grow: 1;
overflow: hidden;
}

.empty-message {
Expand Down
6 changes: 6 additions & 0 deletions tensorboard/webapp/widgets/histogram/histogram_component.scss
Expand Up @@ -140,6 +140,12 @@ svg {

.content {
grid-area: content;
// Allow overflow to be visible so that the tooltip can be shown for points
// near the edges.
overflow: visible;
// Raise the content area above the axes so that the tooltip can be shown over
// the axes marks.
z-index: 1;

.tick {
stroke-width: 1px;
Expand Down