Skip to content

Commit

Permalink
fix: remove tooltip for missing values of BoxPlotColumn
Browse files Browse the repository at this point in the history
Fixes #625
  • Loading branch information
thinkh committed Jul 26, 2023
1 parent 49edf78 commit d0bb7e8
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions src/renderer/BoxplotCellRenderer.ts
Original file line number Diff line number Diff line change
Expand Up @@ -70,6 +70,7 @@ export default class BoxplotCellRenderer implements ICellRendererFactory {
const data = col.getBoxPlotData(d);
n.classList.toggle(cssClass('missing'), !data);
if (!data) {
n.title = '';
return;
}
const label = col.getRawBoxPlotData(d)!;
Expand Down

0 comments on commit d0bb7e8

Please sign in to comment.