From d79e8099f4d4a5a0dd92a3b35ebd017f7493b03a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Philippe=20Rivi=C3=A8re?= Date: Wed, 23 Aug 2023 16:49:36 +0200 Subject: [PATCH 1/3] closes #1805 --- src/marks/tip.js | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/marks/tip.js b/src/marks/tip.js index b745084d65..6fdbad2c15 100644 --- a/src/marks/tip.js +++ b/src/marks/tip.js @@ -155,6 +155,7 @@ export class Tip extends Mark { .call(applyIndirectStyles, this, dimensions, context) .call(applyIndirectTextStyles, this) .call(applyTransform, this, {x: X && x, y: Y && y}) + .style("visibility", "hidden") // avoid flickering .call((g) => g .selectAll() @@ -241,6 +242,7 @@ export class Tip extends Mark { text.setAttribute("y", `${+getLineOffset(a, text.childNodes.length, lineHeight).toFixed(6)}em`); text.setAttribute("transform", `translate(${getTextTranslate(a, m, r, w, h)})`); }); + g.style("visibility", null); } // Wait until the plot is inserted into the page so that we can use getBBox From 834810e5e05193191a97ab6d750c4f329a97bd55 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Philippe=20Rivi=C3=A8re?= Date: Wed, 23 Aug 2023 17:07:15 +0200 Subject: [PATCH 2/3] tests --- test/output/autoArea.svg | 2 +- test/output/autoAreaColor.svg | 2 +- test/output/autoAreaColorColor.svg | 2 +- test/output/autoAreaColorName.svg | 2 +- test/output/autoAreaColorValue.svg | 2 +- test/output/autoAreaStackColor.svg | 2 +- test/output/autoAutoHistogram.svg | 2 +- test/output/autoBar.svg | 2 +- test/output/autoBarColorReducer.svg | 2 +- test/output/autoBarMode.svg | 2 +- test/output/autoBarNoReducer.svg | 2 +- test/output/autoBarNonZeroReducer.svg | 2 +- test/output/autoBarStackColor.svg | 2 +- test/output/autoBarStackColorConstant.svg | 2 +- test/output/autoBarStackColorField.svg | 2 +- test/output/autoBarTimeSeries.svg | 2 +- test/output/autoBarTimeSeriesReduce.svg | 2 +- test/output/autoChannels.svg | 2 +- test/output/autoConnectedScatterplot.svg | 2 +- test/output/autoDot.svg | 2 +- test/output/autoDotBin.svg | 2 +- test/output/autoDotColor.svg | 2 +- test/output/autoDotFacet.svg | 6 ++--- test/output/autoDotFacet2.svg | 10 ++++---- test/output/autoDotGroup.svg | 2 +- test/output/autoDotOrdCont.svg | 2 +- test/output/autoDotOrdinal.svg | 2 +- test/output/autoDotSize.svg | 2 +- test/output/autoDotSize2.svg | 2 +- test/output/autoDotUnsortedDate.svg | 2 +- test/output/autoDotZero.svg | 2 +- test/output/autoHeatmap.svg | 2 +- test/output/autoHeatmapOrdCont.svg | 2 +- test/output/autoHeatmapOrdinal.svg | 2 +- test/output/autoHistogram.svg | 2 +- test/output/autoHistogramDate.svg | 2 +- test/output/autoHistogramGroup.svg | 2 +- test/output/autoLine.svg | 2 +- test/output/autoLineColor.svg | 2 +- test/output/autoLineColorSeries.svg | 2 +- test/output/autoLineFacet.svg | 28 +++++++++++------------ test/output/autoLineHistogram.svg | 2 +- test/output/autoLineMean.svg | 2 +- test/output/autoLineMeanColor.svg | 2 +- test/output/autoLineMeanThresholds.svg | 2 +- test/output/autoLineMeanZero.svg | 2 +- test/output/autoLineZero.svg | 2 +- test/output/autoNullReduceContinuous.svg | 2 +- test/output/autoNullReduceDate.svg | 2 +- test/output/autoNullReduceOrdinal.svg | 2 +- test/output/autoRectColorReducer.svg | 2 +- test/output/autoRectStackColor.svg | 2 +- test/output/autoRuleZero.svg | 2 +- test/output/bigint1.svg | 2 +- test/output/greekGodsTip.svg | 2 +- test/output/liborProjectionsFacet.html | 14 ++++++------ test/output/pointerViewof.html | 2 +- test/output/sparseTitleTip.svg | 4 ++-- test/output/tipAreaBand.svg | 2 +- test/output/tipAreaStack.svg | 2 +- test/output/tipBar.svg | 2 +- test/output/tipBin.svg | 2 +- test/output/tipBinStack.svg | 2 +- test/output/tipCell.svg | 2 +- test/output/tipCellFacet.svg | 4 ++-- test/output/tipDodge.svg | 2 +- test/output/tipDot.svg | 2 +- test/output/tipDotFacets.svg | 14 ++++++------ test/output/tipDotFilter.svg | 4 ++-- test/output/tipDotX.svg | 2 +- test/output/tipFacetX.svg | 4 ++-- test/output/tipGeoCentroid.svg | 2 +- test/output/tipGeoNoProjection.svg | 2 +- test/output/tipGeoProjection.svg | 2 +- test/output/tipGroupPrimitives.svg | 2 +- test/output/tipHexbin.svg | 2 +- test/output/tipHexbinExplicit.svg | 2 +- test/output/tipLine.svg | 2 +- test/output/tipNewLines.svg | 4 ++-- test/output/tipRaster.svg | 2 +- test/output/tipRule.svg | 2 +- test/output/tipRuleAnchored.svg | 2 +- test/output/tipTransform.html | 2 +- 83 files changed, 119 insertions(+), 119 deletions(-) diff --git a/test/output/autoArea.svg b/test/output/autoArea.svg index 79aa3eae9d..a4a4bba3c1 100644 --- a/test/output/autoArea.svg +++ b/test/output/autoArea.svg @@ -60,5 +60,5 @@ - + \ No newline at end of file diff --git a/test/output/autoAreaColor.svg b/test/output/autoAreaColor.svg index e41947ef38..b64a323b53 100644 --- a/test/output/autoAreaColor.svg +++ b/test/output/autoAreaColor.svg @@ -1260,5 +1260,5 @@ - + \ No newline at end of file diff --git a/test/output/autoAreaColorColor.svg b/test/output/autoAreaColorColor.svg index 09823aeb23..5899cdb26a 100644 --- a/test/output/autoAreaColorColor.svg +++ b/test/output/autoAreaColorColor.svg @@ -60,5 +60,5 @@ - + \ No newline at end of file diff --git a/test/output/autoAreaColorName.svg b/test/output/autoAreaColorName.svg index 09823aeb23..5899cdb26a 100644 --- a/test/output/autoAreaColorName.svg +++ b/test/output/autoAreaColorName.svg @@ -60,5 +60,5 @@ - + \ No newline at end of file diff --git a/test/output/autoAreaColorValue.svg b/test/output/autoAreaColorValue.svg index e41947ef38..b64a323b53 100644 --- a/test/output/autoAreaColorValue.svg +++ b/test/output/autoAreaColorValue.svg @@ -1260,5 +1260,5 @@ - + \ No newline at end of file diff --git a/test/output/autoAreaStackColor.svg b/test/output/autoAreaStackColor.svg index f9807587e5..988f6da6cd 100644 --- a/test/output/autoAreaStackColor.svg +++ b/test/output/autoAreaStackColor.svg @@ -81,5 +81,5 @@ - + \ No newline at end of file diff --git a/test/output/autoAutoHistogram.svg b/test/output/autoAutoHistogram.svg index f95aabb502..798bb863c7 100644 --- a/test/output/autoAutoHistogram.svg +++ b/test/output/autoAutoHistogram.svg @@ -67,5 +67,5 @@ - + \ No newline at end of file diff --git a/test/output/autoBar.svg b/test/output/autoBar.svg index 8cf14d068c..d87a4c1370 100644 --- a/test/output/autoBar.svg +++ b/test/output/autoBar.svg @@ -124,5 +124,5 @@ - + \ No newline at end of file diff --git a/test/output/autoBarColorReducer.svg b/test/output/autoBarColorReducer.svg index 0a939ad063..dee0b9ef44 100644 --- a/test/output/autoBarColorReducer.svg +++ b/test/output/autoBarColorReducer.svg @@ -57,5 +57,5 @@ - + \ No newline at end of file diff --git a/test/output/autoBarMode.svg b/test/output/autoBarMode.svg index a2df39abc5..0700d20899 100644 --- a/test/output/autoBarMode.svg +++ b/test/output/autoBarMode.svg @@ -44,5 +44,5 @@ - + \ No newline at end of file diff --git a/test/output/autoBarNoReducer.svg b/test/output/autoBarNoReducer.svg index 7528a83038..13805943c8 100644 --- a/test/output/autoBarNoReducer.svg +++ b/test/output/autoBarNoReducer.svg @@ -732,5 +732,5 @@ - + \ No newline at end of file diff --git a/test/output/autoBarNonZeroReducer.svg b/test/output/autoBarNonZeroReducer.svg index 9e083c6dbf..6fb109c6dd 100644 --- a/test/output/autoBarNonZeroReducer.svg +++ b/test/output/autoBarNonZeroReducer.svg @@ -121,5 +121,5 @@ - + \ No newline at end of file diff --git a/test/output/autoBarStackColor.svg b/test/output/autoBarStackColor.svg index 9b019c8685..5991d910cb 100644 --- a/test/output/autoBarStackColor.svg +++ b/test/output/autoBarStackColor.svg @@ -62,5 +62,5 @@ - + \ No newline at end of file diff --git a/test/output/autoBarStackColorConstant.svg b/test/output/autoBarStackColorConstant.svg index 35cc79607f..ab7073b689 100644 --- a/test/output/autoBarStackColorConstant.svg +++ b/test/output/autoBarStackColorConstant.svg @@ -118,5 +118,5 @@ - + \ No newline at end of file diff --git a/test/output/autoBarStackColorField.svg b/test/output/autoBarStackColorField.svg index 3ba59009a9..e4e580e867 100644 --- a/test/output/autoBarStackColorField.svg +++ b/test/output/autoBarStackColorField.svg @@ -173,5 +173,5 @@ - + \ No newline at end of file diff --git a/test/output/autoBarTimeSeries.svg b/test/output/autoBarTimeSeries.svg index 6a7dbd2ed1..6dee383be6 100644 --- a/test/output/autoBarTimeSeries.svg +++ b/test/output/autoBarTimeSeries.svg @@ -73,5 +73,5 @@ - + \ No newline at end of file diff --git a/test/output/autoBarTimeSeriesReduce.svg b/test/output/autoBarTimeSeriesReduce.svg index 058c8bf0cc..1e6115f6d6 100644 --- a/test/output/autoBarTimeSeriesReduce.svg +++ b/test/output/autoBarTimeSeriesReduce.svg @@ -67,5 +67,5 @@ - + \ No newline at end of file diff --git a/test/output/autoChannels.svg b/test/output/autoChannels.svg index 45c8e3f586..08983d6fa2 100644 --- a/test/output/autoChannels.svg +++ b/test/output/autoChannels.svg @@ -11307,5 +11307,5 @@ - + \ No newline at end of file diff --git a/test/output/autoConnectedScatterplot.svg b/test/output/autoConnectedScatterplot.svg index baa0429c36..6078fa2d25 100644 --- a/test/output/autoConnectedScatterplot.svg +++ b/test/output/autoConnectedScatterplot.svg @@ -64,5 +64,5 @@ - + \ No newline at end of file diff --git a/test/output/autoDot.svg b/test/output/autoDot.svg index 48baa508ae..7d125690cc 100644 --- a/test/output/autoDot.svg +++ b/test/output/autoDot.svg @@ -395,5 +395,5 @@ - + \ No newline at end of file diff --git a/test/output/autoDotBin.svg b/test/output/autoDotBin.svg index e482e88392..c854910b77 100644 --- a/test/output/autoDotBin.svg +++ b/test/output/autoDotBin.svg @@ -115,5 +115,5 @@ - + \ No newline at end of file diff --git a/test/output/autoDotColor.svg b/test/output/autoDotColor.svg index 5b8bf803e1..7e8137692e 100644 --- a/test/output/autoDotColor.svg +++ b/test/output/autoDotColor.svg @@ -461,5 +461,5 @@ - + \ No newline at end of file diff --git a/test/output/autoDotFacet.svg b/test/output/autoDotFacet.svg index 644e8bd592..dbea27c571 100644 --- a/test/output/autoDotFacet.svg +++ b/test/output/autoDotFacet.svg @@ -451,8 +451,8 @@ - - - + + + \ No newline at end of file diff --git a/test/output/autoDotFacet2.svg b/test/output/autoDotFacet2.svg index d515d82c8d..5757d0fdfd 100644 --- a/test/output/autoDotFacet2.svg +++ b/test/output/autoDotFacet2.svg @@ -491,10 +491,10 @@ - - - - - + + + + + \ No newline at end of file diff --git a/test/output/autoDotGroup.svg b/test/output/autoDotGroup.svg index 255480d5bd..1c5b07d8d6 100644 --- a/test/output/autoDotGroup.svg +++ b/test/output/autoDotGroup.svg @@ -46,5 +46,5 @@ - + \ No newline at end of file diff --git a/test/output/autoDotOrdCont.svg b/test/output/autoDotOrdCont.svg index de4a5fa70b..3d78c7b221 100644 --- a/test/output/autoDotOrdCont.svg +++ b/test/output/autoDotOrdCont.svg @@ -387,5 +387,5 @@ - + \ No newline at end of file diff --git a/test/output/autoDotOrdinal.svg b/test/output/autoDotOrdinal.svg index 4a4b8f3ba0..f2ceffdae3 100644 --- a/test/output/autoDotOrdinal.svg +++ b/test/output/autoDotOrdinal.svg @@ -855,5 +855,5 @@ - + \ No newline at end of file diff --git a/test/output/autoDotSize.svg b/test/output/autoDotSize.svg index 25400d6092..5d82d98754 100644 --- a/test/output/autoDotSize.svg +++ b/test/output/autoDotSize.svg @@ -1289,5 +1289,5 @@ - + \ No newline at end of file diff --git a/test/output/autoDotSize2.svg b/test/output/autoDotSize2.svg index 258403ed7e..c21c2afb9b 100644 --- a/test/output/autoDotSize2.svg +++ b/test/output/autoDotSize2.svg @@ -397,5 +397,5 @@ - + \ No newline at end of file diff --git a/test/output/autoDotUnsortedDate.svg b/test/output/autoDotUnsortedDate.svg index 11f25a36ad..1801b6ef3d 100644 --- a/test/output/autoDotUnsortedDate.svg +++ b/test/output/autoDotUnsortedDate.svg @@ -11277,5 +11277,5 @@ - + \ No newline at end of file diff --git a/test/output/autoDotZero.svg b/test/output/autoDotZero.svg index 4676c4f3c2..66779bfa6c 100644 --- a/test/output/autoDotZero.svg +++ b/test/output/autoDotZero.svg @@ -124,5 +124,5 @@ - + \ No newline at end of file diff --git a/test/output/autoHeatmap.svg b/test/output/autoHeatmap.svg index 0ea35b80e7..7ec1bce548 100644 --- a/test/output/autoHeatmap.svg +++ b/test/output/autoHeatmap.svg @@ -121,5 +121,5 @@ - + \ No newline at end of file diff --git a/test/output/autoHeatmapOrdCont.svg b/test/output/autoHeatmapOrdCont.svg index d19ba56ac3..385d7213a2 100644 --- a/test/output/autoHeatmapOrdCont.svg +++ b/test/output/autoHeatmapOrdCont.svg @@ -73,5 +73,5 @@ - + \ No newline at end of file diff --git a/test/output/autoHeatmapOrdinal.svg b/test/output/autoHeatmapOrdinal.svg index 55ef16b202..91b2b9331a 100644 --- a/test/output/autoHeatmapOrdinal.svg +++ b/test/output/autoHeatmapOrdinal.svg @@ -46,5 +46,5 @@ - + \ No newline at end of file diff --git a/test/output/autoHistogram.svg b/test/output/autoHistogram.svg index 3af36918ce..b4a74efc1f 100644 --- a/test/output/autoHistogram.svg +++ b/test/output/autoHistogram.svg @@ -141,5 +141,5 @@ - + \ No newline at end of file diff --git a/test/output/autoHistogramDate.svg b/test/output/autoHistogramDate.svg index b07ae693e8..a7cf4ab988 100644 --- a/test/output/autoHistogramDate.svg +++ b/test/output/autoHistogramDate.svg @@ -121,5 +121,5 @@ - + \ No newline at end of file diff --git a/test/output/autoHistogramGroup.svg b/test/output/autoHistogramGroup.svg index 7dec704e20..70fb3f7ccf 100644 --- a/test/output/autoHistogramGroup.svg +++ b/test/output/autoHistogramGroup.svg @@ -59,5 +59,5 @@ - + \ No newline at end of file diff --git a/test/output/autoLine.svg b/test/output/autoLine.svg index c4a3187007..9d9cf0167b 100644 --- a/test/output/autoLine.svg +++ b/test/output/autoLine.svg @@ -65,5 +65,5 @@ - + \ No newline at end of file diff --git a/test/output/autoLineColor.svg b/test/output/autoLineColor.svg index 897a16cc9f..2d71827fca 100644 --- a/test/output/autoLineColor.svg +++ b/test/output/autoLineColor.svg @@ -1265,5 +1265,5 @@ - + \ No newline at end of file diff --git a/test/output/autoLineColorSeries.svg b/test/output/autoLineColorSeries.svg index 00f1b26d20..dd1e0ccbf8 100644 --- a/test/output/autoLineColorSeries.svg +++ b/test/output/autoLineColorSeries.svg @@ -86,5 +86,5 @@ - + \ No newline at end of file diff --git a/test/output/autoLineFacet.svg b/test/output/autoLineFacet.svg index 26574e9010..9b6238baea 100644 --- a/test/output/autoLineFacet.svg +++ b/test/output/autoLineFacet.svg @@ -260,19 +260,19 @@ - - - - - - - - - - - - - - + + + + + + + + + + + + + + \ No newline at end of file diff --git a/test/output/autoLineHistogram.svg b/test/output/autoLineHistogram.svg index 211fbb7825..ce7c1b18e9 100644 --- a/test/output/autoLineHistogram.svg +++ b/test/output/autoLineHistogram.svg @@ -71,5 +71,5 @@ - + \ No newline at end of file diff --git a/test/output/autoLineMean.svg b/test/output/autoLineMean.svg index c39bcdbeee..c0ed67a180 100644 --- a/test/output/autoLineMean.svg +++ b/test/output/autoLineMean.svg @@ -49,5 +49,5 @@ - + \ No newline at end of file diff --git a/test/output/autoLineMeanColor.svg b/test/output/autoLineMeanColor.svg index 0acdd68044..cf671e61f3 100644 --- a/test/output/autoLineMeanColor.svg +++ b/test/output/autoLineMeanColor.svg @@ -65,5 +65,5 @@ - + \ No newline at end of file diff --git a/test/output/autoLineMeanThresholds.svg b/test/output/autoLineMeanThresholds.svg index e32145a840..31e76f9c4a 100644 --- a/test/output/autoLineMeanThresholds.svg +++ b/test/output/autoLineMeanThresholds.svg @@ -55,5 +55,5 @@ - + \ No newline at end of file diff --git a/test/output/autoLineMeanZero.svg b/test/output/autoLineMeanZero.svg index a164072f5f..3543f63f16 100644 --- a/test/output/autoLineMeanZero.svg +++ b/test/output/autoLineMeanZero.svg @@ -62,5 +62,5 @@ - + \ No newline at end of file diff --git a/test/output/autoLineZero.svg b/test/output/autoLineZero.svg index 591ee68c3e..3357333024 100644 --- a/test/output/autoLineZero.svg +++ b/test/output/autoLineZero.svg @@ -91,5 +91,5 @@ - + \ No newline at end of file diff --git a/test/output/autoNullReduceContinuous.svg b/test/output/autoNullReduceContinuous.svg index f8f053b76c..100f9cbbfa 100644 --- a/test/output/autoNullReduceContinuous.svg +++ b/test/output/autoNullReduceContinuous.svg @@ -374,5 +374,5 @@ - + \ No newline at end of file diff --git a/test/output/autoNullReduceDate.svg b/test/output/autoNullReduceDate.svg index 74d24996d2..0cd845cff1 100644 --- a/test/output/autoNullReduceDate.svg +++ b/test/output/autoNullReduceDate.svg @@ -11580,5 +11580,5 @@ - + \ No newline at end of file diff --git a/test/output/autoNullReduceOrdinal.svg b/test/output/autoNullReduceOrdinal.svg index 2558830673..07e30bf16b 100644 --- a/test/output/autoNullReduceOrdinal.svg +++ b/test/output/autoNullReduceOrdinal.svg @@ -31,5 +31,5 @@ - + \ No newline at end of file diff --git a/test/output/autoRectColorReducer.svg b/test/output/autoRectColorReducer.svg index 3ef4421c15..b51e27a759 100644 --- a/test/output/autoRectColorReducer.svg +++ b/test/output/autoRectColorReducer.svg @@ -75,5 +75,5 @@ - + \ No newline at end of file diff --git a/test/output/autoRectStackColor.svg b/test/output/autoRectStackColor.svg index 4e7d1a89e1..25af3dca92 100644 --- a/test/output/autoRectStackColor.svg +++ b/test/output/autoRectStackColor.svg @@ -95,5 +95,5 @@ - + \ No newline at end of file diff --git a/test/output/autoRuleZero.svg b/test/output/autoRuleZero.svg index f298cb1179..9b769a0a96 100644 --- a/test/output/autoRuleZero.svg +++ b/test/output/autoRuleZero.svg @@ -121,5 +121,5 @@ - + \ No newline at end of file diff --git a/test/output/bigint1.svg b/test/output/bigint1.svg index 0c78468c35..8802ffe4e4 100644 --- a/test/output/bigint1.svg +++ b/test/output/bigint1.svg @@ -82,5 +82,5 @@ - + \ No newline at end of file diff --git a/test/output/greekGodsTip.svg b/test/output/greekGodsTip.svg index 212fbf4e05..effea5a4e6 100644 --- a/test/output/greekGodsTip.svg +++ b/test/output/greekGodsTip.svg @@ -44,5 +44,5 @@ Chaos/Chaos Gaia/Chaos/Gaia - + \ No newline at end of file diff --git a/test/output/liborProjectionsFacet.html b/test/output/liborProjectionsFacet.html index 1469444943..aeb2fa6670 100644 --- a/test/output/liborProjectionsFacet.html +++ b/test/output/liborProjectionsFacet.html @@ -380,13 +380,13 @@ - - - - - - - + + + + + + + \ No newline at end of file diff --git a/test/output/pointerViewof.html b/test/output/pointerViewof.html index c5fb990f89..9a939e169e 100644 --- a/test/output/pointerViewof.html +++ b/test/output/pointerViewof.html @@ -397,7 +397,7 @@ - + \ No newline at end of file diff --git a/test/output/sparseTitleTip.svg b/test/output/sparseTitleTip.svg index 2f99dd9a30..d14e0acc7a 100644 --- a/test/output/sparseTitleTip.svg +++ b/test/output/sparseTitleTip.svg @@ -10985,7 +10985,7 @@ - - + + \ No newline at end of file diff --git a/test/output/tipAreaBand.svg b/test/output/tipAreaBand.svg index 9ad11da81c..095f7de9ab 100644 --- a/test/output/tipAreaBand.svg +++ b/test/output/tipAreaBand.svg @@ -62,5 +62,5 @@ - + \ No newline at end of file diff --git a/test/output/tipAreaStack.svg b/test/output/tipAreaStack.svg index 9e109a2acb..dc62517385 100644 --- a/test/output/tipAreaStack.svg +++ b/test/output/tipAreaStack.svg @@ -68,5 +68,5 @@ - + \ No newline at end of file diff --git a/test/output/tipBar.svg b/test/output/tipBar.svg index e470216044..e04b5e959c 100644 --- a/test/output/tipBar.svg +++ b/test/output/tipBar.svg @@ -123,5 +123,5 @@ - + \ No newline at end of file diff --git a/test/output/tipBin.svg b/test/output/tipBin.svg index d990379108..5a0e652fc4 100644 --- a/test/output/tipBin.svg +++ b/test/output/tipBin.svg @@ -138,5 +138,5 @@ - + \ No newline at end of file diff --git a/test/output/tipBinStack.svg b/test/output/tipBinStack.svg index b1c2f8d138..bb391b24ac 100644 --- a/test/output/tipBinStack.svg +++ b/test/output/tipBinStack.svg @@ -185,5 +185,5 @@ - + \ No newline at end of file diff --git a/test/output/tipCell.svg b/test/output/tipCell.svg index 5b5a26b979..f99a4e98d0 100644 --- a/test/output/tipCell.svg +++ b/test/output/tipCell.svg @@ -145,5 +145,5 @@ - + \ No newline at end of file diff --git a/test/output/tipCellFacet.svg b/test/output/tipCellFacet.svg index 7dac76253b..27cf50bfba 100644 --- a/test/output/tipCellFacet.svg +++ b/test/output/tipCellFacet.svg @@ -154,7 +154,7 @@ - - + + \ No newline at end of file diff --git a/test/output/tipDodge.svg b/test/output/tipDodge.svg index 17f977cc2d..7d9fc59502 100644 --- a/test/output/tipDodge.svg +++ b/test/output/tipDodge.svg @@ -374,5 +374,5 @@ - + \ No newline at end of file diff --git a/test/output/tipDot.svg b/test/output/tipDot.svg index ced1791ba3..b504ae283d 100644 --- a/test/output/tipDot.svg +++ b/test/output/tipDot.svg @@ -397,5 +397,5 @@ - + \ No newline at end of file diff --git a/test/output/tipDotFacets.svg b/test/output/tipDotFacets.svg index 94af127248..961ffd4eda 100644 --- a/test/output/tipDotFacets.svg +++ b/test/output/tipDotFacets.svg @@ -11214,12 +11214,12 @@ - - - - - - - + + + + + + + \ No newline at end of file diff --git a/test/output/tipDotFilter.svg b/test/output/tipDotFilter.svg index ec1742bfbe..9a39dce2e6 100644 --- a/test/output/tipDotFilter.svg +++ b/test/output/tipDotFilter.svg @@ -390,6 +390,6 @@ - - + + \ No newline at end of file diff --git a/test/output/tipDotX.svg b/test/output/tipDotX.svg index 814b20bd57..e6bbc53585 100644 --- a/test/output/tipDotX.svg +++ b/test/output/tipDotX.svg @@ -49,5 +49,5 @@ - + \ No newline at end of file diff --git a/test/output/tipFacetX.svg b/test/output/tipFacetX.svg index 2625017782..8266693f76 100644 --- a/test/output/tipFacetX.svg +++ b/test/output/tipFacetX.svg @@ -195,7 +195,7 @@ - - + + \ No newline at end of file diff --git a/test/output/tipGeoCentroid.svg b/test/output/tipGeoCentroid.svg index 11275c03b4..368c58d4f6 100644 --- a/test/output/tipGeoCentroid.svg +++ b/test/output/tipGeoCentroid.svg @@ -17,5 +17,5 @@ - + \ No newline at end of file diff --git a/test/output/tipGeoNoProjection.svg b/test/output/tipGeoNoProjection.svg index 7cff830917..3ef9dddf5b 100644 --- a/test/output/tipGeoNoProjection.svg +++ b/test/output/tipGeoNoProjection.svg @@ -3166,5 +3166,5 @@ - + \ No newline at end of file diff --git a/test/output/tipGeoProjection.svg b/test/output/tipGeoProjection.svg index 761e0d81b7..6a24fe5af8 100644 --- a/test/output/tipGeoProjection.svg +++ b/test/output/tipGeoProjection.svg @@ -3122,5 +3122,5 @@ - + \ No newline at end of file diff --git a/test/output/tipGroupPrimitives.svg b/test/output/tipGroupPrimitives.svg index 2307a9eb1e..42a630be8f 100644 --- a/test/output/tipGroupPrimitives.svg +++ b/test/output/tipGroupPrimitives.svg @@ -60,5 +60,5 @@ - + \ No newline at end of file diff --git a/test/output/tipHexbin.svg b/test/output/tipHexbin.svg index 9df33103d3..c6592a8ee2 100644 --- a/test/output/tipHexbin.svg +++ b/test/output/tipHexbin.svg @@ -302,5 +302,5 @@ - + \ No newline at end of file diff --git a/test/output/tipHexbinExplicit.svg b/test/output/tipHexbinExplicit.svg index 1b8bb17266..ad5bd5d292 100644 --- a/test/output/tipHexbinExplicit.svg +++ b/test/output/tipHexbinExplicit.svg @@ -302,5 +302,5 @@ - + \ No newline at end of file diff --git a/test/output/tipLine.svg b/test/output/tipLine.svg index c4a3187007..9d9cf0167b 100644 --- a/test/output/tipLine.svg +++ b/test/output/tipLine.svg @@ -65,5 +65,5 @@ - + \ No newline at end of file diff --git a/test/output/tipNewLines.svg b/test/output/tipNewLines.svg index e2d2f65a39..7730277974 100644 --- a/test/output/tipNewLines.svg +++ b/test/output/tipNewLines.svg @@ -25,7 +25,7 @@ between no name - + ​Hello​ ​ @@ -39,7 +39,7 @@ ​{​ ​} - + ​a first​b second​ ​x no name diff --git a/test/output/tipRaster.svg b/test/output/tipRaster.svg index b680582935..fd89d44f3a 100644 --- a/test/output/tipRaster.svg +++ b/test/output/tipRaster.svg @@ -16,5 +16,5 @@ - + \ No newline at end of file diff --git a/test/output/tipRule.svg b/test/output/tipRule.svg index 2e4c4fe4f6..7fdf14b056 100644 --- a/test/output/tipRule.svg +++ b/test/output/tipRule.svg @@ -378,5 +378,5 @@ - + \ No newline at end of file diff --git a/test/output/tipRuleAnchored.svg b/test/output/tipRuleAnchored.svg index db381ae45b..3ca3ed8660 100644 --- a/test/output/tipRuleAnchored.svg +++ b/test/output/tipRuleAnchored.svg @@ -378,5 +378,5 @@ - + \ No newline at end of file diff --git a/test/output/tipTransform.html b/test/output/tipTransform.html index 6418046b69..8bb83db857 100644 --- a/test/output/tipTransform.html +++ b/test/output/tipTransform.html @@ -71,5 +71,5 @@ - + \ No newline at end of file From 4d3bf7955fe9d09d4a62f0462a9c75741f41fc95 Mon Sep 17 00:00:00 2001 From: Mike Bostock Date: Wed, 23 Aug 2023 08:55:37 -0700 Subject: [PATCH 3/3] conditional postrender --- src/marks/tip.js | 10 ++++---- test/output/autoArea.svg | 2 +- test/output/autoAreaColor.svg | 2 +- test/output/autoAreaColorColor.svg | 2 +- test/output/autoAreaColorName.svg | 2 +- test/output/autoAreaColorValue.svg | 2 +- test/output/autoAreaStackColor.svg | 2 +- test/output/autoAutoHistogram.svg | 2 +- test/output/autoBar.svg | 2 +- test/output/autoBarColorReducer.svg | 2 +- test/output/autoBarMode.svg | 2 +- test/output/autoBarNoReducer.svg | 2 +- test/output/autoBarNonZeroReducer.svg | 2 +- test/output/autoBarStackColor.svg | 2 +- test/output/autoBarStackColorConstant.svg | 2 +- test/output/autoBarStackColorField.svg | 2 +- test/output/autoBarTimeSeries.svg | 2 +- test/output/autoBarTimeSeriesReduce.svg | 2 +- test/output/autoChannels.svg | 2 +- test/output/autoConnectedScatterplot.svg | 2 +- test/output/autoDot.svg | 2 +- test/output/autoDotBin.svg | 2 +- test/output/autoDotColor.svg | 2 +- test/output/autoDotFacet.svg | 6 ++--- test/output/autoDotFacet2.svg | 10 ++++---- test/output/autoDotGroup.svg | 2 +- test/output/autoDotOrdCont.svg | 2 +- test/output/autoDotOrdinal.svg | 2 +- test/output/autoDotSize.svg | 2 +- test/output/autoDotSize2.svg | 2 +- test/output/autoDotUnsortedDate.svg | 2 +- test/output/autoDotZero.svg | 2 +- test/output/autoHeatmap.svg | 2 +- test/output/autoHeatmapOrdCont.svg | 2 +- test/output/autoHeatmapOrdinal.svg | 2 +- test/output/autoHistogram.svg | 2 +- test/output/autoHistogramDate.svg | 2 +- test/output/autoHistogramGroup.svg | 2 +- test/output/autoLine.svg | 2 +- test/output/autoLineColor.svg | 2 +- test/output/autoLineColorSeries.svg | 2 +- test/output/autoLineFacet.svg | 28 +++++++++++------------ test/output/autoLineHistogram.svg | 2 +- test/output/autoLineMean.svg | 2 +- test/output/autoLineMeanColor.svg | 2 +- test/output/autoLineMeanThresholds.svg | 2 +- test/output/autoLineMeanZero.svg | 2 +- test/output/autoLineZero.svg | 2 +- test/output/autoNullReduceContinuous.svg | 2 +- test/output/autoNullReduceDate.svg | 2 +- test/output/autoNullReduceOrdinal.svg | 2 +- test/output/autoRectColorReducer.svg | 2 +- test/output/autoRectStackColor.svg | 2 +- test/output/autoRuleZero.svg | 2 +- test/output/bigint1.svg | 2 +- test/output/greekGodsTip.svg | 2 +- test/output/liborProjectionsFacet.html | 14 ++++++------ test/output/pointerViewof.html | 2 +- test/output/sparseTitleTip.svg | 4 ++-- test/output/tipAreaBand.svg | 2 +- test/output/tipAreaStack.svg | 2 +- test/output/tipBar.svg | 2 +- test/output/tipBin.svg | 2 +- test/output/tipBinStack.svg | 2 +- test/output/tipCell.svg | 2 +- test/output/tipCellFacet.svg | 4 ++-- test/output/tipDodge.svg | 2 +- test/output/tipDot.svg | 2 +- test/output/tipDotFacets.svg | 14 ++++++------ test/output/tipDotFilter.svg | 4 ++-- test/output/tipDotX.svg | 2 +- test/output/tipFacetX.svg | 4 ++-- test/output/tipGeoCentroid.svg | 2 +- test/output/tipGeoNoProjection.svg | 2 +- test/output/tipGeoProjection.svg | 2 +- test/output/tipGroupPrimitives.svg | 2 +- test/output/tipHexbin.svg | 2 +- test/output/tipHexbinExplicit.svg | 2 +- test/output/tipLine.svg | 2 +- test/output/tipNewLines.svg | 4 ++-- test/output/tipRaster.svg | 2 +- test/output/tipRule.svg | 2 +- test/output/tipRuleAnchored.svg | 2 +- test/output/tipTransform.html | 2 +- 84 files changed, 125 insertions(+), 123 deletions(-) diff --git a/src/marks/tip.js b/src/marks/tip.js index 6fdbad2c15..78a75cdfb5 100644 --- a/src/marks/tip.js +++ b/src/marks/tip.js @@ -155,7 +155,6 @@ export class Tip extends Mark { .call(applyIndirectStyles, this, dimensions, context) .call(applyIndirectTextStyles, this) .call(applyTransform, this, {x: X && x, y: Y && y}) - .style("visibility", "hidden") // avoid flickering .call((g) => g .selectAll() @@ -242,7 +241,7 @@ export class Tip extends Mark { text.setAttribute("y", `${+getLineOffset(a, text.childNodes.length, lineHeight).toFixed(6)}em`); text.setAttribute("transform", `translate(${getTextTranslate(a, m, r, w, h)})`); }); - g.style("visibility", null); + g.attr("visibility", null); } // Wait until the plot is inserted into the page so that we can use getBBox @@ -252,8 +251,11 @@ export class Tip extends Mark { // this step. Perhaps this could be done synchronously; getting the // dimensions of the SVG is easy, and although accurate text metrics are // hard, we could use approximate heuristics. - if (svg.isConnected) Promise.resolve().then(postrender); - else if (typeof requestAnimationFrame !== "undefined") requestAnimationFrame(postrender); + if (index.length) { + g.attr("visibility", "hidden"); // hide until postrender + if (svg.isConnected) Promise.resolve().then(postrender); + else if (typeof requestAnimationFrame !== "undefined") requestAnimationFrame(postrender); + } return g.node(); } diff --git a/test/output/autoArea.svg b/test/output/autoArea.svg index a4a4bba3c1..79aa3eae9d 100644 --- a/test/output/autoArea.svg +++ b/test/output/autoArea.svg @@ -60,5 +60,5 @@ - + \ No newline at end of file diff --git a/test/output/autoAreaColor.svg b/test/output/autoAreaColor.svg index b64a323b53..e41947ef38 100644 --- a/test/output/autoAreaColor.svg +++ b/test/output/autoAreaColor.svg @@ -1260,5 +1260,5 @@ - + \ No newline at end of file diff --git a/test/output/autoAreaColorColor.svg b/test/output/autoAreaColorColor.svg index 5899cdb26a..09823aeb23 100644 --- a/test/output/autoAreaColorColor.svg +++ b/test/output/autoAreaColorColor.svg @@ -60,5 +60,5 @@ - + \ No newline at end of file diff --git a/test/output/autoAreaColorName.svg b/test/output/autoAreaColorName.svg index 5899cdb26a..09823aeb23 100644 --- a/test/output/autoAreaColorName.svg +++ b/test/output/autoAreaColorName.svg @@ -60,5 +60,5 @@ - + \ No newline at end of file diff --git a/test/output/autoAreaColorValue.svg b/test/output/autoAreaColorValue.svg index b64a323b53..e41947ef38 100644 --- a/test/output/autoAreaColorValue.svg +++ b/test/output/autoAreaColorValue.svg @@ -1260,5 +1260,5 @@ - + \ No newline at end of file diff --git a/test/output/autoAreaStackColor.svg b/test/output/autoAreaStackColor.svg index 988f6da6cd..f9807587e5 100644 --- a/test/output/autoAreaStackColor.svg +++ b/test/output/autoAreaStackColor.svg @@ -81,5 +81,5 @@ - + \ No newline at end of file diff --git a/test/output/autoAutoHistogram.svg b/test/output/autoAutoHistogram.svg index 798bb863c7..f95aabb502 100644 --- a/test/output/autoAutoHistogram.svg +++ b/test/output/autoAutoHistogram.svg @@ -67,5 +67,5 @@ - + \ No newline at end of file diff --git a/test/output/autoBar.svg b/test/output/autoBar.svg index d87a4c1370..8cf14d068c 100644 --- a/test/output/autoBar.svg +++ b/test/output/autoBar.svg @@ -124,5 +124,5 @@ - + \ No newline at end of file diff --git a/test/output/autoBarColorReducer.svg b/test/output/autoBarColorReducer.svg index dee0b9ef44..0a939ad063 100644 --- a/test/output/autoBarColorReducer.svg +++ b/test/output/autoBarColorReducer.svg @@ -57,5 +57,5 @@ - + \ No newline at end of file diff --git a/test/output/autoBarMode.svg b/test/output/autoBarMode.svg index 0700d20899..a2df39abc5 100644 --- a/test/output/autoBarMode.svg +++ b/test/output/autoBarMode.svg @@ -44,5 +44,5 @@ - + \ No newline at end of file diff --git a/test/output/autoBarNoReducer.svg b/test/output/autoBarNoReducer.svg index 13805943c8..7528a83038 100644 --- a/test/output/autoBarNoReducer.svg +++ b/test/output/autoBarNoReducer.svg @@ -732,5 +732,5 @@ - + \ No newline at end of file diff --git a/test/output/autoBarNonZeroReducer.svg b/test/output/autoBarNonZeroReducer.svg index 6fb109c6dd..9e083c6dbf 100644 --- a/test/output/autoBarNonZeroReducer.svg +++ b/test/output/autoBarNonZeroReducer.svg @@ -121,5 +121,5 @@ - + \ No newline at end of file diff --git a/test/output/autoBarStackColor.svg b/test/output/autoBarStackColor.svg index 5991d910cb..9b019c8685 100644 --- a/test/output/autoBarStackColor.svg +++ b/test/output/autoBarStackColor.svg @@ -62,5 +62,5 @@ - + \ No newline at end of file diff --git a/test/output/autoBarStackColorConstant.svg b/test/output/autoBarStackColorConstant.svg index ab7073b689..35cc79607f 100644 --- a/test/output/autoBarStackColorConstant.svg +++ b/test/output/autoBarStackColorConstant.svg @@ -118,5 +118,5 @@ - + \ No newline at end of file diff --git a/test/output/autoBarStackColorField.svg b/test/output/autoBarStackColorField.svg index e4e580e867..3ba59009a9 100644 --- a/test/output/autoBarStackColorField.svg +++ b/test/output/autoBarStackColorField.svg @@ -173,5 +173,5 @@ - + \ No newline at end of file diff --git a/test/output/autoBarTimeSeries.svg b/test/output/autoBarTimeSeries.svg index 6dee383be6..6a7dbd2ed1 100644 --- a/test/output/autoBarTimeSeries.svg +++ b/test/output/autoBarTimeSeries.svg @@ -73,5 +73,5 @@ - + \ No newline at end of file diff --git a/test/output/autoBarTimeSeriesReduce.svg b/test/output/autoBarTimeSeriesReduce.svg index 1e6115f6d6..058c8bf0cc 100644 --- a/test/output/autoBarTimeSeriesReduce.svg +++ b/test/output/autoBarTimeSeriesReduce.svg @@ -67,5 +67,5 @@ - + \ No newline at end of file diff --git a/test/output/autoChannels.svg b/test/output/autoChannels.svg index 08983d6fa2..45c8e3f586 100644 --- a/test/output/autoChannels.svg +++ b/test/output/autoChannels.svg @@ -11307,5 +11307,5 @@ - + \ No newline at end of file diff --git a/test/output/autoConnectedScatterplot.svg b/test/output/autoConnectedScatterplot.svg index 6078fa2d25..baa0429c36 100644 --- a/test/output/autoConnectedScatterplot.svg +++ b/test/output/autoConnectedScatterplot.svg @@ -64,5 +64,5 @@ - + \ No newline at end of file diff --git a/test/output/autoDot.svg b/test/output/autoDot.svg index 7d125690cc..48baa508ae 100644 --- a/test/output/autoDot.svg +++ b/test/output/autoDot.svg @@ -395,5 +395,5 @@ - + \ No newline at end of file diff --git a/test/output/autoDotBin.svg b/test/output/autoDotBin.svg index c854910b77..e482e88392 100644 --- a/test/output/autoDotBin.svg +++ b/test/output/autoDotBin.svg @@ -115,5 +115,5 @@ - + \ No newline at end of file diff --git a/test/output/autoDotColor.svg b/test/output/autoDotColor.svg index 7e8137692e..5b8bf803e1 100644 --- a/test/output/autoDotColor.svg +++ b/test/output/autoDotColor.svg @@ -461,5 +461,5 @@ - + \ No newline at end of file diff --git a/test/output/autoDotFacet.svg b/test/output/autoDotFacet.svg index dbea27c571..644e8bd592 100644 --- a/test/output/autoDotFacet.svg +++ b/test/output/autoDotFacet.svg @@ -451,8 +451,8 @@ - - - + + + \ No newline at end of file diff --git a/test/output/autoDotFacet2.svg b/test/output/autoDotFacet2.svg index 5757d0fdfd..d515d82c8d 100644 --- a/test/output/autoDotFacet2.svg +++ b/test/output/autoDotFacet2.svg @@ -491,10 +491,10 @@ - - - - - + + + + + \ No newline at end of file diff --git a/test/output/autoDotGroup.svg b/test/output/autoDotGroup.svg index 1c5b07d8d6..255480d5bd 100644 --- a/test/output/autoDotGroup.svg +++ b/test/output/autoDotGroup.svg @@ -46,5 +46,5 @@ - + \ No newline at end of file diff --git a/test/output/autoDotOrdCont.svg b/test/output/autoDotOrdCont.svg index 3d78c7b221..de4a5fa70b 100644 --- a/test/output/autoDotOrdCont.svg +++ b/test/output/autoDotOrdCont.svg @@ -387,5 +387,5 @@ - + \ No newline at end of file diff --git a/test/output/autoDotOrdinal.svg b/test/output/autoDotOrdinal.svg index f2ceffdae3..4a4b8f3ba0 100644 --- a/test/output/autoDotOrdinal.svg +++ b/test/output/autoDotOrdinal.svg @@ -855,5 +855,5 @@ - + \ No newline at end of file diff --git a/test/output/autoDotSize.svg b/test/output/autoDotSize.svg index 5d82d98754..25400d6092 100644 --- a/test/output/autoDotSize.svg +++ b/test/output/autoDotSize.svg @@ -1289,5 +1289,5 @@ - + \ No newline at end of file diff --git a/test/output/autoDotSize2.svg b/test/output/autoDotSize2.svg index c21c2afb9b..258403ed7e 100644 --- a/test/output/autoDotSize2.svg +++ b/test/output/autoDotSize2.svg @@ -397,5 +397,5 @@ - + \ No newline at end of file diff --git a/test/output/autoDotUnsortedDate.svg b/test/output/autoDotUnsortedDate.svg index 1801b6ef3d..11f25a36ad 100644 --- a/test/output/autoDotUnsortedDate.svg +++ b/test/output/autoDotUnsortedDate.svg @@ -11277,5 +11277,5 @@ - + \ No newline at end of file diff --git a/test/output/autoDotZero.svg b/test/output/autoDotZero.svg index 66779bfa6c..4676c4f3c2 100644 --- a/test/output/autoDotZero.svg +++ b/test/output/autoDotZero.svg @@ -124,5 +124,5 @@ - + \ No newline at end of file diff --git a/test/output/autoHeatmap.svg b/test/output/autoHeatmap.svg index 7ec1bce548..0ea35b80e7 100644 --- a/test/output/autoHeatmap.svg +++ b/test/output/autoHeatmap.svg @@ -121,5 +121,5 @@ - + \ No newline at end of file diff --git a/test/output/autoHeatmapOrdCont.svg b/test/output/autoHeatmapOrdCont.svg index 385d7213a2..d19ba56ac3 100644 --- a/test/output/autoHeatmapOrdCont.svg +++ b/test/output/autoHeatmapOrdCont.svg @@ -73,5 +73,5 @@ - + \ No newline at end of file diff --git a/test/output/autoHeatmapOrdinal.svg b/test/output/autoHeatmapOrdinal.svg index 91b2b9331a..55ef16b202 100644 --- a/test/output/autoHeatmapOrdinal.svg +++ b/test/output/autoHeatmapOrdinal.svg @@ -46,5 +46,5 @@ - + \ No newline at end of file diff --git a/test/output/autoHistogram.svg b/test/output/autoHistogram.svg index b4a74efc1f..3af36918ce 100644 --- a/test/output/autoHistogram.svg +++ b/test/output/autoHistogram.svg @@ -141,5 +141,5 @@ - + \ No newline at end of file diff --git a/test/output/autoHistogramDate.svg b/test/output/autoHistogramDate.svg index a7cf4ab988..b07ae693e8 100644 --- a/test/output/autoHistogramDate.svg +++ b/test/output/autoHistogramDate.svg @@ -121,5 +121,5 @@ - + \ No newline at end of file diff --git a/test/output/autoHistogramGroup.svg b/test/output/autoHistogramGroup.svg index 70fb3f7ccf..7dec704e20 100644 --- a/test/output/autoHistogramGroup.svg +++ b/test/output/autoHistogramGroup.svg @@ -59,5 +59,5 @@ - + \ No newline at end of file diff --git a/test/output/autoLine.svg b/test/output/autoLine.svg index 9d9cf0167b..c4a3187007 100644 --- a/test/output/autoLine.svg +++ b/test/output/autoLine.svg @@ -65,5 +65,5 @@ - + \ No newline at end of file diff --git a/test/output/autoLineColor.svg b/test/output/autoLineColor.svg index 2d71827fca..897a16cc9f 100644 --- a/test/output/autoLineColor.svg +++ b/test/output/autoLineColor.svg @@ -1265,5 +1265,5 @@ - + \ No newline at end of file diff --git a/test/output/autoLineColorSeries.svg b/test/output/autoLineColorSeries.svg index dd1e0ccbf8..00f1b26d20 100644 --- a/test/output/autoLineColorSeries.svg +++ b/test/output/autoLineColorSeries.svg @@ -86,5 +86,5 @@ - + \ No newline at end of file diff --git a/test/output/autoLineFacet.svg b/test/output/autoLineFacet.svg index 9b6238baea..26574e9010 100644 --- a/test/output/autoLineFacet.svg +++ b/test/output/autoLineFacet.svg @@ -260,19 +260,19 @@ - - - - - - - - - - - - - - + + + + + + + + + + + + + + \ No newline at end of file diff --git a/test/output/autoLineHistogram.svg b/test/output/autoLineHistogram.svg index ce7c1b18e9..211fbb7825 100644 --- a/test/output/autoLineHistogram.svg +++ b/test/output/autoLineHistogram.svg @@ -71,5 +71,5 @@ - + \ No newline at end of file diff --git a/test/output/autoLineMean.svg b/test/output/autoLineMean.svg index c0ed67a180..c39bcdbeee 100644 --- a/test/output/autoLineMean.svg +++ b/test/output/autoLineMean.svg @@ -49,5 +49,5 @@ - + \ No newline at end of file diff --git a/test/output/autoLineMeanColor.svg b/test/output/autoLineMeanColor.svg index cf671e61f3..0acdd68044 100644 --- a/test/output/autoLineMeanColor.svg +++ b/test/output/autoLineMeanColor.svg @@ -65,5 +65,5 @@ - + \ No newline at end of file diff --git a/test/output/autoLineMeanThresholds.svg b/test/output/autoLineMeanThresholds.svg index 31e76f9c4a..e32145a840 100644 --- a/test/output/autoLineMeanThresholds.svg +++ b/test/output/autoLineMeanThresholds.svg @@ -55,5 +55,5 @@ - + \ No newline at end of file diff --git a/test/output/autoLineMeanZero.svg b/test/output/autoLineMeanZero.svg index 3543f63f16..a164072f5f 100644 --- a/test/output/autoLineMeanZero.svg +++ b/test/output/autoLineMeanZero.svg @@ -62,5 +62,5 @@ - + \ No newline at end of file diff --git a/test/output/autoLineZero.svg b/test/output/autoLineZero.svg index 3357333024..591ee68c3e 100644 --- a/test/output/autoLineZero.svg +++ b/test/output/autoLineZero.svg @@ -91,5 +91,5 @@ - + \ No newline at end of file diff --git a/test/output/autoNullReduceContinuous.svg b/test/output/autoNullReduceContinuous.svg index 100f9cbbfa..f8f053b76c 100644 --- a/test/output/autoNullReduceContinuous.svg +++ b/test/output/autoNullReduceContinuous.svg @@ -374,5 +374,5 @@ - + \ No newline at end of file diff --git a/test/output/autoNullReduceDate.svg b/test/output/autoNullReduceDate.svg index 0cd845cff1..74d24996d2 100644 --- a/test/output/autoNullReduceDate.svg +++ b/test/output/autoNullReduceDate.svg @@ -11580,5 +11580,5 @@ - + \ No newline at end of file diff --git a/test/output/autoNullReduceOrdinal.svg b/test/output/autoNullReduceOrdinal.svg index 07e30bf16b..2558830673 100644 --- a/test/output/autoNullReduceOrdinal.svg +++ b/test/output/autoNullReduceOrdinal.svg @@ -31,5 +31,5 @@ - + \ No newline at end of file diff --git a/test/output/autoRectColorReducer.svg b/test/output/autoRectColorReducer.svg index b51e27a759..3ef4421c15 100644 --- a/test/output/autoRectColorReducer.svg +++ b/test/output/autoRectColorReducer.svg @@ -75,5 +75,5 @@ - + \ No newline at end of file diff --git a/test/output/autoRectStackColor.svg b/test/output/autoRectStackColor.svg index 25af3dca92..4e7d1a89e1 100644 --- a/test/output/autoRectStackColor.svg +++ b/test/output/autoRectStackColor.svg @@ -95,5 +95,5 @@ - + \ No newline at end of file diff --git a/test/output/autoRuleZero.svg b/test/output/autoRuleZero.svg index 9b769a0a96..f298cb1179 100644 --- a/test/output/autoRuleZero.svg +++ b/test/output/autoRuleZero.svg @@ -121,5 +121,5 @@ - + \ No newline at end of file diff --git a/test/output/bigint1.svg b/test/output/bigint1.svg index 8802ffe4e4..0c78468c35 100644 --- a/test/output/bigint1.svg +++ b/test/output/bigint1.svg @@ -82,5 +82,5 @@ - + \ No newline at end of file diff --git a/test/output/greekGodsTip.svg b/test/output/greekGodsTip.svg index effea5a4e6..212fbf4e05 100644 --- a/test/output/greekGodsTip.svg +++ b/test/output/greekGodsTip.svg @@ -44,5 +44,5 @@ Chaos/Chaos Gaia/Chaos/Gaia - + \ No newline at end of file diff --git a/test/output/liborProjectionsFacet.html b/test/output/liborProjectionsFacet.html index aeb2fa6670..1469444943 100644 --- a/test/output/liborProjectionsFacet.html +++ b/test/output/liborProjectionsFacet.html @@ -380,13 +380,13 @@ - - - - - - - + + + + + + + \ No newline at end of file diff --git a/test/output/pointerViewof.html b/test/output/pointerViewof.html index 9a939e169e..c5fb990f89 100644 --- a/test/output/pointerViewof.html +++ b/test/output/pointerViewof.html @@ -397,7 +397,7 @@ - + \ No newline at end of file diff --git a/test/output/sparseTitleTip.svg b/test/output/sparseTitleTip.svg index d14e0acc7a..2f99dd9a30 100644 --- a/test/output/sparseTitleTip.svg +++ b/test/output/sparseTitleTip.svg @@ -10985,7 +10985,7 @@ - - + + \ No newline at end of file diff --git a/test/output/tipAreaBand.svg b/test/output/tipAreaBand.svg index 095f7de9ab..9ad11da81c 100644 --- a/test/output/tipAreaBand.svg +++ b/test/output/tipAreaBand.svg @@ -62,5 +62,5 @@ - + \ No newline at end of file diff --git a/test/output/tipAreaStack.svg b/test/output/tipAreaStack.svg index dc62517385..9e109a2acb 100644 --- a/test/output/tipAreaStack.svg +++ b/test/output/tipAreaStack.svg @@ -68,5 +68,5 @@ - + \ No newline at end of file diff --git a/test/output/tipBar.svg b/test/output/tipBar.svg index e04b5e959c..e470216044 100644 --- a/test/output/tipBar.svg +++ b/test/output/tipBar.svg @@ -123,5 +123,5 @@ - + \ No newline at end of file diff --git a/test/output/tipBin.svg b/test/output/tipBin.svg index 5a0e652fc4..d990379108 100644 --- a/test/output/tipBin.svg +++ b/test/output/tipBin.svg @@ -138,5 +138,5 @@ - + \ No newline at end of file diff --git a/test/output/tipBinStack.svg b/test/output/tipBinStack.svg index bb391b24ac..b1c2f8d138 100644 --- a/test/output/tipBinStack.svg +++ b/test/output/tipBinStack.svg @@ -185,5 +185,5 @@ - + \ No newline at end of file diff --git a/test/output/tipCell.svg b/test/output/tipCell.svg index f99a4e98d0..5b5a26b979 100644 --- a/test/output/tipCell.svg +++ b/test/output/tipCell.svg @@ -145,5 +145,5 @@ - + \ No newline at end of file diff --git a/test/output/tipCellFacet.svg b/test/output/tipCellFacet.svg index 27cf50bfba..7dac76253b 100644 --- a/test/output/tipCellFacet.svg +++ b/test/output/tipCellFacet.svg @@ -154,7 +154,7 @@ - - + + \ No newline at end of file diff --git a/test/output/tipDodge.svg b/test/output/tipDodge.svg index 7d9fc59502..17f977cc2d 100644 --- a/test/output/tipDodge.svg +++ b/test/output/tipDodge.svg @@ -374,5 +374,5 @@ - + \ No newline at end of file diff --git a/test/output/tipDot.svg b/test/output/tipDot.svg index b504ae283d..ced1791ba3 100644 --- a/test/output/tipDot.svg +++ b/test/output/tipDot.svg @@ -397,5 +397,5 @@ - + \ No newline at end of file diff --git a/test/output/tipDotFacets.svg b/test/output/tipDotFacets.svg index 961ffd4eda..94af127248 100644 --- a/test/output/tipDotFacets.svg +++ b/test/output/tipDotFacets.svg @@ -11214,12 +11214,12 @@ - - - - - - - + + + + + + + \ No newline at end of file diff --git a/test/output/tipDotFilter.svg b/test/output/tipDotFilter.svg index 9a39dce2e6..ec1742bfbe 100644 --- a/test/output/tipDotFilter.svg +++ b/test/output/tipDotFilter.svg @@ -390,6 +390,6 @@ - - + + \ No newline at end of file diff --git a/test/output/tipDotX.svg b/test/output/tipDotX.svg index e6bbc53585..814b20bd57 100644 --- a/test/output/tipDotX.svg +++ b/test/output/tipDotX.svg @@ -49,5 +49,5 @@ - + \ No newline at end of file diff --git a/test/output/tipFacetX.svg b/test/output/tipFacetX.svg index 8266693f76..2625017782 100644 --- a/test/output/tipFacetX.svg +++ b/test/output/tipFacetX.svg @@ -195,7 +195,7 @@ - - + + \ No newline at end of file diff --git a/test/output/tipGeoCentroid.svg b/test/output/tipGeoCentroid.svg index 368c58d4f6..11275c03b4 100644 --- a/test/output/tipGeoCentroid.svg +++ b/test/output/tipGeoCentroid.svg @@ -17,5 +17,5 @@ - + \ No newline at end of file diff --git a/test/output/tipGeoNoProjection.svg b/test/output/tipGeoNoProjection.svg index 3ef9dddf5b..7cff830917 100644 --- a/test/output/tipGeoNoProjection.svg +++ b/test/output/tipGeoNoProjection.svg @@ -3166,5 +3166,5 @@ - + \ No newline at end of file diff --git a/test/output/tipGeoProjection.svg b/test/output/tipGeoProjection.svg index 6a24fe5af8..761e0d81b7 100644 --- a/test/output/tipGeoProjection.svg +++ b/test/output/tipGeoProjection.svg @@ -3122,5 +3122,5 @@ - + \ No newline at end of file diff --git a/test/output/tipGroupPrimitives.svg b/test/output/tipGroupPrimitives.svg index 42a630be8f..2307a9eb1e 100644 --- a/test/output/tipGroupPrimitives.svg +++ b/test/output/tipGroupPrimitives.svg @@ -60,5 +60,5 @@ - + \ No newline at end of file diff --git a/test/output/tipHexbin.svg b/test/output/tipHexbin.svg index c6592a8ee2..9df33103d3 100644 --- a/test/output/tipHexbin.svg +++ b/test/output/tipHexbin.svg @@ -302,5 +302,5 @@ - + \ No newline at end of file diff --git a/test/output/tipHexbinExplicit.svg b/test/output/tipHexbinExplicit.svg index ad5bd5d292..1b8bb17266 100644 --- a/test/output/tipHexbinExplicit.svg +++ b/test/output/tipHexbinExplicit.svg @@ -302,5 +302,5 @@ - + \ No newline at end of file diff --git a/test/output/tipLine.svg b/test/output/tipLine.svg index 9d9cf0167b..c4a3187007 100644 --- a/test/output/tipLine.svg +++ b/test/output/tipLine.svg @@ -65,5 +65,5 @@ - + \ No newline at end of file diff --git a/test/output/tipNewLines.svg b/test/output/tipNewLines.svg index 7730277974..19771e59d9 100644 --- a/test/output/tipNewLines.svg +++ b/test/output/tipNewLines.svg @@ -25,7 +25,7 @@ between no name - + ​Hello​ ​ @@ -39,7 +39,7 @@ ​{​ ​} - + ​a first​b second​ ​x no name diff --git a/test/output/tipRaster.svg b/test/output/tipRaster.svg index fd89d44f3a..b680582935 100644 --- a/test/output/tipRaster.svg +++ b/test/output/tipRaster.svg @@ -16,5 +16,5 @@ - + \ No newline at end of file diff --git a/test/output/tipRule.svg b/test/output/tipRule.svg index 7fdf14b056..2e4c4fe4f6 100644 --- a/test/output/tipRule.svg +++ b/test/output/tipRule.svg @@ -378,5 +378,5 @@ - + \ No newline at end of file diff --git a/test/output/tipRuleAnchored.svg b/test/output/tipRuleAnchored.svg index 3ca3ed8660..db381ae45b 100644 --- a/test/output/tipRuleAnchored.svg +++ b/test/output/tipRuleAnchored.svg @@ -378,5 +378,5 @@ - + \ No newline at end of file diff --git a/test/output/tipTransform.html b/test/output/tipTransform.html index 8bb83db857..6418046b69 100644 --- a/test/output/tipTransform.html +++ b/test/output/tipTransform.html @@ -71,5 +71,5 @@ - + \ No newline at end of file