We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d3c1435 commit e225529Copy full SHA for e225529
draftlogs/6335_fix.md
@@ -0,0 +1 @@
1
+ - Hide pie text on empty slices to avoid PDF exports in MS Word from SVG imports [[#6335](https://github.com/plotly/plotly.js/pull/6335)]
src/traces/pie/plot.js
@@ -246,6 +246,8 @@ function plot(gd, cdModule) {
246
strTranslate(transform.x, transform.y) +
247
strScale(scale) +
248
strTranslate(transform.tx, transform.ty));
249
+
250
+ titleText.style('display', null);
251
} else {
252
titleText.style('display', 'none');
253
}
0 commit comments