From 96c93cb3f88e3d338ede0991da315ed50cea1277 Mon Sep 17 00:00:00 2001 From: Mike Bostock Date: Thu, 7 Dec 2023 19:58:37 -0800 Subject: [PATCH] reduce specificity of generated stylesheets to 0 (#1941) * fix!: reduce specificity of generated stylesheets to 0 By reducing the specificity of selectors in the generated stylesheets to 0, consumers of Plot can much more easily override these styles using their own stylesheets while still enjoying the default styling of Plot. * chore: generate new snapshots Because the change in selector specificity affects every chart, all snapshots will need regenerating. The rendered output should yield no differences however. * chore: add simple test case for style overrides This test renders two categorical legends, one using default Plot styles and the other using styles by setting the `className` option. The styles being overridden have the same selector specificity as those set by Plot, would it not be for the `:where()` selector resetting Plot's specificity to 0. This is easily verified by reverting b2ff68ea. --------- Co-authored-by: Marcus Stade --- src/legends/ramp.js | 4 +- src/legends/swatches.js | 14 +- src/plot.js | 6 +- test/output/aaplBollinger.svg | 6 +- test/output/aaplBollingerCandlestick.svg | 6 +- test/output/aaplBollingerGridInterval.svg | 6 +- test/output/aaplBollingerGridSpacing.svg | 6 +- test/output/aaplCandlestick.svg | 6 +- test/output/aaplChangeVolume.svg | 6 +- test/output/aaplClose.svg | 6 +- test/output/aaplCloseClip.svg | 6 +- test/output/aaplCloseDataTicks.svg | 6 +- test/output/aaplCloseGridColor.svg | 6 +- test/output/aaplCloseGridInterval.svg | 6 +- test/output/aaplCloseGridIntervalName.svg | 6 +- test/output/aaplCloseGridIterable.svg | 6 +- test/output/aaplCloseImplicitGrid.svg | 6 +- test/output/aaplCloseNormalize.svg | 6 +- test/output/aaplCloseUntyped.svg | 6 +- test/output/aaplFancyAxis.svg | 6 +- test/output/aaplInterval.svg | 6 +- test/output/aaplMonthly.svg | 6 +- test/output/aaplVolume.svg | 6 +- test/output/aaplVolumeRect.svg | 6 +- test/output/anscombeQuartet.svg | 6 +- test/output/arcCollatz.svg | 6 +- test/output/arcCollatzUp.svg | 6 +- test/output/arcMiserables.svg | 6 +- test/output/armadillo.svg | 6 +- test/output/aspectRatioBand.svg | 6 +- test/output/aspectRatioLinear.svg | 6 +- test/output/aspectRatioLog.svg | 6 +- test/output/aspectRatioPoint.svg | 6 +- test/output/aspectRatioSqrt.svg | 6 +- test/output/athletesBinsColors.svg | 6 +- test/output/athletesBirthdays.svg | 6 +- test/output/athletesBoxingHeight.svg | 6 +- test/output/athletesHeightWeight.svg | 6 +- test/output/athletesHeightWeightBin.svg | 6 +- test/output/athletesHeightWeightBinStroke.svg | 6 +- test/output/athletesHeightWeightSex.svg | 6 +- test/output/athletesHeightWeightSport.svg | 6 +- test/output/athletesSample.svg | 6 +- test/output/athletesSampleFacet.svg | 6 +- test/output/athletesSexWeight.svg | 6 +- test/output/athletesSortFacet.svg | 6 +- test/output/athletesSortNationality.html | 14 +- test/output/athletesSortNullLimit.html | 14 +- test/output/athletesSortWeightLimit.svg | 6 +- test/output/athletesSportSex.svg | 6 +- test/output/athletesSportWeight.svg | 6 +- test/output/athletesWeight.svg | 6 +- test/output/athletesWeightCumulative.svg | 6 +- test/output/autoArea.svg | 6 +- test/output/autoAreaColor.svg | 6 +- test/output/autoAreaColorColor.svg | 6 +- test/output/autoAreaColorName.svg | 6 +- test/output/autoAreaColorValue.svg | 6 +- test/output/autoAreaStackColor.svg | 6 +- test/output/autoAutoHistogram.svg | 6 +- test/output/autoBar.svg | 6 +- test/output/autoBarColorReducer.svg | 6 +- test/output/autoBarMode.svg | 6 +- test/output/autoBarNoReducer.svg | 6 +- test/output/autoBarNonZeroReducer.svg | 6 +- test/output/autoBarStackColor.svg | 6 +- test/output/autoBarStackColorConstant.svg | 6 +- test/output/autoBarStackColorField.svg | 6 +- test/output/autoBarTimeSeries.svg | 6 +- test/output/autoBarTimeSeriesReduce.svg | 6 +- test/output/autoChannels.svg | 6 +- test/output/autoConnectedScatterplot.svg | 6 +- test/output/autoDot.svg | 6 +- test/output/autoDotBin.svg | 6 +- test/output/autoDotColor.svg | 6 +- test/output/autoDotFacet.svg | 6 +- test/output/autoDotFacet2.svg | 6 +- test/output/autoDotGroup.svg | 6 +- test/output/autoDotOrdCont.svg | 6 +- test/output/autoDotOrdinal.svg | 6 +- test/output/autoDotSize.svg | 6 +- test/output/autoDotSize2.svg | 6 +- test/output/autoDotUnsortedDate.svg | 6 +- test/output/autoDotZero.svg | 6 +- test/output/autoHeatmap.svg | 6 +- test/output/autoHeatmapOrdCont.svg | 6 +- test/output/autoHeatmapOrdinal.svg | 6 +- test/output/autoHistogram.svg | 6 +- test/output/autoHistogramDate.svg | 6 +- test/output/autoHistogramGroup.svg | 6 +- test/output/autoLine.svg | 6 +- test/output/autoLineColor.svg | 6 +- test/output/autoLineColorSeries.svg | 6 +- test/output/autoLineFacet.svg | 6 +- test/output/autoLineHistogram.svg | 6 +- test/output/autoLineMean.svg | 6 +- test/output/autoLineMeanColor.svg | 6 +- test/output/autoLineMeanThresholds.svg | 6 +- test/output/autoLineMeanZero.svg | 6 +- test/output/autoLineZero.svg | 6 +- test/output/autoNullReduceContinuous.svg | 6 +- test/output/autoNullReduceDate.svg | 6 +- test/output/autoNullReduceOrdinal.svg | 6 +- test/output/autoRectColorReducer.svg | 6 +- test/output/autoRectStackColor.svg | 6 +- test/output/autoRuleZero.svg | 6 +- test/output/availability.svg | 6 +- test/output/axisFilter.svg | 6 +- test/output/axisLabelBoth.svg | 6 +- test/output/axisLabelBothReverse.svg | 6 +- test/output/axisLabelFontVariant.svg | 6 +- test/output/axisLabelHref.svg | 6 +- test/output/axisLabelVaryingFill.svg | 6 +- test/output/axisLabelX.svg | 6 +- test/output/axisLabelY.svg | 6 +- test/output/ballotStatusRace.svg | 6 +- test/output/bandClip.svg | 6 +- test/output/bandClip2.svg | 6 +- test/output/beagle.svg | 6 +- test/output/beckerBarley.svg | 6 +- test/output/bigint1.svg | 6 +- test/output/bigint2.svg | 6 +- test/output/bigintLog.svg | 6 +- test/output/bigintOrdinal.html | 10 +- test/output/bigintStack.svg | 6 +- test/output/bin1m.svg | 6 +- test/output/binFillFirstEmpty.html | 14 +- test/output/binStrings.svg | 6 +- test/output/binTimestamps.svg | 6 +- test/output/boundingBoxes.svg | 6 +- test/output/boxplot.svg | 6 +- test/output/boxplotFacetInterval.svg | 6 +- test/output/boxplotFacetNegativeInterval.svg | 6 +- test/output/caltrain.html | 14 +- test/output/caltrainDirection.svg | 6 +- test/output/carsDodge.svg | 6 +- test/output/carsHexbin.html | 10 +- test/output/carsJitter.html | 10 +- test/output/carsMpg.svg | 6 +- test/output/carsParcoords.svg | 6 +- test/output/channelDomainAscending.svg | 6 +- test/output/channelDomainAscendingReverse.svg | 6 +- test/output/channelDomainComparator.svg | 6 +- .../output/channelDomainComparatorReverse.svg | 6 +- test/output/channelDomainDefault.svg | 6 +- test/output/channelDomainDefaultReverse.svg | 6 +- test/output/channelDomainDescending.svg | 6 +- .../output/channelDomainDescendingReverse.svg | 6 +- test/output/channelDomainMinus.svg | 6 +- test/output/channelDomainMinusReverse.svg | 6 +- test/output/channelDomainNull.svg | 6 +- test/output/channelDomainNullReverse.svg | 6 +- test/output/channelDomainReduceCount.svg | 6 +- test/output/channelDomainReduceDefault.svg | 6 +- test/output/clamp.svg | 6 +- test/output/collapsedHistogram.svg | 6 +- test/output/colorLegendCategorical.html | 8 +- .../output/colorLegendCategoricalColumns.html | 10 +- .../output/colorLegendCategoricalReverse.html | 8 +- test/output/colorLegendCategoricalScheme.html | 8 +- test/output/colorLegendDiverging.svg | 4 +- test/output/colorLegendDivergingPivot.svg | 4 +- .../colorLegendDivergingPivotAsymmetric.svg | 4 +- test/output/colorLegendDivergingSqrt.svg | 4 +- test/output/colorLegendImplicitLabel.svg | 4 +- test/output/colorLegendInterpolate.svg | 4 +- test/output/colorLegendInterpolateSqrt.svg | 4 +- test/output/colorLegendLabelBoth.svg | 4 +- test/output/colorLegendLabelLegend.svg | 4 +- test/output/colorLegendLabelScale.svg | 4 +- test/output/colorLegendLinear.svg | 4 +- test/output/colorLegendLinearNoTicks.svg | 4 +- .../colorLegendLinearTruncatedScheme.svg | 4 +- test/output/colorLegendLog.svg | 4 +- test/output/colorLegendLogTicks.svg | 4 +- test/output/colorLegendMargins.svg | 4 +- test/output/colorLegendOpacity.html | 8 +- test/output/colorLegendOpacityOrdinalRamp.svg | 4 +- test/output/colorLegendOpacityRamp.svg | 4 +- test/output/colorLegendOrdinal.html | 8 +- test/output/colorLegendOrdinalRamp.svg | 4 +- .../output/colorLegendOrdinalRampTickSize.svg | 4 +- test/output/colorLegendOrdinalReverseRamp.svg | 4 +- test/output/colorLegendOrdinalScheme.html | 8 +- test/output/colorLegendOrdinalSchemeRamp.svg | 4 +- test/output/colorLegendOrdinalTickFormat.html | 8 +- .../colorLegendOrdinalTickFormatFunction.html | 8 +- test/output/colorLegendOrdinalTicks.svg | 4 +- test/output/colorLegendQuantile.svg | 4 +- test/output/colorLegendQuantileImplicit.svg | 4 +- test/output/colorLegendQuantileSwatches.html | 8 +- test/output/colorLegendQuantitative.svg | 4 +- test/output/colorLegendQuantitativeScheme.svg | 4 +- test/output/colorLegendQuantize.svg | 4 +- test/output/colorLegendQuantizeDescending.svg | 4 +- .../colorLegendQuantizeDescendingReversed.svg | 4 +- test/output/colorLegendQuantizeRange.svg | 4 +- test/output/colorLegendQuantizeReverse.svg | 4 +- test/output/colorLegendSqrt.svg | 4 +- test/output/colorLegendSqrtPiecewise.svg | 4 +- test/output/colorLegendThreshold.svg | 4 +- test/output/colorLegendThresholdTickSize.svg | 4 +- test/output/colorPiecewiseLinearDomain.html | 10 +- .../colorPiecewiseLinearDomainReverse.html | 10 +- test/output/colorPiecewiseLinearRange.html | 10 +- test/output/colorPiecewiseLinearRangeHcl.html | 10 +- .../colorPiecewiseLinearRangeReverse.html | 10 +- test/output/colorSchemesOrdinal.html | 2000 ++++++++--------- test/output/colorSchemesQuantitative.html | 160 +- test/output/contourCa55.svg | 6 +- test/output/contourVapor.svg | 6 +- test/output/countryCentroids.svg | 6 +- test/output/covidIhmeProjectedDeaths.svg | 6 +- test/output/crimeanWarArrow.svg | 6 +- test/output/crimeanWarLine.svg | 6 +- test/output/crimeanWarOverlapped.svg | 6 +- test/output/crimeanWarStacked.svg | 6 +- test/output/crosshairDodge.svg | 6 +- test/output/crosshairDot.svg | 6 +- test/output/crosshairDotFacet.svg | 6 +- test/output/crosshairHexbin.svg | 6 +- test/output/crosshairLine.svg | 6 +- test/output/curves.svg | 6 +- test/output/d3Survey2015Comfort.svg | 6 +- test/output/d3Survey2015Why.svg | 6 +- test/output/darkerDodge.svg | 6 +- test/output/decathlon.html | 14 +- test/output/diamondsBoxplot.svg | 6 +- test/output/diamondsCaratPrice.svg | 6 +- test/output/diamondsCaratPriceDots.svg | 6 +- test/output/diamondsCaratSampling.svg | 6 +- test/output/differenceFilterX.svg | 6 +- test/output/differenceFilterY1.svg | 6 +- test/output/differenceFilterY2.svg | 6 +- test/output/differenceY.svg | 6 +- test/output/differenceY1.svg | 6 +- test/output/differenceYClip.svg | 6 +- test/output/differenceYClipVariable.svg | 6 +- test/output/differenceYConstant.svg | 6 +- test/output/differenceYCurve.svg | 6 +- test/output/differenceYNegative.svg | 6 +- test/output/differenceYOrdinal.svg | 6 +- test/output/differenceYOrdinalFlip.svg | 6 +- test/output/differenceYRandom.svg | 6 +- test/output/differenceYReverse.svg | 6 +- test/output/differenceYVariable.svg | 6 +- test/output/differenceYZero.svg | 6 +- test/output/documentationLinks.svg | 6 +- test/output/dodgeRule.svg | 6 +- test/output/dodgeTextRadius.svg | 6 +- test/output/dodgeTick.svg | 6 +- test/output/dotSort.html | 42 +- test/output/downloads.svg | 6 +- test/output/downloadsOrdinal.svg | 6 +- test/output/driving.svg | 6 +- test/output/electricityDemand.svg | 6 +- test/output/empty.svg | 6 +- test/output/emptyFacet.svg | 6 +- test/output/emptyLegend.svg | 6 +- test/output/emptyX.svg | 6 +- test/output/energyProduction.html | 14 +- test/output/errorBarX.svg | 6 +- test/output/errorBarY.svg | 6 +- test/output/facetReindex.svg | 6 +- test/output/faithfulDensity.svg | 6 +- test/output/faithfulDensity1d.svg | 6 +- test/output/faithfulDensityFill.svg | 6 +- test/output/federalFunds.svg | 6 +- test/output/figcaption.html | 6 +- test/output/figcaptionHtml.html | 6 +- test/output/findArrow.html | 14 +- test/output/firstLadies.svg | 6 +- test/output/flareCluster.svg | 6 +- test/output/flareIndent.svg | 6 +- test/output/flareTree.svg | 6 +- test/output/footballCoverage.svg | 6 +- test/output/frameCorners.svg | 6 +- test/output/frameFacet.svg | 6 +- test/output/frameFillCategorical.html | 14 +- test/output/frameFillQuantitative.html | 10 +- test/output/frameSides.svg | 6 +- test/output/frameSidesX.svg | 6 +- test/output/frameSidesXY.svg | 6 +- test/output/frameSidesY.svg | 6 +- test/output/fruitSales.svg | 6 +- test/output/fruitSalesDate.svg | 6 +- test/output/fruitSalesSingleDate.svg | 6 +- test/output/functionContour.svg | 6 +- test/output/functionContourFaceted.svg | 6 +- test/output/functionContourFaceted2.svg | 6 +- test/output/futureSplom.svg | 6 +- test/output/geoLine.svg | 6 +- test/output/geoLink.svg | 6 +- test/output/gistempAnomaly.svg | 6 +- test/output/gistempAnomalyMoving.svg | 6 +- test/output/gistempAnomalyTransform.svg | 6 +- test/output/googleTrendsRidgeline.svg | 6 +- test/output/graticule.svg | 6 +- test/output/greekGods.svg | 6 +- test/output/greekGodsExplicit.svg | 6 +- test/output/greekGodsTip.svg | 6 +- test/output/gridChoropleth.svg | 6 +- test/output/gridChoroplethDx.svg | 6 +- test/output/gridReduceIdentity.svg | 6 +- test/output/groupedRects.svg | 6 +- test/output/hadcrutWarmingStripes.svg | 6 +- test/output/heatmap.svg | 6 +- test/output/heatmapArray.svg | 6 +- test/output/heatmapConstantOpacity.svg | 6 +- test/output/heatmapFaceted.svg | 6 +- test/output/heatmapFillOpacity.svg | 6 +- test/output/heatmapLog.svg | 6 +- test/output/heatmapOpacity.svg | 6 +- test/output/heatmapPartial.svg | 6 +- test/output/hexbin.svg | 6 +- test/output/hexbinFillX.svg | 6 +- test/output/hexbinIdentityReduce.svg | 6 +- test/output/hexbinOranges.svg | 6 +- test/output/hexbinR.html | 10 +- test/output/hexbinSymbol.html | 14 +- test/output/hexbinText.svg | 6 +- test/output/hexbinZ.html | 14 +- test/output/hexbinZNull.svg | 6 +- test/output/highCardinalityOrdinal.svg | 6 +- test/output/hrefFill.svg | 6 +- test/output/ibmTrading.svg | 6 +- test/output/identityScale.svg | 6 +- test/output/imagePixelated.svg | 6 +- test/output/industryUnemployment.svg | 6 +- test/output/industryUnemploymentShare.svg | 6 +- test/output/industryUnemploymentStream.svg | 6 +- test/output/industryUnemploymentTrack.svg | 6 +- test/output/infinityLog.svg | 6 +- test/output/integerInterval.svg | 6 +- test/output/integerIntervalArea.html | 14 +- test/output/integerIntervalAreaZ.html | 14 +- test/output/internFacetDate.svg | 6 +- test/output/internFacetNaN.svg | 6 +- test/output/intervalAwareBin.svg | 6 +- test/output/intervalAwareGroup.svg | 6 +- test/output/intervalAwareStack.svg | 6 +- test/output/intradayHistogram.svg | 6 +- test/output/kittenConstant.svg | 6 +- test/output/kittenConstantRotate.svg | 6 +- test/output/kittenConstantWidthHeight.svg | 6 +- test/output/kittenVariable.svg | 6 +- test/output/kittenVariableDodge.svg | 6 +- test/output/kittenVariableRotate.svg | 6 +- test/output/learningPoverty.svg | 6 +- test/output/letterFrequencyBar.svg | 6 +- test/output/letterFrequencyCloud.svg | 6 +- test/output/letterFrequencyColumn.svg | 6 +- test/output/letterFrequencyDot.svg | 6 +- test/output/letterFrequencyLollipop.svg | 6 +- test/output/letterFrequencyWheel.svg | 6 +- test/output/liborProjections.svg | 6 +- test/output/liborProjectionsFacet.html | 14 +- test/output/likertSurvey.html | 14 +- test/output/linearRegressionCars.svg | 6 +- test/output/linearRegressionMtcars.svg | 6 +- test/output/linearRegressionPenguins.svg | 6 +- test/output/logDegenerate.svg | 6 +- test/output/longLabels.svg | 6 +- test/output/mandelbrot.svg | 6 +- test/output/markerRuleX.svg | 6 +- test/output/markerRuleY.svg | 6 +- test/output/markerTickX.svg | 6 +- test/output/markerTickY.svg | 6 +- test/output/markovChain.svg | 6 +- test/output/metroInequality.svg | 6 +- test/output/metroInequalityChange.svg | 6 +- test/output/metroUnemployment.svg | 6 +- test/output/metroUnemploymentHighlight.svg | 6 +- test/output/metroUnemploymentIndex.svg | 6 +- test/output/metroUnemploymentMoving.svg | 6 +- test/output/metroUnemploymentNormalize.svg | 6 +- test/output/metroUnemploymentRidgeline.svg | 6 +- test/output/metroUnemploymentSlope.svg | 6 +- test/output/metroUnemploymentStroke.svg | 6 +- test/output/mobyDick.svg | 6 +- test/output/mobyDickFaceted.svg | 6 +- test/output/mobyDickLetterFrequency.svg | 6 +- test/output/mobyDickLetterFrequencyFillX.svg | 6 +- test/output/mobyDickLetterPairs.svg | 6 +- test/output/mobyDickLetterPosition.svg | 6 +- .../mobyDickLetterRelativeFrequency.svg | 6 +- test/output/morleyBoxplot.svg | 6 +- test/output/moviesProfitByGenre.svg | 6 +- test/output/moviesRatingByGenre.svg | 6 +- test/output/multiplicationTable.svg | 6 +- test/output/musicRevenue.svg | 6 +- test/output/musicRevenueCustomOrder.svg | 6 +- test/output/npmVersions.svg | 6 +- test/output/opacityDotsFillUnscaled.svg | 6 +- test/output/opacityDotsStrokeUnscaled.svg | 6 +- test/output/opacityDotsUnscaled.svg | 6 +- test/output/opacityLegend.svg | 4 +- test/output/opacityLegendColor.svg | 4 +- test/output/opacityLegendLinear.svg | 4 +- test/output/opacityLegendLog.svg | 4 +- test/output/opacityLegendRange.svg | 4 +- test/output/opacityLegendSqrt.svg | 4 +- test/output/ordinalBar.svg | 6 +- test/output/pairsArea.svg | 6 +- test/output/penguinAnnotated.svg | 6 +- test/output/penguinCulmen.svg | 6 +- test/output/penguinCulmenArray.svg | 6 +- test/output/penguinCulmenDelaunay.svg | 6 +- test/output/penguinCulmenDelaunayMesh.svg | 6 +- test/output/penguinCulmenDelaunaySpecies.svg | 6 +- test/output/penguinCulmenMarkFacet.svg | 6 +- test/output/penguinCulmenVoronoi.svg | 6 +- test/output/penguinDensity.svg | 6 +- test/output/penguinDensityFill.html | 10 +- test/output/penguinDensityZ.html | 14 +- test/output/penguinDodge.svg | 6 +- test/output/penguinDodgeHexbin.svg | 6 +- test/output/penguinDodgeVoronoi.svg | 6 +- test/output/penguinFacetAnnotated.svg | 6 +- test/output/penguinFacetAnnotatedX.svg | 6 +- test/output/penguinFacetDodge.svg | 6 +- test/output/penguinFacetDodgeIdentity.svg | 6 +- test/output/penguinFacetDodgeIsland.html | 14 +- test/output/penguinFacetDodgeSymbol.html | 14 +- test/output/penguinHexbinColorExplicit.svg | 6 +- test/output/penguinIslandUnknown.svg | 6 +- test/output/penguinMass.svg | 6 +- test/output/penguinMassSex.svg | 6 +- test/output/penguinMassSexSpecies.svg | 6 +- test/output/penguinMassSpecies.svg | 6 +- test/output/penguinNA1.svg | 6 +- test/output/penguinNA2.svg | 6 +- test/output/penguinNA3.svg | 6 +- test/output/penguinQuantileEmpty.svg | 6 +- test/output/penguinQuantileUnknown.html | 10 +- test/output/penguinSex.svg | 6 +- test/output/penguinSexMassCulmenSpecies.svg | 6 +- test/output/penguinSizeSymbols.html | 14 +- test/output/penguinSpeciesCheysson.html | 14 +- test/output/penguinSpeciesGradient.svg | 6 +- test/output/penguinSpeciesGroup.svg | 6 +- test/output/penguinSpeciesImageFilter.svg | 6 +- test/output/penguinSpeciesIsland.svg | 6 +- test/output/penguinSpeciesIslandRelative.svg | 6 +- test/output/penguinSpeciesIslandSex.svg | 6 +- test/output/penguinVoronoi1D.svg | 6 +- test/output/pointerLinkedRectInterval.svg | 6 +- test/output/pointerNonFaceted.svg | 6 +- test/output/pointerRenderCompose.svg | 6 +- test/output/pointerViewof.html | 6 +- test/output/polylinear.svg | 6 +- test/output/populationByLatitude.svg | 6 +- test/output/populationByLongitude.svg | 6 +- test/output/projectionBleedEdges.svg | 6 +- test/output/projectionBleedEdges2.svg | 6 +- test/output/projectionClipAngle.svg | 6 +- test/output/projectionClipAngleFrame.svg | 6 +- test/output/projectionClipBerghaus.svg | 6 +- test/output/projectionFitAntarctica.svg | 6 +- test/output/projectionFitBertin1953.svg | 6 +- test/output/projectionFitConic.svg | 6 +- test/output/projectionFitIdentity.svg | 6 +- test/output/projectionFitUsAlbers.svg | 6 +- test/output/projectionHeightAlbers.svg | 6 +- test/output/projectionHeightEqualEarth.svg | 6 +- test/output/projectionHeightGeometry.svg | 6 +- test/output/projectionHeightGeometryNull.svg | 6 +- test/output/projectionHeightMercator.svg | 6 +- test/output/projectionHeightOrthographic.svg | 6 +- test/output/projectionNull.svg | 6 +- test/output/randomBins.svg | 6 +- test/output/randomBinsXY.svg | 6 +- test/output/randomQuantile.svg | 6 +- test/output/randomWalk.svg | 6 +- test/output/randomWalkCustomMap1.svg | 6 +- test/output/randomWalkCustomMap2.svg | 6 +- test/output/randomWalkCustomMap3.svg | 6 +- test/output/rasterCa55Barycentric.svg | 6 +- test/output/rasterCa55Color.svg | 6 +- test/output/rasterCa55Nearest.svg | 6 +- test/output/rasterCa55None.svg | 6 +- test/output/rasterCa55RandomWalk.svg | 6 +- test/output/rasterFacet.svg | 6 +- test/output/rasterPenguinsBarycentric.svg | 6 +- test/output/rasterPenguinsBlur.svg | 6 +- test/output/rasterPenguinsRandomWalk.svg | 6 +- test/output/rasterPrecision.svg | 6 +- test/output/rasterVapor.svg | 6 +- test/output/rasterVapor2.html | 10 +- test/output/rasterVaporEqualEarth.svg | 6 +- .../rasterVaporEqualEarthBarycentric.svg | 6 +- test/output/rasterVaporPeters.svg | 6 +- test/output/rasterWalmartBarycentric.svg | 6 +- .../rasterWalmartBarycentricOpacity.svg | 6 +- test/output/rasterWalmartRandomWalk.svg | 6 +- test/output/rasterWalmartWalkOpacity.svg | 6 +- test/output/rectBand.svg | 6 +- test/output/rectBandX.svg | 6 +- test/output/rectBandX1.svg | 6 +- test/output/rectBandY.svg | 6 +- test/output/rectPointX1.svg | 6 +- test/output/reducerScaleOverrideFunction.svg | 6 +- .../reducerScaleOverrideImplementation.svg | 6 +- test/output/reducerScaleOverrideName.svg | 6 +- test/output/seattlePrecipitationDensity.svg | 6 +- test/output/seattlePrecipitationRule.svg | 6 +- test/output/seattlePrecipitationSum.svg | 6 +- test/output/seattleTemperatureAmplitude.html | 10 +- test/output/seattleTemperatureBand.svg | 6 +- test/output/seattleTemperatureCell.svg | 6 +- test/output/sfCovidDeaths.svg | 6 +- test/output/sfTemperatureBand.svg | 6 +- test/output/sfTemperatureBandArea.svg | 6 +- test/output/sfTemperatureWindow.svg | 6 +- test/output/shiftX.svg | 6 +- test/output/shorthandArea.svg | 6 +- test/output/shorthandAreaY.svg | 6 +- test/output/shorthandBarY.svg | 6 +- test/output/shorthandBinRectY.svg | 6 +- test/output/shorthandBoxX.svg | 6 +- test/output/shorthandCell.svg | 6 +- test/output/shorthandCellCategorical.svg | 6 +- test/output/shorthandCellX.svg | 6 +- test/output/shorthandDot.svg | 6 +- test/output/shorthandDotX.svg | 6 +- test/output/shorthandGroupBarY.svg | 6 +- test/output/shorthandLine.svg | 6 +- test/output/shorthandLineY.svg | 6 +- test/output/shorthandLineYWindow.svg | 6 +- test/output/shorthandRectY.svg | 6 +- test/output/shorthandRuleX.svg | 6 +- test/output/shorthandText.svg | 6 +- test/output/shorthandTextX.svg | 6 +- test/output/shorthandTickX.svg | 6 +- test/output/shorthandVector.svg | 6 +- test/output/shorthandVectorX.svg | 6 +- test/output/simpsonsRatings.svg | 6 +- test/output/simpsonsRatingsDots.svg | 6 +- test/output/simpsonsViews.html | 10 +- test/output/singleValueBar.svg | 6 +- test/output/singleValueBin.svg | 6 +- test/output/softwareVersions.svg | 6 +- test/output/sparseCell.svg | 6 +- test/output/sparseTitle.svg | 6 +- test/output/sparseTitleTip.svg | 6 +- test/output/stackedBar.svg | 6 +- test/output/stackedRect.svg | 6 +- test/output/stargazers.svg | 6 +- test/output/stargazersBinned.svg | 6 +- test/output/stargazersHourly.svg | 6 +- test/output/stargazersHourlyGroup.svg | 6 +- test/output/stocksIndex.svg | 6 +- .../styleOverrideLegendCategorical.html | 103 + test/output/symbolLegendBasic.html | 8 +- test/output/symbolLegendColorFill.html | 8 +- test/output/symbolLegendColorStroke.html | 8 +- test/output/symbolLegendDifferentColor.html | 8 +- test/output/symbolLegendExplicitColor.html | 8 +- test/output/symbolLegendFill.html | 8 +- test/output/symbolLegendImplicitRange.html | 8 +- test/output/symbolLegendOpacityColor.html | 8 +- test/output/symbolLegendOpacityFill.html | 8 +- test/output/symbolLegendOpacityStroke.html | 8 +- test/output/symbolLegendStroke.html | 8 +- test/output/symbolSetFill.svg | 6 +- test/output/symbolSetFillColor.html | 14 +- test/output/symbolSetStroke.svg | 6 +- test/output/symbolSetStrokeColor.html | 14 +- test/output/textOverflow.svg | 6 +- test/output/textOverflowClip.svg | 6 +- test/output/textOverflowEllipsis.svg | 6 +- test/output/textOverflowMonospace.svg | 6 +- test/output/textOverflowNone.svg | 6 +- test/output/thisIsJustToSay.svg | 6 +- test/output/timeAxisBottom.svg | 150 +- test/output/timeAxisExplicitInterval.svg | 6 +- .../timeAxisExplicitNonstandardInterval.svg | 6 +- ...meAxisExplicitNonstandardIntervalTicks.svg | 6 +- test/output/timeAxisLeft.svg | 54 +- test/output/timeAxisLocal.svg | 6 +- test/output/timeAxisOrdinal.svg | 6 +- test/output/timeAxisOrdinalSparseInterval.svg | 6 +- test/output/timeAxisOrdinalSparseTicks.svg | 6 +- test/output/timeAxisOrdinalTicks.svg | 6 +- test/output/timeAxisRight.svg | 54 +- test/output/timeAxisTop.svg | 150 +- test/output/tipAreaBand.svg | 6 +- test/output/tipAreaStack.svg | 6 +- test/output/tipBar.svg | 6 +- test/output/tipBin.svg | 6 +- test/output/tipBinStack.svg | 6 +- test/output/tipCell.svg | 6 +- test/output/tipCellFacet.svg | 6 +- test/output/tipDodge.svg | 6 +- test/output/tipDot.svg | 6 +- test/output/tipDotFacets.svg | 6 +- test/output/tipDotFilter.svg | 6 +- test/output/tipDotX.svg | 6 +- test/output/tipFacetX.svg | 6 +- test/output/tipFormatChannels.svg | 6 +- test/output/tipFormatFacet.svg | 6 +- test/output/tipFormatFacetFalse.svg | 6 +- test/output/tipFormatFacetFormat.svg | 6 +- .../output/tipFormatFacetFormatDefaultDay.svg | 6 +- .../tipFormatFacetFormatDefaultHour.svg | 6 +- .../tipFormatFacetFormatDefaultYear.svg | 6 +- test/output/tipFormatFacetLabel.svg | 6 +- test/output/tipFormatFunction.svg | 6 +- test/output/tipFormatNull.svg | 6 +- test/output/tipFormatPaired.svg | 6 +- test/output/tipFormatPairedFormat.svg | 6 +- test/output/tipFormatPairedLabel.svg | 6 +- test/output/tipFormatPairedLabelChannel.svg | 6 +- test/output/tipFormatPairedLabelScale.svg | 6 +- test/output/tipFormatPairedPartial.svg | 6 +- test/output/tipFormatPriority1.svg | 6 +- test/output/tipFormatPriority2.svg | 6 +- test/output/tipFormatPriorityDefault.svg | 6 +- test/output/tipFormatPriorityPaired.svg | 6 +- test/output/tipFormatPriorityPaired2.svg | 6 +- test/output/tipFormatStringDate.svg | 6 +- test/output/tipFormatStringNumber.svg | 6 +- test/output/tipFormatTitleExplicit.svg | 6 +- test/output/tipFormatTitleIgnoreFormat.svg | 6 +- test/output/tipFormatTitlePrimitive.svg | 6 +- test/output/tipGeoCentroid.svg | 6 +- test/output/tipGeoNoProjection.svg | 6 +- test/output/tipGeoProjection.svg | 6 +- test/output/tipGroupPrimitives.svg | 6 +- test/output/tipHexbin.svg | 6 +- test/output/tipHexbinExplicit.svg | 6 +- test/output/tipLineX.svg | 6 +- test/output/tipLineY.svg | 6 +- test/output/tipLongText.svg | 6 +- test/output/tipNewLines.svg | 6 +- test/output/tipRaster.svg | 6 +- test/output/tipRule.svg | 6 +- test/output/tipRuleAnchored.svg | 6 +- test/output/tipTransform.html | 10 +- test/output/title.html | 14 +- test/output/titleHtml.html | 6 +- test/output/trafficHorizon.html | 14 +- test/output/travelersCovidDrop.svg | 6 +- test/output/travelersYearOverYear.svg | 6 +- test/output/treeDelimiter.svg | 6 +- test/output/treeDelimiter2.svg | 6 +- test/output/uniformRandomDifference.svg | 6 +- test/output/untypedDateBin.svg | 6 +- test/output/usCongressAge.svg | 6 +- test/output/usCongressAgeColorExplicit.svg | 6 +- test/output/usCongressAgeGender.svg | 6 +- test/output/usCongressAgeSymbolExplicit.svg | 6 +- test/output/usCountyChoropleth.html | 10 +- test/output/usCountySpikes.svg | 6 +- test/output/usPopulationStateAge.svg | 6 +- test/output/usPopulationStateAgeDots.svg | 6 +- test/output/usPopulationStateAgeGrouped.svg | 6 +- test/output/usPresidentFavorabilityDots.svg | 6 +- test/output/usPresidentGallery.svg | 6 +- test/output/usPresidentGalleryAlt.svg | 6 +- test/output/usPresidentialElection2020.svg | 6 +- test/output/usPresidentialElectionMap2020.svg | 6 +- test/output/usPresidentialForecast2016.svg | 6 +- test/output/usRetailSales.svg | 6 +- test/output/usStateCapitals.svg | 6 +- test/output/usStateCapitalsVoronoi.svg | 6 +- test/output/usStatePopulationChange.svg | 6 +- .../usStatePopulationChangeRelative.svg | 6 +- test/output/varColor.svg | 6 +- test/output/varColor2.svg | 6 +- test/output/varColorP3.svg | 6 +- test/output/vectorField.svg | 6 +- test/output/vectorFrame.svg | 6 +- test/output/volcano.svg | 6 +- test/output/volcanoContour.svg | 6 +- test/output/volcanoTerrain.svg | 6 +- test/output/walmarts.html | 10 +- test/output/walmartsAdditions.svg | 6 +- test/output/walmartsDecades.svg | 6 +- test/output/walmartsDensity.svg | 6 +- test/output/walmartsDensityUnprojected.svg | 6 +- .../output/warnMisalignedDivergingDomain.html | 10 +- ...meAxisOrdinalExplicitIncompatibleTicks.svg | 6 +- .../warnTimeAxisOrdinalIncompatible.svg | 6 +- test/output/wealthBritainBar.svg | 6 +- test/output/wealthBritainProportionPlot.svg | 6 +- test/output/wordCloud.svg | 6 +- test/output/wordLengthMobyDick.svg | 6 +- test/output/yearlyRequests.svg | 6 +- test/output/yearlyRequestsDate.svg | 6 +- test/output/yearlyRequestsDot.svg | 6 +- test/output/yearlyRequestsLine.svg | 6 +- test/output/youngAdults.html | 14 +- test/plots/index.ts | 1 + test/plots/style-overrides.ts | 31 + 695 files changed, 3612 insertions(+), 3477 deletions(-) create mode 100644 test/output/styleOverrideLegendCategorical.html create mode 100644 test/plots/style-overrides.ts diff --git a/src/legends/ramp.js b/src/legends/ramp.js index 5dd8d9eade..3dcaf411c6 100644 --- a/src/legends/ramp.js +++ b/src/legends/ramp.js @@ -38,14 +38,14 @@ export function legendRamp(color, options) { .call((svg) => // Warning: if you edit this, change defaultClassName. svg.append("style").text( - `.${className}-ramp { + `:where(.${className}-ramp) { display: block; height: auto; height: intrinsic; max-width: 100%; overflow: visible; } -.${className}-ramp text { +:where(.${className}-ramp text) { white-space: pre; }` ) diff --git a/src/legends/swatches.js b/src/legends/swatches.js index e5876aa546..b628a0a5af 100644 --- a/src/legends/swatches.js +++ b/src/legends/swatches.js @@ -96,16 +96,16 @@ function legendItems(scale, options = {}, swatch) { let extraStyle; if (columns != null) { - extraStyle = `.${className}-swatches-columns .${className}-swatch { + extraStyle = `:where(.${className}-swatches-columns .${className}-swatch) { display: flex; align-items: center; break-inside: avoid; padding-bottom: 1px; } -.${className}-swatches-columns .${className}-swatch::before { +:where(.${className}-swatches-columns .${className}-swatch::before) { flex-shrink: 0; } -.${className}-swatches-columns .${className}-swatch-label { +:where(.${className}-swatches-columns .${className}-swatch-label) { white-space: nowrap; overflow: hidden; text-overflow: ellipsis; @@ -123,13 +123,13 @@ function legendItems(scale, options = {}, swatch) { item.append("div").attr("class", `${className}-swatch-label`).attr("title", tickFormat).text(tickFormat) ); } else { - extraStyle = `.${className}-swatches-wrap { + extraStyle = `:where(.${className}-swatches-wrap) { display: flex; align-items: center; min-height: 33px; flex-wrap: wrap; } -.${className}-swatches-wrap .${className}-swatch { +:where(.${className}-swatches-wrap .${className}-swatch) { display: inline-flex; align-items: center; margin-right: 1em; @@ -150,12 +150,12 @@ function legendItems(scale, options = {}, swatch) { return swatches .call((div) => div.insert("style", "*").text( - `.${className}-swatches { + `:where(.${className}-swatches) { font-family: system-ui, sans-serif; font-size: 10px; margin-bottom: 0.5em; } -.${className}-swatch > svg { +:where(.${className}-swatch > svg) { margin-right: 0.5em; overflow: visible; } diff --git a/src/plot.js b/src/plot.js index d6f85da9a3..541218f306 100644 --- a/src/plot.js +++ b/src/plot.js @@ -257,15 +257,15 @@ export function plot(options = {}) { .call((svg) => // Warning: if you edit this, change defaultClassName. svg.append("style").text( - `.${className} { + `:where(.${className}) { --plot-background: white; display: block; height: auto; height: intrinsic; max-width: 100%; } -.${className} text, -.${className} tspan { +:where(.${className} text), +:where(.${className} tspan) { white-space: pre; }` ) diff --git a/test/output/aaplBollinger.svg b/test/output/aaplBollinger.svg index 678f30e8ce..075c28c2c2 100644 --- a/test/output/aaplBollinger.svg +++ b/test/output/aaplBollinger.svg @@ -1,6 +1,6 @@ diff --git a/test/output/aaplBollingerCandlestick.svg b/test/output/aaplBollingerCandlestick.svg index 5e994d729c..c364f82482 100644 --- a/test/output/aaplBollingerCandlestick.svg +++ b/test/output/aaplBollingerCandlestick.svg @@ -1,6 +1,6 @@ diff --git a/test/output/aaplBollingerGridInterval.svg b/test/output/aaplBollingerGridInterval.svg index 2f89e289b4..33308bfa11 100644 --- a/test/output/aaplBollingerGridInterval.svg +++ b/test/output/aaplBollingerGridInterval.svg @@ -1,6 +1,6 @@ diff --git a/test/output/aaplBollingerGridSpacing.svg b/test/output/aaplBollingerGridSpacing.svg index 2f89e289b4..33308bfa11 100644 --- a/test/output/aaplBollingerGridSpacing.svg +++ b/test/output/aaplBollingerGridSpacing.svg @@ -1,6 +1,6 @@ diff --git a/test/output/aaplCandlestick.svg b/test/output/aaplCandlestick.svg index 4c7f1b345b..d8349b974c 100644 --- a/test/output/aaplCandlestick.svg +++ b/test/output/aaplCandlestick.svg @@ -1,6 +1,6 @@ diff --git a/test/output/aaplChangeVolume.svg b/test/output/aaplChangeVolume.svg index aaaaf1c575..68142a555d 100644 --- a/test/output/aaplChangeVolume.svg +++ b/test/output/aaplChangeVolume.svg @@ -1,6 +1,6 @@ diff --git a/test/output/aaplClose.svg b/test/output/aaplClose.svg index 3375f159c0..05df889509 100644 --- a/test/output/aaplClose.svg +++ b/test/output/aaplClose.svg @@ -1,6 +1,6 @@ diff --git a/test/output/aaplCloseClip.svg b/test/output/aaplCloseClip.svg index 1b3a3f87dd..99f74faded 100644 --- a/test/output/aaplCloseClip.svg +++ b/test/output/aaplCloseClip.svg @@ -1,6 +1,6 @@ diff --git a/test/output/aaplCloseDataTicks.svg b/test/output/aaplCloseDataTicks.svg index 1b9b9b1e84..4031b73628 100644 --- a/test/output/aaplCloseDataTicks.svg +++ b/test/output/aaplCloseDataTicks.svg @@ -1,6 +1,6 @@ diff --git a/test/output/aaplCloseGridColor.svg b/test/output/aaplCloseGridColor.svg index 6f20c438f0..66b9b5831b 100644 --- a/test/output/aaplCloseGridColor.svg +++ b/test/output/aaplCloseGridColor.svg @@ -1,6 +1,6 @@ diff --git a/test/output/aaplCloseGridInterval.svg b/test/output/aaplCloseGridInterval.svg index 0a36e3f467..b4de53f9e4 100644 --- a/test/output/aaplCloseGridInterval.svg +++ b/test/output/aaplCloseGridInterval.svg @@ -1,6 +1,6 @@ diff --git a/test/output/aaplCloseGridIntervalName.svg b/test/output/aaplCloseGridIntervalName.svg index d8854e280f..ca24c6c896 100644 --- a/test/output/aaplCloseGridIntervalName.svg +++ b/test/output/aaplCloseGridIntervalName.svg @@ -1,6 +1,6 @@ diff --git a/test/output/aaplCloseGridIterable.svg b/test/output/aaplCloseGridIterable.svg index 26670ede20..9358b5f184 100644 --- a/test/output/aaplCloseGridIterable.svg +++ b/test/output/aaplCloseGridIterable.svg @@ -1,6 +1,6 @@ diff --git a/test/output/aaplCloseImplicitGrid.svg b/test/output/aaplCloseImplicitGrid.svg index 4c0029f7b0..0d6a3403bf 100644 --- a/test/output/aaplCloseImplicitGrid.svg +++ b/test/output/aaplCloseImplicitGrid.svg @@ -1,6 +1,6 @@ diff --git a/test/output/aaplCloseNormalize.svg b/test/output/aaplCloseNormalize.svg index f400ac77a4..7e534d0ecc 100644 --- a/test/output/aaplCloseNormalize.svg +++ b/test/output/aaplCloseNormalize.svg @@ -1,6 +1,6 @@ diff --git a/test/output/aaplCloseUntyped.svg b/test/output/aaplCloseUntyped.svg index 0cfadd4a40..f82ab93a50 100644 --- a/test/output/aaplCloseUntyped.svg +++ b/test/output/aaplCloseUntyped.svg @@ -1,6 +1,6 @@ diff --git a/test/output/aaplFancyAxis.svg b/test/output/aaplFancyAxis.svg index 9a58263c20..c4110ce90c 100644 --- a/test/output/aaplFancyAxis.svg +++ b/test/output/aaplFancyAxis.svg @@ -1,6 +1,6 @@ diff --git a/test/output/aaplInterval.svg b/test/output/aaplInterval.svg index fd23f463ef..dedc8dd2de 100644 --- a/test/output/aaplInterval.svg +++ b/test/output/aaplInterval.svg @@ -1,6 +1,6 @@ diff --git a/test/output/aaplMonthly.svg b/test/output/aaplMonthly.svg index f804860180..78ee56ef4a 100644 --- a/test/output/aaplMonthly.svg +++ b/test/output/aaplMonthly.svg @@ -1,6 +1,6 @@ diff --git a/test/output/aaplVolume.svg b/test/output/aaplVolume.svg index b71625bf2d..63feb4b7b5 100644 --- a/test/output/aaplVolume.svg +++ b/test/output/aaplVolume.svg @@ -1,6 +1,6 @@ diff --git a/test/output/aaplVolumeRect.svg b/test/output/aaplVolumeRect.svg index b4d1d3cd3c..e0f94337aa 100644 --- a/test/output/aaplVolumeRect.svg +++ b/test/output/aaplVolumeRect.svg @@ -1,6 +1,6 @@ diff --git a/test/output/anscombeQuartet.svg b/test/output/anscombeQuartet.svg index 86ea47fcf9..10bc85c3c3 100644 --- a/test/output/anscombeQuartet.svg +++ b/test/output/anscombeQuartet.svg @@ -1,6 +1,6 @@ diff --git a/test/output/arcCollatz.svg b/test/output/arcCollatz.svg index fdb2574371..5a560933a8 100644 --- a/test/output/arcCollatz.svg +++ b/test/output/arcCollatz.svg @@ -1,6 +1,6 @@ diff --git a/test/output/arcCollatzUp.svg b/test/output/arcCollatzUp.svg index d0ad29637f..558d4cdbb2 100644 --- a/test/output/arcCollatzUp.svg +++ b/test/output/arcCollatzUp.svg @@ -1,6 +1,6 @@ diff --git a/test/output/arcMiserables.svg b/test/output/arcMiserables.svg index bb4866cf71..0ade45029f 100644 --- a/test/output/arcMiserables.svg +++ b/test/output/arcMiserables.svg @@ -1,6 +1,6 @@ diff --git a/test/output/armadillo.svg b/test/output/armadillo.svg index 4494308000..035971352f 100644 --- a/test/output/armadillo.svg +++ b/test/output/armadillo.svg @@ -1,6 +1,6 @@ diff --git a/test/output/aspectRatioBand.svg b/test/output/aspectRatioBand.svg index 1c3da8ea06..8c3d3f683f 100644 --- a/test/output/aspectRatioBand.svg +++ b/test/output/aspectRatioBand.svg @@ -1,6 +1,6 @@ diff --git a/test/output/aspectRatioLinear.svg b/test/output/aspectRatioLinear.svg index eed18dc3b1..35771cc7ce 100644 --- a/test/output/aspectRatioLinear.svg +++ b/test/output/aspectRatioLinear.svg @@ -1,6 +1,6 @@ diff --git a/test/output/aspectRatioLog.svg b/test/output/aspectRatioLog.svg index eae1ef1a77..a37ed9d1f9 100644 --- a/test/output/aspectRatioLog.svg +++ b/test/output/aspectRatioLog.svg @@ -1,6 +1,6 @@ diff --git a/test/output/aspectRatioPoint.svg b/test/output/aspectRatioPoint.svg index 736d0fcedb..888083329c 100644 --- a/test/output/aspectRatioPoint.svg +++ b/test/output/aspectRatioPoint.svg @@ -1,6 +1,6 @@ diff --git a/test/output/aspectRatioSqrt.svg b/test/output/aspectRatioSqrt.svg index 4491cf8808..f4529fb12e 100644 --- a/test/output/aspectRatioSqrt.svg +++ b/test/output/aspectRatioSqrt.svg @@ -1,6 +1,6 @@ diff --git a/test/output/athletesBinsColors.svg b/test/output/athletesBinsColors.svg index 92f0ed39b2..b1f258072f 100644 --- a/test/output/athletesBinsColors.svg +++ b/test/output/athletesBinsColors.svg @@ -1,6 +1,6 @@ diff --git a/test/output/athletesBirthdays.svg b/test/output/athletesBirthdays.svg index 9ee4a453fa..5f2998066d 100644 --- a/test/output/athletesBirthdays.svg +++ b/test/output/athletesBirthdays.svg @@ -1,6 +1,6 @@ diff --git a/test/output/athletesBoxingHeight.svg b/test/output/athletesBoxingHeight.svg index e87da54246..01cd686ca1 100644 --- a/test/output/athletesBoxingHeight.svg +++ b/test/output/athletesBoxingHeight.svg @@ -1,6 +1,6 @@ diff --git a/test/output/athletesHeightWeight.svg b/test/output/athletesHeightWeight.svg index f27250d7c1..e1e7330c86 100644 --- a/test/output/athletesHeightWeight.svg +++ b/test/output/athletesHeightWeight.svg @@ -1,6 +1,6 @@ diff --git a/test/output/athletesHeightWeightBin.svg b/test/output/athletesHeightWeightBin.svg index bdda5781ad..27796c8b3a 100644 --- a/test/output/athletesHeightWeightBin.svg +++ b/test/output/athletesHeightWeightBin.svg @@ -1,6 +1,6 @@ diff --git a/test/output/athletesHeightWeightBinStroke.svg b/test/output/athletesHeightWeightBinStroke.svg index 160471a747..6bf209ae27 100644 --- a/test/output/athletesHeightWeightBinStroke.svg +++ b/test/output/athletesHeightWeightBinStroke.svg @@ -1,6 +1,6 @@ diff --git a/test/output/athletesHeightWeightSex.svg b/test/output/athletesHeightWeightSex.svg index 28957d6ea2..fa1dc66a7b 100644 --- a/test/output/athletesHeightWeightSex.svg +++ b/test/output/athletesHeightWeightSex.svg @@ -1,6 +1,6 @@ diff --git a/test/output/athletesHeightWeightSport.svg b/test/output/athletesHeightWeightSport.svg index 34c9a07241..36a7f3ae49 100644 --- a/test/output/athletesHeightWeightSport.svg +++ b/test/output/athletesHeightWeightSport.svg @@ -1,6 +1,6 @@ diff --git a/test/output/athletesSample.svg b/test/output/athletesSample.svg index 26cfd02551..f3616e32aa 100644 --- a/test/output/athletesSample.svg +++ b/test/output/athletesSample.svg @@ -1,6 +1,6 @@ diff --git a/test/output/athletesSampleFacet.svg b/test/output/athletesSampleFacet.svg index 21aba73f19..c9ff96608e 100644 --- a/test/output/athletesSampleFacet.svg +++ b/test/output/athletesSampleFacet.svg @@ -1,6 +1,6 @@ diff --git a/test/output/athletesSexWeight.svg b/test/output/athletesSexWeight.svg index 5cff7decd3..cedd02735e 100644 --- a/test/output/athletesSexWeight.svg +++ b/test/output/athletesSexWeight.svg @@ -1,6 +1,6 @@ diff --git a/test/output/athletesSortFacet.svg b/test/output/athletesSortFacet.svg index 377c60427b..285f9c93b5 100644 --- a/test/output/athletesSortFacet.svg +++ b/test/output/athletesSortFacet.svg @@ -1,6 +1,6 @@ diff --git a/test/output/athletesSortNationality.html b/test/output/athletesSortNationality.html index 1999f1909a..52d49dce80 100644 --- a/test/output/athletesSortNationality.html +++ b/test/output/athletesSortNationality.html @@ -1,25 +1,25 @@
diff --git a/test/output/athletesSortNullLimit.html b/test/output/athletesSortNullLimit.html index 6ede5a355d..4206952252 100644 --- a/test/output/athletesSortNullLimit.html +++ b/test/output/athletesSortNullLimit.html @@ -1,25 +1,25 @@
diff --git a/test/output/athletesSortWeightLimit.svg b/test/output/athletesSortWeightLimit.svg index 2cc20e4eb8..ca97eb8b45 100644 --- a/test/output/athletesSortWeightLimit.svg +++ b/test/output/athletesSortWeightLimit.svg @@ -1,6 +1,6 @@ diff --git a/test/output/athletesSportSex.svg b/test/output/athletesSportSex.svg index a4747c9e9a..92f5d9fd29 100644 --- a/test/output/athletesSportSex.svg +++ b/test/output/athletesSportSex.svg @@ -1,6 +1,6 @@ diff --git a/test/output/athletesSportWeight.svg b/test/output/athletesSportWeight.svg index 49fc4af552..6738c5fc48 100644 --- a/test/output/athletesSportWeight.svg +++ b/test/output/athletesSportWeight.svg @@ -1,6 +1,6 @@ diff --git a/test/output/athletesWeight.svg b/test/output/athletesWeight.svg index 0da2e3a51f..510120c9a6 100644 --- a/test/output/athletesWeight.svg +++ b/test/output/athletesWeight.svg @@ -1,6 +1,6 @@ diff --git a/test/output/athletesWeightCumulative.svg b/test/output/athletesWeightCumulative.svg index dc1f2673de..30edee6e7c 100644 --- a/test/output/athletesWeightCumulative.svg +++ b/test/output/athletesWeightCumulative.svg @@ -1,6 +1,6 @@ diff --git a/test/output/autoArea.svg b/test/output/autoArea.svg index aad8457a89..b24c153c05 100644 --- a/test/output/autoArea.svg +++ b/test/output/autoArea.svg @@ -1,6 +1,6 @@ diff --git a/test/output/autoAreaColor.svg b/test/output/autoAreaColor.svg index f161305dd2..799a540a70 100644 --- a/test/output/autoAreaColor.svg +++ b/test/output/autoAreaColor.svg @@ -1,6 +1,6 @@ diff --git a/test/output/autoAreaColorColor.svg b/test/output/autoAreaColorColor.svg index a5d781fc69..02ce6a3602 100644 --- a/test/output/autoAreaColorColor.svg +++ b/test/output/autoAreaColorColor.svg @@ -1,6 +1,6 @@ diff --git a/test/output/autoAreaColorName.svg b/test/output/autoAreaColorName.svg index a5d781fc69..02ce6a3602 100644 --- a/test/output/autoAreaColorName.svg +++ b/test/output/autoAreaColorName.svg @@ -1,6 +1,6 @@ diff --git a/test/output/autoAreaColorValue.svg b/test/output/autoAreaColorValue.svg index f161305dd2..799a540a70 100644 --- a/test/output/autoAreaColorValue.svg +++ b/test/output/autoAreaColorValue.svg @@ -1,6 +1,6 @@ diff --git a/test/output/autoAreaStackColor.svg b/test/output/autoAreaStackColor.svg index fa69ad8adb..fa7d3a0563 100644 --- a/test/output/autoAreaStackColor.svg +++ b/test/output/autoAreaStackColor.svg @@ -1,6 +1,6 @@ diff --git a/test/output/autoAutoHistogram.svg b/test/output/autoAutoHistogram.svg index fc377f3b08..387da78a36 100644 --- a/test/output/autoAutoHistogram.svg +++ b/test/output/autoAutoHistogram.svg @@ -1,6 +1,6 @@ diff --git a/test/output/autoBar.svg b/test/output/autoBar.svg index 7b4c6c295d..5f4d165824 100644 --- a/test/output/autoBar.svg +++ b/test/output/autoBar.svg @@ -1,6 +1,6 @@ diff --git a/test/output/autoBarColorReducer.svg b/test/output/autoBarColorReducer.svg index 97d2cf6145..f71103505d 100644 --- a/test/output/autoBarColorReducer.svg +++ b/test/output/autoBarColorReducer.svg @@ -1,6 +1,6 @@ diff --git a/test/output/autoBarMode.svg b/test/output/autoBarMode.svg index 71d2637f62..7a0bfcd2f3 100644 --- a/test/output/autoBarMode.svg +++ b/test/output/autoBarMode.svg @@ -1,6 +1,6 @@ diff --git a/test/output/autoBarNoReducer.svg b/test/output/autoBarNoReducer.svg index 880322afd5..50dc1b857a 100644 --- a/test/output/autoBarNoReducer.svg +++ b/test/output/autoBarNoReducer.svg @@ -1,6 +1,6 @@ diff --git a/test/output/autoBarNonZeroReducer.svg b/test/output/autoBarNonZeroReducer.svg index 18fc59e169..e7308bdcae 100644 --- a/test/output/autoBarNonZeroReducer.svg +++ b/test/output/autoBarNonZeroReducer.svg @@ -1,6 +1,6 @@ diff --git a/test/output/autoBarStackColor.svg b/test/output/autoBarStackColor.svg index 83510961c8..4b1ebc3214 100644 --- a/test/output/autoBarStackColor.svg +++ b/test/output/autoBarStackColor.svg @@ -1,6 +1,6 @@ diff --git a/test/output/autoBarStackColorConstant.svg b/test/output/autoBarStackColorConstant.svg index 80c4b7b42e..654f6ef990 100644 --- a/test/output/autoBarStackColorConstant.svg +++ b/test/output/autoBarStackColorConstant.svg @@ -1,6 +1,6 @@ diff --git a/test/output/autoBarStackColorField.svg b/test/output/autoBarStackColorField.svg index 52e75f6115..cef199b91a 100644 --- a/test/output/autoBarStackColorField.svg +++ b/test/output/autoBarStackColorField.svg @@ -1,6 +1,6 @@ diff --git a/test/output/autoBarTimeSeries.svg b/test/output/autoBarTimeSeries.svg index 99b19d824a..3771684a57 100644 --- a/test/output/autoBarTimeSeries.svg +++ b/test/output/autoBarTimeSeries.svg @@ -1,6 +1,6 @@ diff --git a/test/output/autoBarTimeSeriesReduce.svg b/test/output/autoBarTimeSeriesReduce.svg index deb1f63933..0b675afc61 100644 --- a/test/output/autoBarTimeSeriesReduce.svg +++ b/test/output/autoBarTimeSeriesReduce.svg @@ -1,6 +1,6 @@ diff --git a/test/output/autoChannels.svg b/test/output/autoChannels.svg index 5063c65ed4..26343adef0 100644 --- a/test/output/autoChannels.svg +++ b/test/output/autoChannels.svg @@ -1,6 +1,6 @@ diff --git a/test/output/autoConnectedScatterplot.svg b/test/output/autoConnectedScatterplot.svg index 713df6e5f8..0a964f0864 100644 --- a/test/output/autoConnectedScatterplot.svg +++ b/test/output/autoConnectedScatterplot.svg @@ -1,6 +1,6 @@ diff --git a/test/output/autoDot.svg b/test/output/autoDot.svg index 69d14433ea..2cd5f9d9cb 100644 --- a/test/output/autoDot.svg +++ b/test/output/autoDot.svg @@ -1,6 +1,6 @@ diff --git a/test/output/autoDotBin.svg b/test/output/autoDotBin.svg index 4c89eb50d6..212078f97f 100644 --- a/test/output/autoDotBin.svg +++ b/test/output/autoDotBin.svg @@ -1,6 +1,6 @@ diff --git a/test/output/autoDotColor.svg b/test/output/autoDotColor.svg index e15f297750..b95f25eced 100644 --- a/test/output/autoDotColor.svg +++ b/test/output/autoDotColor.svg @@ -1,6 +1,6 @@ diff --git a/test/output/autoDotFacet.svg b/test/output/autoDotFacet.svg index 56e85540dd..5116b5dfa3 100644 --- a/test/output/autoDotFacet.svg +++ b/test/output/autoDotFacet.svg @@ -1,6 +1,6 @@ diff --git a/test/output/autoDotFacet2.svg b/test/output/autoDotFacet2.svg index 2865e5f2e6..35964a232f 100644 --- a/test/output/autoDotFacet2.svg +++ b/test/output/autoDotFacet2.svg @@ -1,6 +1,6 @@ diff --git a/test/output/autoDotGroup.svg b/test/output/autoDotGroup.svg index 985a8dd49c..c0c62ce271 100644 --- a/test/output/autoDotGroup.svg +++ b/test/output/autoDotGroup.svg @@ -1,6 +1,6 @@ diff --git a/test/output/autoDotOrdCont.svg b/test/output/autoDotOrdCont.svg index cfa29678f9..5de1769688 100644 --- a/test/output/autoDotOrdCont.svg +++ b/test/output/autoDotOrdCont.svg @@ -1,6 +1,6 @@ diff --git a/test/output/autoDotOrdinal.svg b/test/output/autoDotOrdinal.svg index 8cea437847..7150a02fa5 100644 --- a/test/output/autoDotOrdinal.svg +++ b/test/output/autoDotOrdinal.svg @@ -1,6 +1,6 @@ diff --git a/test/output/autoDotSize.svg b/test/output/autoDotSize.svg index 1ecfa5f6e7..7b3ecb0257 100644 --- a/test/output/autoDotSize.svg +++ b/test/output/autoDotSize.svg @@ -1,6 +1,6 @@ diff --git a/test/output/autoDotSize2.svg b/test/output/autoDotSize2.svg index 7bcc07a087..8ea6592466 100644 --- a/test/output/autoDotSize2.svg +++ b/test/output/autoDotSize2.svg @@ -1,6 +1,6 @@ diff --git a/test/output/autoDotUnsortedDate.svg b/test/output/autoDotUnsortedDate.svg index f354256025..faf3079912 100644 --- a/test/output/autoDotUnsortedDate.svg +++ b/test/output/autoDotUnsortedDate.svg @@ -1,6 +1,6 @@ diff --git a/test/output/autoDotZero.svg b/test/output/autoDotZero.svg index b6fd42a642..2ca56cca75 100644 --- a/test/output/autoDotZero.svg +++ b/test/output/autoDotZero.svg @@ -1,6 +1,6 @@ diff --git a/test/output/autoHeatmap.svg b/test/output/autoHeatmap.svg index 12575a9d43..da35c785d5 100644 --- a/test/output/autoHeatmap.svg +++ b/test/output/autoHeatmap.svg @@ -1,6 +1,6 @@ diff --git a/test/output/autoHeatmapOrdCont.svg b/test/output/autoHeatmapOrdCont.svg index 6fcfd71ab3..10a8824e80 100644 --- a/test/output/autoHeatmapOrdCont.svg +++ b/test/output/autoHeatmapOrdCont.svg @@ -1,6 +1,6 @@ diff --git a/test/output/autoHeatmapOrdinal.svg b/test/output/autoHeatmapOrdinal.svg index 07bc7b5e7e..22a1b50a38 100644 --- a/test/output/autoHeatmapOrdinal.svg +++ b/test/output/autoHeatmapOrdinal.svg @@ -1,6 +1,6 @@ diff --git a/test/output/autoHistogram.svg b/test/output/autoHistogram.svg index 272f1cadea..df629d6dd5 100644 --- a/test/output/autoHistogram.svg +++ b/test/output/autoHistogram.svg @@ -1,6 +1,6 @@ diff --git a/test/output/autoHistogramDate.svg b/test/output/autoHistogramDate.svg index 7c216ca921..d012e05ec3 100644 --- a/test/output/autoHistogramDate.svg +++ b/test/output/autoHistogramDate.svg @@ -1,6 +1,6 @@ diff --git a/test/output/autoHistogramGroup.svg b/test/output/autoHistogramGroup.svg index deb4caf05a..20b7d7c5be 100644 --- a/test/output/autoHistogramGroup.svg +++ b/test/output/autoHistogramGroup.svg @@ -1,6 +1,6 @@ diff --git a/test/output/autoLine.svg b/test/output/autoLine.svg index 61453b3889..00ff6bfabd 100644 --- a/test/output/autoLine.svg +++ b/test/output/autoLine.svg @@ -1,6 +1,6 @@ diff --git a/test/output/autoLineColor.svg b/test/output/autoLineColor.svg index db2d689273..68d95c00f0 100644 --- a/test/output/autoLineColor.svg +++ b/test/output/autoLineColor.svg @@ -1,6 +1,6 @@ diff --git a/test/output/autoLineColorSeries.svg b/test/output/autoLineColorSeries.svg index 8c6b0fd610..d5b244b2d8 100644 --- a/test/output/autoLineColorSeries.svg +++ b/test/output/autoLineColorSeries.svg @@ -1,6 +1,6 @@ diff --git a/test/output/autoLineFacet.svg b/test/output/autoLineFacet.svg index 720dafada1..9bf6a41856 100644 --- a/test/output/autoLineFacet.svg +++ b/test/output/autoLineFacet.svg @@ -1,6 +1,6 @@ diff --git a/test/output/autoLineHistogram.svg b/test/output/autoLineHistogram.svg index 67becce243..e8cab715e1 100644 --- a/test/output/autoLineHistogram.svg +++ b/test/output/autoLineHistogram.svg @@ -1,6 +1,6 @@ diff --git a/test/output/autoLineMean.svg b/test/output/autoLineMean.svg index d3001c0af1..2b412b72d6 100644 --- a/test/output/autoLineMean.svg +++ b/test/output/autoLineMean.svg @@ -1,6 +1,6 @@ diff --git a/test/output/autoLineMeanColor.svg b/test/output/autoLineMeanColor.svg index 5ac4af5348..6c86e4aa9e 100644 --- a/test/output/autoLineMeanColor.svg +++ b/test/output/autoLineMeanColor.svg @@ -1,6 +1,6 @@ diff --git a/test/output/autoLineMeanThresholds.svg b/test/output/autoLineMeanThresholds.svg index 4325dc0f08..1092c65527 100644 --- a/test/output/autoLineMeanThresholds.svg +++ b/test/output/autoLineMeanThresholds.svg @@ -1,6 +1,6 @@ diff --git a/test/output/autoLineMeanZero.svg b/test/output/autoLineMeanZero.svg index dd6e0229be..51e72d9980 100644 --- a/test/output/autoLineMeanZero.svg +++ b/test/output/autoLineMeanZero.svg @@ -1,6 +1,6 @@ diff --git a/test/output/autoLineZero.svg b/test/output/autoLineZero.svg index 744f58656f..6ad5d0c8cb 100644 --- a/test/output/autoLineZero.svg +++ b/test/output/autoLineZero.svg @@ -1,6 +1,6 @@ diff --git a/test/output/autoNullReduceContinuous.svg b/test/output/autoNullReduceContinuous.svg index a8dd3df2c9..28bc88d868 100644 --- a/test/output/autoNullReduceContinuous.svg +++ b/test/output/autoNullReduceContinuous.svg @@ -1,6 +1,6 @@ diff --git a/test/output/autoNullReduceDate.svg b/test/output/autoNullReduceDate.svg index aab1c1346d..2a2a0e733a 100644 --- a/test/output/autoNullReduceDate.svg +++ b/test/output/autoNullReduceDate.svg @@ -1,6 +1,6 @@ diff --git a/test/output/autoNullReduceOrdinal.svg b/test/output/autoNullReduceOrdinal.svg index 11e8932ff5..2334571d4e 100644 --- a/test/output/autoNullReduceOrdinal.svg +++ b/test/output/autoNullReduceOrdinal.svg @@ -1,6 +1,6 @@ diff --git a/test/output/autoRectColorReducer.svg b/test/output/autoRectColorReducer.svg index 529059d1e2..88e909f4fc 100644 --- a/test/output/autoRectColorReducer.svg +++ b/test/output/autoRectColorReducer.svg @@ -1,6 +1,6 @@ diff --git a/test/output/autoRectStackColor.svg b/test/output/autoRectStackColor.svg index 383bf0560b..f2796ddb3b 100644 --- a/test/output/autoRectStackColor.svg +++ b/test/output/autoRectStackColor.svg @@ -1,6 +1,6 @@ diff --git a/test/output/autoRuleZero.svg b/test/output/autoRuleZero.svg index cc15ae4ebf..dcf3cbf7e4 100644 --- a/test/output/autoRuleZero.svg +++ b/test/output/autoRuleZero.svg @@ -1,6 +1,6 @@ diff --git a/test/output/availability.svg b/test/output/availability.svg index 3098ae5f7e..97d337e585 100644 --- a/test/output/availability.svg +++ b/test/output/availability.svg @@ -1,6 +1,6 @@ diff --git a/test/output/axisFilter.svg b/test/output/axisFilter.svg index c231d653b3..d85c500fe3 100644 --- a/test/output/axisFilter.svg +++ b/test/output/axisFilter.svg @@ -1,6 +1,6 @@ diff --git a/test/output/axisLabelBoth.svg b/test/output/axisLabelBoth.svg index 7e4dd6353c..2d3a529b92 100644 --- a/test/output/axisLabelBoth.svg +++ b/test/output/axisLabelBoth.svg @@ -1,6 +1,6 @@ diff --git a/test/output/axisLabelBothReverse.svg b/test/output/axisLabelBothReverse.svg index 70ebffce67..fdacfa58b8 100644 --- a/test/output/axisLabelBothReverse.svg +++ b/test/output/axisLabelBothReverse.svg @@ -1,6 +1,6 @@ diff --git a/test/output/axisLabelFontVariant.svg b/test/output/axisLabelFontVariant.svg index 811800563e..69216efdc2 100644 --- a/test/output/axisLabelFontVariant.svg +++ b/test/output/axisLabelFontVariant.svg @@ -1,6 +1,6 @@ diff --git a/test/output/axisLabelHref.svg b/test/output/axisLabelHref.svg index 730909b401..e8581aa1be 100644 --- a/test/output/axisLabelHref.svg +++ b/test/output/axisLabelHref.svg @@ -1,6 +1,6 @@ diff --git a/test/output/axisLabelVaryingFill.svg b/test/output/axisLabelVaryingFill.svg index a542e6d503..a24162ec29 100644 --- a/test/output/axisLabelVaryingFill.svg +++ b/test/output/axisLabelVaryingFill.svg @@ -1,6 +1,6 @@ diff --git a/test/output/axisLabelX.svg b/test/output/axisLabelX.svg index 65975eda10..e916309e3f 100644 --- a/test/output/axisLabelX.svg +++ b/test/output/axisLabelX.svg @@ -1,6 +1,6 @@ diff --git a/test/output/axisLabelY.svg b/test/output/axisLabelY.svg index 9dd6590129..dae8694382 100644 --- a/test/output/axisLabelY.svg +++ b/test/output/axisLabelY.svg @@ -1,6 +1,6 @@ diff --git a/test/output/ballotStatusRace.svg b/test/output/ballotStatusRace.svg index 8d8732aed8..aba32359ee 100644 --- a/test/output/ballotStatusRace.svg +++ b/test/output/ballotStatusRace.svg @@ -1,6 +1,6 @@ diff --git a/test/output/bandClip.svg b/test/output/bandClip.svg index aea21d70fd..335b2a92be 100644 --- a/test/output/bandClip.svg +++ b/test/output/bandClip.svg @@ -1,6 +1,6 @@ diff --git a/test/output/bandClip2.svg b/test/output/bandClip2.svg index ea609531b9..1c24358832 100644 --- a/test/output/bandClip2.svg +++ b/test/output/bandClip2.svg @@ -1,6 +1,6 @@ diff --git a/test/output/beagle.svg b/test/output/beagle.svg index 9990c09f3d..e4de758efb 100644 --- a/test/output/beagle.svg +++ b/test/output/beagle.svg @@ -1,6 +1,6 @@ diff --git a/test/output/beckerBarley.svg b/test/output/beckerBarley.svg index 187191e854..a57ef1486f 100644 --- a/test/output/beckerBarley.svg +++ b/test/output/beckerBarley.svg @@ -1,6 +1,6 @@ diff --git a/test/output/bigint1.svg b/test/output/bigint1.svg index 616f64424f..1abfac73c8 100644 --- a/test/output/bigint1.svg +++ b/test/output/bigint1.svg @@ -1,6 +1,6 @@ diff --git a/test/output/bigint2.svg b/test/output/bigint2.svg index fb1e5a026a..41cda0ef5d 100644 --- a/test/output/bigint2.svg +++ b/test/output/bigint2.svg @@ -1,6 +1,6 @@ diff --git a/test/output/bigintLog.svg b/test/output/bigintLog.svg index dab48344d3..f57bed3305 100644 --- a/test/output/bigintLog.svg +++ b/test/output/bigintLog.svg @@ -1,6 +1,6 @@ diff --git a/test/output/bigintOrdinal.html b/test/output/bigintOrdinal.html index 1390fbfad8..f174f96b50 100644 --- a/test/output/bigintOrdinal.html +++ b/test/output/bigintOrdinal.html @@ -1,6 +1,6 @@
@@ -58,7 +58,7 @@ big1 diff --git a/test/output/bigintStack.svg b/test/output/bigintStack.svg index c0842e7f81..a425433595 100644 --- a/test/output/bigintStack.svg +++ b/test/output/bigintStack.svg @@ -1,6 +1,6 @@ diff --git a/test/output/bin1m.svg b/test/output/bin1m.svg index d22a2f6c7c..e46b8ab4db 100644 --- a/test/output/bin1m.svg +++ b/test/output/bin1m.svg @@ -1,6 +1,6 @@ diff --git a/test/output/binFillFirstEmpty.html b/test/output/binFillFirstEmpty.html index aa3cdfdea9..08c2dfd290 100644 --- a/test/output/binFillFirstEmpty.html +++ b/test/output/binFillFirstEmpty.html @@ -1,25 +1,25 @@
diff --git a/test/output/binStrings.svg b/test/output/binStrings.svg index 8df70b5cff..add5f13a0f 100644 --- a/test/output/binStrings.svg +++ b/test/output/binStrings.svg @@ -1,6 +1,6 @@ diff --git a/test/output/binTimestamps.svg b/test/output/binTimestamps.svg index 9aff8eb043..e7348c9560 100644 --- a/test/output/binTimestamps.svg +++ b/test/output/binTimestamps.svg @@ -1,6 +1,6 @@ diff --git a/test/output/boundingBoxes.svg b/test/output/boundingBoxes.svg index f718ca29f8..b78fbb0cd4 100644 --- a/test/output/boundingBoxes.svg +++ b/test/output/boundingBoxes.svg @@ -1,6 +1,6 @@ diff --git a/test/output/boxplot.svg b/test/output/boxplot.svg index cf1a1720bb..11a525ab68 100644 --- a/test/output/boxplot.svg +++ b/test/output/boxplot.svg @@ -1,6 +1,6 @@ diff --git a/test/output/boxplotFacetInterval.svg b/test/output/boxplotFacetInterval.svg index 347cd9bd23..eba5654102 100644 --- a/test/output/boxplotFacetInterval.svg +++ b/test/output/boxplotFacetInterval.svg @@ -1,6 +1,6 @@ diff --git a/test/output/boxplotFacetNegativeInterval.svg b/test/output/boxplotFacetNegativeInterval.svg index 347cd9bd23..eba5654102 100644 --- a/test/output/boxplotFacetNegativeInterval.svg +++ b/test/output/boxplotFacetNegativeInterval.svg @@ -1,6 +1,6 @@ diff --git a/test/output/caltrain.html b/test/output/caltrain.html index 753cecdae6..d092bd9f04 100644 --- a/test/output/caltrain.html +++ b/test/output/caltrain.html @@ -1,25 +1,25 @@
diff --git a/test/output/caltrainDirection.svg b/test/output/caltrainDirection.svg index ed0551fb98..7fb6298037 100644 --- a/test/output/caltrainDirection.svg +++ b/test/output/caltrainDirection.svg @@ -1,6 +1,6 @@ diff --git a/test/output/carsDodge.svg b/test/output/carsDodge.svg index 00bac60772..dbb5650655 100644 --- a/test/output/carsDodge.svg +++ b/test/output/carsDodge.svg @@ -1,6 +1,6 @@ diff --git a/test/output/carsHexbin.html b/test/output/carsHexbin.html index c8f29cbcba..e6da13e75c 100644 --- a/test/output/carsHexbin.html +++ b/test/output/carsHexbin.html @@ -1,6 +1,6 @@
@@ -34,7 +34,7 @@ weight (lb) diff --git a/test/output/carsJitter.html b/test/output/carsJitter.html index 2600e44053..5bd7ea2a5e 100644 --- a/test/output/carsJitter.html +++ b/test/output/carsJitter.html @@ -1,6 +1,6 @@
@@ -34,7 +34,7 @@ power (hp) diff --git a/test/output/carsMpg.svg b/test/output/carsMpg.svg index 4cee5d1739..3905f61dd8 100644 --- a/test/output/carsMpg.svg +++ b/test/output/carsMpg.svg @@ -1,6 +1,6 @@ diff --git a/test/output/carsParcoords.svg b/test/output/carsParcoords.svg index dbd531eb9e..5ca5cb3f8a 100644 --- a/test/output/carsParcoords.svg +++ b/test/output/carsParcoords.svg @@ -1,6 +1,6 @@ diff --git a/test/output/channelDomainAscending.svg b/test/output/channelDomainAscending.svg index 68ae552640..63d2579509 100644 --- a/test/output/channelDomainAscending.svg +++ b/test/output/channelDomainAscending.svg @@ -1,6 +1,6 @@ diff --git a/test/output/channelDomainAscendingReverse.svg b/test/output/channelDomainAscendingReverse.svg index b2e23cdc8b..58d4c588cd 100644 --- a/test/output/channelDomainAscendingReverse.svg +++ b/test/output/channelDomainAscendingReverse.svg @@ -1,6 +1,6 @@ diff --git a/test/output/channelDomainComparator.svg b/test/output/channelDomainComparator.svg index 9aca1691e7..13755bdb50 100644 --- a/test/output/channelDomainComparator.svg +++ b/test/output/channelDomainComparator.svg @@ -1,6 +1,6 @@ diff --git a/test/output/channelDomainComparatorReverse.svg b/test/output/channelDomainComparatorReverse.svg index b2e23cdc8b..58d4c588cd 100644 --- a/test/output/channelDomainComparatorReverse.svg +++ b/test/output/channelDomainComparatorReverse.svg @@ -1,6 +1,6 @@ diff --git a/test/output/channelDomainDefault.svg b/test/output/channelDomainDefault.svg index 68ae552640..63d2579509 100644 --- a/test/output/channelDomainDefault.svg +++ b/test/output/channelDomainDefault.svg @@ -1,6 +1,6 @@ diff --git a/test/output/channelDomainDefaultReverse.svg b/test/output/channelDomainDefaultReverse.svg index b2e23cdc8b..58d4c588cd 100644 --- a/test/output/channelDomainDefaultReverse.svg +++ b/test/output/channelDomainDefaultReverse.svg @@ -1,6 +1,6 @@ diff --git a/test/output/channelDomainDescending.svg b/test/output/channelDomainDescending.svg index 9aca1691e7..13755bdb50 100644 --- a/test/output/channelDomainDescending.svg +++ b/test/output/channelDomainDescending.svg @@ -1,6 +1,6 @@ diff --git a/test/output/channelDomainDescendingReverse.svg b/test/output/channelDomainDescendingReverse.svg index 97b4a1d320..bfd1a094f2 100644 --- a/test/output/channelDomainDescendingReverse.svg +++ b/test/output/channelDomainDescendingReverse.svg @@ -1,6 +1,6 @@ diff --git a/test/output/channelDomainMinus.svg b/test/output/channelDomainMinus.svg index 9aca1691e7..13755bdb50 100644 --- a/test/output/channelDomainMinus.svg +++ b/test/output/channelDomainMinus.svg @@ -1,6 +1,6 @@ diff --git a/test/output/channelDomainMinusReverse.svg b/test/output/channelDomainMinusReverse.svg index 97b4a1d320..bfd1a094f2 100644 --- a/test/output/channelDomainMinusReverse.svg +++ b/test/output/channelDomainMinusReverse.svg @@ -1,6 +1,6 @@ diff --git a/test/output/channelDomainNull.svg b/test/output/channelDomainNull.svg index 8b7ff08867..c7193b3ad2 100644 --- a/test/output/channelDomainNull.svg +++ b/test/output/channelDomainNull.svg @@ -1,6 +1,6 @@ diff --git a/test/output/channelDomainNullReverse.svg b/test/output/channelDomainNullReverse.svg index fa9028890b..bcc54004ed 100644 --- a/test/output/channelDomainNullReverse.svg +++ b/test/output/channelDomainNullReverse.svg @@ -1,6 +1,6 @@ diff --git a/test/output/channelDomainReduceCount.svg b/test/output/channelDomainReduceCount.svg index ab4e1f234f..eb5799dee6 100644 --- a/test/output/channelDomainReduceCount.svg +++ b/test/output/channelDomainReduceCount.svg @@ -1,6 +1,6 @@ diff --git a/test/output/channelDomainReduceDefault.svg b/test/output/channelDomainReduceDefault.svg index e7c1ad4eb1..be3d28fd35 100644 --- a/test/output/channelDomainReduceDefault.svg +++ b/test/output/channelDomainReduceDefault.svg @@ -1,6 +1,6 @@ diff --git a/test/output/clamp.svg b/test/output/clamp.svg index 9dee3fa764..5d1da2074b 100644 --- a/test/output/clamp.svg +++ b/test/output/clamp.svg @@ -1,6 +1,6 @@ diff --git a/test/output/collapsedHistogram.svg b/test/output/collapsedHistogram.svg index 32f3d54dde..a449d0da3a 100644 --- a/test/output/collapsedHistogram.svg +++ b/test/output/collapsedHistogram.svg @@ -1,6 +1,6 @@ diff --git a/test/output/colorLegendCategorical.html b/test/output/colorLegendCategorical.html index a3d8faca9f..f061cb720e 100644 --- a/test/output/colorLegendCategorical.html +++ b/test/output/colorLegendCategorical.html @@ -1,24 +1,24 @@
diff --git a/test/output/colorLegendDivergingPivot.svg b/test/output/colorLegendDivergingPivot.svg index 411a2088f8..787580356a 100644 --- a/test/output/colorLegendDivergingPivot.svg +++ b/test/output/colorLegendDivergingPivot.svg @@ -1,6 +1,6 @@ diff --git a/test/output/colorLegendDivergingPivotAsymmetric.svg b/test/output/colorLegendDivergingPivotAsymmetric.svg index 3ad96bcfa3..5e31b5e7a2 100644 --- a/test/output/colorLegendDivergingPivotAsymmetric.svg +++ b/test/output/colorLegendDivergingPivotAsymmetric.svg @@ -1,6 +1,6 @@ diff --git a/test/output/colorLegendDivergingSqrt.svg b/test/output/colorLegendDivergingSqrt.svg index c347554e58..4056ec4dde 100644 --- a/test/output/colorLegendDivergingSqrt.svg +++ b/test/output/colorLegendDivergingSqrt.svg @@ -1,6 +1,6 @@ diff --git a/test/output/colorLegendImplicitLabel.svg b/test/output/colorLegendImplicitLabel.svg index 2979b70bd9..04c78a84c3 100644 --- a/test/output/colorLegendImplicitLabel.svg +++ b/test/output/colorLegendImplicitLabel.svg @@ -1,6 +1,6 @@ diff --git a/test/output/colorLegendInterpolate.svg b/test/output/colorLegendInterpolate.svg index e4144fc9df..56b6b040df 100644 --- a/test/output/colorLegendInterpolate.svg +++ b/test/output/colorLegendInterpolate.svg @@ -1,6 +1,6 @@ diff --git a/test/output/colorLegendInterpolateSqrt.svg b/test/output/colorLegendInterpolateSqrt.svg index cf295c111b..d11e861627 100644 --- a/test/output/colorLegendInterpolateSqrt.svg +++ b/test/output/colorLegendInterpolateSqrt.svg @@ -1,6 +1,6 @@ diff --git a/test/output/colorLegendLabelBoth.svg b/test/output/colorLegendLabelBoth.svg index e65f686970..1f3283d1a6 100644 --- a/test/output/colorLegendLabelBoth.svg +++ b/test/output/colorLegendLabelBoth.svg @@ -1,6 +1,6 @@ diff --git a/test/output/colorLegendLabelLegend.svg b/test/output/colorLegendLabelLegend.svg index e65f686970..1f3283d1a6 100644 --- a/test/output/colorLegendLabelLegend.svg +++ b/test/output/colorLegendLabelLegend.svg @@ -1,6 +1,6 @@ diff --git a/test/output/colorLegendLabelScale.svg b/test/output/colorLegendLabelScale.svg index 9707248814..4e5411551b 100644 --- a/test/output/colorLegendLabelScale.svg +++ b/test/output/colorLegendLabelScale.svg @@ -1,6 +1,6 @@ diff --git a/test/output/colorLegendLinear.svg b/test/output/colorLegendLinear.svg index 4ffe008881..477a177958 100644 --- a/test/output/colorLegendLinear.svg +++ b/test/output/colorLegendLinear.svg @@ -1,6 +1,6 @@ diff --git a/test/output/colorLegendLinearNoTicks.svg b/test/output/colorLegendLinearNoTicks.svg index 5681e70b45..0d0eff7da4 100644 --- a/test/output/colorLegendLinearNoTicks.svg +++ b/test/output/colorLegendLinearNoTicks.svg @@ -1,6 +1,6 @@ diff --git a/test/output/colorLegendLinearTruncatedScheme.svg b/test/output/colorLegendLinearTruncatedScheme.svg index 6502326964..564fd4609f 100644 --- a/test/output/colorLegendLinearTruncatedScheme.svg +++ b/test/output/colorLegendLinearTruncatedScheme.svg @@ -1,6 +1,6 @@ diff --git a/test/output/colorLegendLog.svg b/test/output/colorLegendLog.svg index cf8ab2a17c..1390b530ad 100644 --- a/test/output/colorLegendLog.svg +++ b/test/output/colorLegendLog.svg @@ -1,6 +1,6 @@ diff --git a/test/output/colorLegendLogTicks.svg b/test/output/colorLegendLogTicks.svg index b4667649a9..a8812798fd 100644 --- a/test/output/colorLegendLogTicks.svg +++ b/test/output/colorLegendLogTicks.svg @@ -1,6 +1,6 @@ diff --git a/test/output/colorLegendMargins.svg b/test/output/colorLegendMargins.svg index 99ea03d9f2..1b07abf357 100644 --- a/test/output/colorLegendMargins.svg +++ b/test/output/colorLegendMargins.svg @@ -1,6 +1,6 @@ diff --git a/test/output/colorLegendOpacity.html b/test/output/colorLegendOpacity.html index 2e5aee1d2c..08c7ce8334 100644 --- a/test/output/colorLegendOpacity.html +++ b/test/output/colorLegendOpacity.html @@ -1,24 +1,24 @@
diff --git a/test/output/colorLegendOpacityRamp.svg b/test/output/colorLegendOpacityRamp.svg index 7c619522e3..d7764c5a96 100644 --- a/test/output/colorLegendOpacityRamp.svg +++ b/test/output/colorLegendOpacityRamp.svg @@ -1,6 +1,6 @@ diff --git a/test/output/colorLegendOrdinal.html b/test/output/colorLegendOrdinal.html index 16b576fe16..cd4bc803ee 100644 --- a/test/output/colorLegendOrdinal.html +++ b/test/output/colorLegendOrdinal.html @@ -1,24 +1,24 @@
diff --git a/test/output/colorLegendOrdinalRampTickSize.svg b/test/output/colorLegendOrdinalRampTickSize.svg index 72ac9f0bd3..2c6d687287 100644 --- a/test/output/colorLegendOrdinalRampTickSize.svg +++ b/test/output/colorLegendOrdinalRampTickSize.svg @@ -1,6 +1,6 @@ diff --git a/test/output/colorLegendOrdinalReverseRamp.svg b/test/output/colorLegendOrdinalReverseRamp.svg index 0d93467ddb..4282b8ceb0 100644 --- a/test/output/colorLegendOrdinalReverseRamp.svg +++ b/test/output/colorLegendOrdinalReverseRamp.svg @@ -1,6 +1,6 @@ diff --git a/test/output/colorLegendOrdinalScheme.html b/test/output/colorLegendOrdinalScheme.html index 8596015ddb..0fbc69242c 100644 --- a/test/output/colorLegendOrdinalScheme.html +++ b/test/output/colorLegendOrdinalScheme.html @@ -1,24 +1,24 @@
diff --git a/test/output/colorLegendOrdinalTickFormat.html b/test/output/colorLegendOrdinalTickFormat.html index cd251430e8..db26640ccb 100644 --- a/test/output/colorLegendOrdinalTickFormat.html +++ b/test/output/colorLegendOrdinalTickFormat.html @@ -1,24 +1,24 @@
diff --git a/test/output/colorLegendQuantile.svg b/test/output/colorLegendQuantile.svg index b1fc1d8da8..ca305e412d 100644 --- a/test/output/colorLegendQuantile.svg +++ b/test/output/colorLegendQuantile.svg @@ -1,6 +1,6 @@ diff --git a/test/output/colorLegendQuantileImplicit.svg b/test/output/colorLegendQuantileImplicit.svg index b1fc1d8da8..ca305e412d 100644 --- a/test/output/colorLegendQuantileImplicit.svg +++ b/test/output/colorLegendQuantileImplicit.svg @@ -1,6 +1,6 @@ diff --git a/test/output/colorLegendQuantileSwatches.html b/test/output/colorLegendQuantileSwatches.html index 5d0b0b8b61..2a742cfc0a 100644 --- a/test/output/colorLegendQuantileSwatches.html +++ b/test/output/colorLegendQuantileSwatches.html @@ -1,24 +1,24 @@
diff --git a/test/output/colorLegendQuantitativeScheme.svg b/test/output/colorLegendQuantitativeScheme.svg index fac90f2910..30caf3461a 100644 --- a/test/output/colorLegendQuantitativeScheme.svg +++ b/test/output/colorLegendQuantitativeScheme.svg @@ -1,6 +1,6 @@ diff --git a/test/output/colorLegendQuantize.svg b/test/output/colorLegendQuantize.svg index d3ca4ee487..cc3a8fc3ad 100644 --- a/test/output/colorLegendQuantize.svg +++ b/test/output/colorLegendQuantize.svg @@ -1,6 +1,6 @@ diff --git a/test/output/colorLegendQuantizeDescending.svg b/test/output/colorLegendQuantizeDescending.svg index 3f57260519..2170bab09e 100644 --- a/test/output/colorLegendQuantizeDescending.svg +++ b/test/output/colorLegendQuantizeDescending.svg @@ -1,6 +1,6 @@ diff --git a/test/output/colorLegendQuantizeDescendingReversed.svg b/test/output/colorLegendQuantizeDescendingReversed.svg index cff824faa4..76da5a485d 100644 --- a/test/output/colorLegendQuantizeDescendingReversed.svg +++ b/test/output/colorLegendQuantizeDescendingReversed.svg @@ -1,6 +1,6 @@ diff --git a/test/output/colorLegendQuantizeRange.svg b/test/output/colorLegendQuantizeRange.svg index f63037890a..39aeb8441a 100644 --- a/test/output/colorLegendQuantizeRange.svg +++ b/test/output/colorLegendQuantizeRange.svg @@ -1,6 +1,6 @@ diff --git a/test/output/colorLegendQuantizeReverse.svg b/test/output/colorLegendQuantizeReverse.svg index 8804188463..aa0ece9c70 100644 --- a/test/output/colorLegendQuantizeReverse.svg +++ b/test/output/colorLegendQuantizeReverse.svg @@ -1,6 +1,6 @@ diff --git a/test/output/colorLegendSqrt.svg b/test/output/colorLegendSqrt.svg index cf295c111b..d11e861627 100644 --- a/test/output/colorLegendSqrt.svg +++ b/test/output/colorLegendSqrt.svg @@ -1,6 +1,6 @@ diff --git a/test/output/colorLegendSqrtPiecewise.svg b/test/output/colorLegendSqrtPiecewise.svg index 3a0f0b95f8..523359284a 100644 --- a/test/output/colorLegendSqrtPiecewise.svg +++ b/test/output/colorLegendSqrtPiecewise.svg @@ -1,6 +1,6 @@ diff --git a/test/output/colorLegendThreshold.svg b/test/output/colorLegendThreshold.svg index afed9e7162..3d36f91a63 100644 --- a/test/output/colorLegendThreshold.svg +++ b/test/output/colorLegendThreshold.svg @@ -1,6 +1,6 @@ diff --git a/test/output/colorLegendThresholdTickSize.svg b/test/output/colorLegendThresholdTickSize.svg index a0213b5d0b..0c8b4590df 100644 --- a/test/output/colorLegendThresholdTickSize.svg +++ b/test/output/colorLegendThresholdTickSize.svg @@ -1,6 +1,6 @@ diff --git a/test/output/colorPiecewiseLinearDomain.html b/test/output/colorPiecewiseLinearDomain.html index efad053440..2ed7dabd0f 100644 --- a/test/output/colorPiecewiseLinearDomain.html +++ b/test/output/colorPiecewiseLinearDomain.html @@ -1,6 +1,6 @@
@@ -37,7 +37,7 @@ diff --git a/test/output/colorPiecewiseLinearDomainReverse.html b/test/output/colorPiecewiseLinearDomainReverse.html index 9a97b6820a..4396ac3a7e 100644 --- a/test/output/colorPiecewiseLinearDomainReverse.html +++ b/test/output/colorPiecewiseLinearDomainReverse.html @@ -1,6 +1,6 @@
@@ -37,7 +37,7 @@ diff --git a/test/output/colorPiecewiseLinearRange.html b/test/output/colorPiecewiseLinearRange.html index 67b6825c2f..9eb72c2331 100644 --- a/test/output/colorPiecewiseLinearRange.html +++ b/test/output/colorPiecewiseLinearRange.html @@ -1,6 +1,6 @@
@@ -41,7 +41,7 @@ diff --git a/test/output/colorPiecewiseLinearRangeHcl.html b/test/output/colorPiecewiseLinearRangeHcl.html index 841a27fc1e..92465e66f5 100644 --- a/test/output/colorPiecewiseLinearRangeHcl.html +++ b/test/output/colorPiecewiseLinearRangeHcl.html @@ -1,6 +1,6 @@
@@ -41,7 +41,7 @@ diff --git a/test/output/colorPiecewiseLinearRangeReverse.html b/test/output/colorPiecewiseLinearRangeReverse.html index 88f50401d2..4a893accb8 100644 --- a/test/output/colorPiecewiseLinearRangeReverse.html +++ b/test/output/colorPiecewiseLinearRangeReverse.html @@ -1,6 +1,6 @@
@@ -41,7 +41,7 @@ diff --git a/test/output/colorSchemesOrdinal.html b/test/output/colorSchemesOrdinal.html index e82039a2a6..a88446ff2b 100644 --- a/test/output/colorSchemesOrdinal.html +++ b/test/output/colorSchemesOrdinal.html @@ -1,25 +1,25 @@
@@ -17,7 +17,7 @@ brbg @@ -34,7 +34,7 @@ prgn @@ -51,7 +51,7 @@ piyg @@ -68,7 +68,7 @@ puor @@ -85,7 +85,7 @@ rdbu @@ -102,7 +102,7 @@ rdgy @@ -119,7 +119,7 @@ rdylbu @@ -136,7 +136,7 @@ rdylgn @@ -153,7 +153,7 @@ spectral @@ -170,7 +170,7 @@ burd @@ -187,7 +187,7 @@ buylrd @@ -204,7 +204,7 @@ blues @@ -221,7 +221,7 @@ greens @@ -238,7 +238,7 @@ greys @@ -255,7 +255,7 @@ purples @@ -272,7 +272,7 @@ reds @@ -289,7 +289,7 @@ oranges @@ -306,7 +306,7 @@ turbo @@ -323,7 +323,7 @@ viridis @@ -340,7 +340,7 @@ magma @@ -357,7 +357,7 @@ inferno @@ -374,7 +374,7 @@ plasma @@ -391,7 +391,7 @@ cividis @@ -408,7 +408,7 @@ cubehelix @@ -425,7 +425,7 @@ warm @@ -442,7 +442,7 @@ cool @@ -459,7 +459,7 @@ bugn @@ -476,7 +476,7 @@ bupu @@ -493,7 +493,7 @@ gnbu @@ -510,7 +510,7 @@ orrd @@ -527,7 +527,7 @@ pubugn @@ -544,7 +544,7 @@ pubu @@ -561,7 +561,7 @@ purd @@ -578,7 +578,7 @@ rdpu @@ -595,7 +595,7 @@ ylgnbu @@ -612,7 +612,7 @@ ylgn @@ -629,7 +629,7 @@ ylorbr @@ -646,7 +646,7 @@ ylorrd @@ -663,7 +663,7 @@ rainbow diff --git a/test/output/contourCa55.svg b/test/output/contourCa55.svg index 130d350e01..7a63efb9b5 100644 --- a/test/output/contourCa55.svg +++ b/test/output/contourCa55.svg @@ -1,6 +1,6 @@ diff --git a/test/output/contourVapor.svg b/test/output/contourVapor.svg index 9863d771fe..338dbdd68d 100644 --- a/test/output/contourVapor.svg +++ b/test/output/contourVapor.svg @@ -1,6 +1,6 @@ diff --git a/test/output/countryCentroids.svg b/test/output/countryCentroids.svg index 9c86afdd3f..52f483aa3a 100644 --- a/test/output/countryCentroids.svg +++ b/test/output/countryCentroids.svg @@ -1,6 +1,6 @@ diff --git a/test/output/covidIhmeProjectedDeaths.svg b/test/output/covidIhmeProjectedDeaths.svg index aafddfd79f..3d9f00bc9d 100644 --- a/test/output/covidIhmeProjectedDeaths.svg +++ b/test/output/covidIhmeProjectedDeaths.svg @@ -1,6 +1,6 @@ diff --git a/test/output/crimeanWarArrow.svg b/test/output/crimeanWarArrow.svg index 6c7482cfb4..894a2a6316 100644 --- a/test/output/crimeanWarArrow.svg +++ b/test/output/crimeanWarArrow.svg @@ -1,6 +1,6 @@ diff --git a/test/output/crimeanWarLine.svg b/test/output/crimeanWarLine.svg index 13e0a92d29..9d2d7486f8 100644 --- a/test/output/crimeanWarLine.svg +++ b/test/output/crimeanWarLine.svg @@ -1,6 +1,6 @@ diff --git a/test/output/crimeanWarOverlapped.svg b/test/output/crimeanWarOverlapped.svg index a6684e629d..0f51803640 100644 --- a/test/output/crimeanWarOverlapped.svg +++ b/test/output/crimeanWarOverlapped.svg @@ -1,6 +1,6 @@ diff --git a/test/output/crimeanWarStacked.svg b/test/output/crimeanWarStacked.svg index 66d149f05c..e3f852a157 100644 --- a/test/output/crimeanWarStacked.svg +++ b/test/output/crimeanWarStacked.svg @@ -1,6 +1,6 @@ diff --git a/test/output/crosshairDodge.svg b/test/output/crosshairDodge.svg index a45279ff4a..a3edeeb223 100644 --- a/test/output/crosshairDodge.svg +++ b/test/output/crosshairDodge.svg @@ -1,6 +1,6 @@ diff --git a/test/output/crosshairDot.svg b/test/output/crosshairDot.svg index 7a51bf142c..40035aa6df 100644 --- a/test/output/crosshairDot.svg +++ b/test/output/crosshairDot.svg @@ -1,6 +1,6 @@ diff --git a/test/output/crosshairDotFacet.svg b/test/output/crosshairDotFacet.svg index 10be71ad8b..c89a2bfcac 100644 --- a/test/output/crosshairDotFacet.svg +++ b/test/output/crosshairDotFacet.svg @@ -1,6 +1,6 @@ diff --git a/test/output/crosshairHexbin.svg b/test/output/crosshairHexbin.svg index 779b7f4537..c6704d5c49 100644 --- a/test/output/crosshairHexbin.svg +++ b/test/output/crosshairHexbin.svg @@ -1,6 +1,6 @@ diff --git a/test/output/crosshairLine.svg b/test/output/crosshairLine.svg index 262fdc75ea..76bf1805e6 100644 --- a/test/output/crosshairLine.svg +++ b/test/output/crosshairLine.svg @@ -1,6 +1,6 @@ diff --git a/test/output/curves.svg b/test/output/curves.svg index 0b80e1079a..b1d1ce7041 100644 --- a/test/output/curves.svg +++ b/test/output/curves.svg @@ -1,6 +1,6 @@ diff --git a/test/output/d3Survey2015Comfort.svg b/test/output/d3Survey2015Comfort.svg index 04692f3b66..d6fabfe774 100644 --- a/test/output/d3Survey2015Comfort.svg +++ b/test/output/d3Survey2015Comfort.svg @@ -1,6 +1,6 @@ diff --git a/test/output/d3Survey2015Why.svg b/test/output/d3Survey2015Why.svg index 2a6235119f..d50df1647d 100644 --- a/test/output/d3Survey2015Why.svg +++ b/test/output/d3Survey2015Why.svg @@ -1,6 +1,6 @@ diff --git a/test/output/darkerDodge.svg b/test/output/darkerDodge.svg index 5ce8eb7f4f..a839216443 100644 --- a/test/output/darkerDodge.svg +++ b/test/output/darkerDodge.svg @@ -1,6 +1,6 @@ diff --git a/test/output/decathlon.html b/test/output/decathlon.html index 0e79d82fb6..b31c2f6114 100644 --- a/test/output/decathlon.html +++ b/test/output/decathlon.html @@ -1,25 +1,25 @@
diff --git a/test/output/diamondsBoxplot.svg b/test/output/diamondsBoxplot.svg index 892ca818c7..e1b1150865 100644 --- a/test/output/diamondsBoxplot.svg +++ b/test/output/diamondsBoxplot.svg @@ -1,6 +1,6 @@ diff --git a/test/output/diamondsCaratPrice.svg b/test/output/diamondsCaratPrice.svg index bf0a5ecd59..a30acf5b70 100644 --- a/test/output/diamondsCaratPrice.svg +++ b/test/output/diamondsCaratPrice.svg @@ -1,6 +1,6 @@ diff --git a/test/output/diamondsCaratPriceDots.svg b/test/output/diamondsCaratPriceDots.svg index 643be7522f..4ca899e71d 100644 --- a/test/output/diamondsCaratPriceDots.svg +++ b/test/output/diamondsCaratPriceDots.svg @@ -1,6 +1,6 @@ diff --git a/test/output/diamondsCaratSampling.svg b/test/output/diamondsCaratSampling.svg index f45a9505ef..7a1d51db54 100644 --- a/test/output/diamondsCaratSampling.svg +++ b/test/output/diamondsCaratSampling.svg @@ -1,6 +1,6 @@ diff --git a/test/output/differenceFilterX.svg b/test/output/differenceFilterX.svg index 2c8b6a9884..213740313d 100644 --- a/test/output/differenceFilterX.svg +++ b/test/output/differenceFilterX.svg @@ -1,6 +1,6 @@ diff --git a/test/output/differenceFilterY1.svg b/test/output/differenceFilterY1.svg index e77c641a8d..bb8402a8bc 100644 --- a/test/output/differenceFilterY1.svg +++ b/test/output/differenceFilterY1.svg @@ -1,6 +1,6 @@ diff --git a/test/output/differenceFilterY2.svg b/test/output/differenceFilterY2.svg index b9d3a72886..a15283ebf7 100644 --- a/test/output/differenceFilterY2.svg +++ b/test/output/differenceFilterY2.svg @@ -1,6 +1,6 @@ diff --git a/test/output/differenceY.svg b/test/output/differenceY.svg index f59ee5adad..11a3553089 100644 --- a/test/output/differenceY.svg +++ b/test/output/differenceY.svg @@ -1,6 +1,6 @@ diff --git a/test/output/differenceY1.svg b/test/output/differenceY1.svg index 2a1dfa2c1e..214ee9fd4e 100644 --- a/test/output/differenceY1.svg +++ b/test/output/differenceY1.svg @@ -1,6 +1,6 @@ diff --git a/test/output/differenceYClip.svg b/test/output/differenceYClip.svg index 6fcf77e375..62ba7403ce 100644 --- a/test/output/differenceYClip.svg +++ b/test/output/differenceYClip.svg @@ -1,6 +1,6 @@ diff --git a/test/output/differenceYClipVariable.svg b/test/output/differenceYClipVariable.svg index 6d8fa2ecd2..22f4981a3e 100644 --- a/test/output/differenceYClipVariable.svg +++ b/test/output/differenceYClipVariable.svg @@ -1,6 +1,6 @@ diff --git a/test/output/differenceYConstant.svg b/test/output/differenceYConstant.svg index 5ec7f9045e..261a61f940 100644 --- a/test/output/differenceYConstant.svg +++ b/test/output/differenceYConstant.svg @@ -1,6 +1,6 @@ diff --git a/test/output/differenceYCurve.svg b/test/output/differenceYCurve.svg index 539f91bf93..936472b4eb 100644 --- a/test/output/differenceYCurve.svg +++ b/test/output/differenceYCurve.svg @@ -1,6 +1,6 @@ diff --git a/test/output/differenceYNegative.svg b/test/output/differenceYNegative.svg index 92c3bf2f07..d8fdcdeec9 100644 --- a/test/output/differenceYNegative.svg +++ b/test/output/differenceYNegative.svg @@ -1,6 +1,6 @@ diff --git a/test/output/differenceYOrdinal.svg b/test/output/differenceYOrdinal.svg index af97c120ec..89a5b5b49f 100644 --- a/test/output/differenceYOrdinal.svg +++ b/test/output/differenceYOrdinal.svg @@ -1,6 +1,6 @@ diff --git a/test/output/differenceYOrdinalFlip.svg b/test/output/differenceYOrdinalFlip.svg index 1962c9995e..c34dde507d 100644 --- a/test/output/differenceYOrdinalFlip.svg +++ b/test/output/differenceYOrdinalFlip.svg @@ -1,6 +1,6 @@ diff --git a/test/output/differenceYRandom.svg b/test/output/differenceYRandom.svg index c98ff54c77..516bd30eac 100644 --- a/test/output/differenceYRandom.svg +++ b/test/output/differenceYRandom.svg @@ -1,6 +1,6 @@ diff --git a/test/output/differenceYReverse.svg b/test/output/differenceYReverse.svg index 81a4ebb42d..c403c14070 100644 --- a/test/output/differenceYReverse.svg +++ b/test/output/differenceYReverse.svg @@ -1,6 +1,6 @@ diff --git a/test/output/differenceYVariable.svg b/test/output/differenceYVariable.svg index a9c7002452..87c40099cd 100644 --- a/test/output/differenceYVariable.svg +++ b/test/output/differenceYVariable.svg @@ -1,6 +1,6 @@ diff --git a/test/output/differenceYZero.svg b/test/output/differenceYZero.svg index 4a1a9c7ff3..1c0b753479 100644 --- a/test/output/differenceYZero.svg +++ b/test/output/differenceYZero.svg @@ -1,6 +1,6 @@ diff --git a/test/output/documentationLinks.svg b/test/output/documentationLinks.svg index 8a658338a4..5ec03d252d 100644 --- a/test/output/documentationLinks.svg +++ b/test/output/documentationLinks.svg @@ -1,6 +1,6 @@ diff --git a/test/output/dodgeRule.svg b/test/output/dodgeRule.svg index f4014c5e87..93bd820f11 100644 --- a/test/output/dodgeRule.svg +++ b/test/output/dodgeRule.svg @@ -1,6 +1,6 @@ diff --git a/test/output/dodgeTextRadius.svg b/test/output/dodgeTextRadius.svg index d1a277355d..a189841fc8 100644 --- a/test/output/dodgeTextRadius.svg +++ b/test/output/dodgeTextRadius.svg @@ -1,6 +1,6 @@ diff --git a/test/output/dodgeTick.svg b/test/output/dodgeTick.svg index 634c6dc857..1569704168 100644 --- a/test/output/dodgeTick.svg +++ b/test/output/dodgeTick.svg @@ -1,6 +1,6 @@ diff --git a/test/output/dotSort.html b/test/output/dotSort.html index d9ca5e83a9..eed3813b39 100644 --- a/test/output/dotSort.html +++ b/test/output/dotSort.html @@ -1,7 +1,7 @@
@@ -30,7 +30,7 @@
@@ -59,7 +59,7 @@
@@ -88,7 +88,7 @@
@@ -117,7 +117,7 @@
@@ -146,7 +146,7 @@
@@ -175,7 +175,7 @@
diff --git a/test/output/downloads.svg b/test/output/downloads.svg index d1d60880fb..f6ef7c7ccb 100644 --- a/test/output/downloads.svg +++ b/test/output/downloads.svg @@ -1,6 +1,6 @@ diff --git a/test/output/downloadsOrdinal.svg b/test/output/downloadsOrdinal.svg index 806f6a2702..98cdce921e 100644 --- a/test/output/downloadsOrdinal.svg +++ b/test/output/downloadsOrdinal.svg @@ -1,6 +1,6 @@ diff --git a/test/output/driving.svg b/test/output/driving.svg index cc10335c70..c44ef83755 100644 --- a/test/output/driving.svg +++ b/test/output/driving.svg @@ -1,6 +1,6 @@ diff --git a/test/output/electricityDemand.svg b/test/output/electricityDemand.svg index 44b05d193d..edd99a3795 100644 --- a/test/output/electricityDemand.svg +++ b/test/output/electricityDemand.svg @@ -1,6 +1,6 @@ diff --git a/test/output/empty.svg b/test/output/empty.svg index 1fe79aa800..5230700a37 100644 --- a/test/output/empty.svg +++ b/test/output/empty.svg @@ -1,6 +1,6 @@ diff --git a/test/output/emptyFacet.svg b/test/output/emptyFacet.svg index 1a19342fe8..60c29b5148 100644 --- a/test/output/emptyFacet.svg +++ b/test/output/emptyFacet.svg @@ -1,6 +1,6 @@ diff --git a/test/output/emptyLegend.svg b/test/output/emptyLegend.svg index 13373efbb2..274a9dae6c 100644 --- a/test/output/emptyLegend.svg +++ b/test/output/emptyLegend.svg @@ -1,6 +1,6 @@ diff --git a/test/output/emptyX.svg b/test/output/emptyX.svg index 13373efbb2..274a9dae6c 100644 --- a/test/output/emptyX.svg +++ b/test/output/emptyX.svg @@ -1,6 +1,6 @@ diff --git a/test/output/energyProduction.html b/test/output/energyProduction.html index a6be234f22..cf1c4eac23 100644 --- a/test/output/energyProduction.html +++ b/test/output/energyProduction.html @@ -1,25 +1,25 @@
diff --git a/test/output/errorBarX.svg b/test/output/errorBarX.svg index 27d6c88856..02bbb352b3 100644 --- a/test/output/errorBarX.svg +++ b/test/output/errorBarX.svg @@ -1,6 +1,6 @@ diff --git a/test/output/errorBarY.svg b/test/output/errorBarY.svg index 7496482e1f..5ec442c5d4 100644 --- a/test/output/errorBarY.svg +++ b/test/output/errorBarY.svg @@ -1,6 +1,6 @@ diff --git a/test/output/facetReindex.svg b/test/output/facetReindex.svg index c365d6bfe0..066178d398 100644 --- a/test/output/facetReindex.svg +++ b/test/output/facetReindex.svg @@ -1,6 +1,6 @@ diff --git a/test/output/faithfulDensity.svg b/test/output/faithfulDensity.svg index b27efe8b16..097b79261b 100644 --- a/test/output/faithfulDensity.svg +++ b/test/output/faithfulDensity.svg @@ -1,6 +1,6 @@ diff --git a/test/output/faithfulDensity1d.svg b/test/output/faithfulDensity1d.svg index 14a12b98c2..de7b8a08d3 100644 --- a/test/output/faithfulDensity1d.svg +++ b/test/output/faithfulDensity1d.svg @@ -1,6 +1,6 @@ diff --git a/test/output/faithfulDensityFill.svg b/test/output/faithfulDensityFill.svg index df3e5c39eb..361f70c163 100644 --- a/test/output/faithfulDensityFill.svg +++ b/test/output/faithfulDensityFill.svg @@ -1,6 +1,6 @@ diff --git a/test/output/federalFunds.svg b/test/output/federalFunds.svg index 3cf8032277..3c0e6b1717 100644 --- a/test/output/federalFunds.svg +++ b/test/output/federalFunds.svg @@ -1,6 +1,6 @@ diff --git a/test/output/figcaption.html b/test/output/figcaption.html index 6bd1deab99..0b8f0260c7 100644 --- a/test/output/figcaption.html +++ b/test/output/figcaption.html @@ -1,6 +1,6 @@
diff --git a/test/output/figcaptionHtml.html b/test/output/figcaptionHtml.html index f96358bdd5..8493ea02fa 100644 --- a/test/output/figcaptionHtml.html +++ b/test/output/figcaptionHtml.html @@ -1,6 +1,6 @@
diff --git a/test/output/findArrow.html b/test/output/findArrow.html index a1128c4f3a..6236654c1d 100644 --- a/test/output/findArrow.html +++ b/test/output/findArrow.html @@ -1,25 +1,25 @@
diff --git a/test/output/firstLadies.svg b/test/output/firstLadies.svg index 61e7278570..6ddae89ab6 100644 --- a/test/output/firstLadies.svg +++ b/test/output/firstLadies.svg @@ -1,6 +1,6 @@ diff --git a/test/output/flareCluster.svg b/test/output/flareCluster.svg index 7dc7d0ba7d..ec894d0cd4 100644 --- a/test/output/flareCluster.svg +++ b/test/output/flareCluster.svg @@ -1,6 +1,6 @@ diff --git a/test/output/flareIndent.svg b/test/output/flareIndent.svg index d19f579f3c..d215abf30a 100644 --- a/test/output/flareIndent.svg +++ b/test/output/flareIndent.svg @@ -1,6 +1,6 @@ diff --git a/test/output/flareTree.svg b/test/output/flareTree.svg index d3e5de8ec6..cfb25f4862 100644 --- a/test/output/flareTree.svg +++ b/test/output/flareTree.svg @@ -1,6 +1,6 @@ diff --git a/test/output/footballCoverage.svg b/test/output/footballCoverage.svg index 77af3469b6..55da722baf 100644 --- a/test/output/footballCoverage.svg +++ b/test/output/footballCoverage.svg @@ -1,6 +1,6 @@ diff --git a/test/output/frameCorners.svg b/test/output/frameCorners.svg index a9eaa326e0..dc843c4d24 100644 --- a/test/output/frameCorners.svg +++ b/test/output/frameCorners.svg @@ -1,6 +1,6 @@ diff --git a/test/output/frameFacet.svg b/test/output/frameFacet.svg index 94c1434467..d5ebadc75a 100644 --- a/test/output/frameFacet.svg +++ b/test/output/frameFacet.svg @@ -1,6 +1,6 @@ diff --git a/test/output/frameFillCategorical.html b/test/output/frameFillCategorical.html index 297fc87835..2a68729c31 100644 --- a/test/output/frameFillCategorical.html +++ b/test/output/frameFillCategorical.html @@ -1,25 +1,25 @@
diff --git a/test/output/frameFillQuantitative.html b/test/output/frameFillQuantitative.html index eac1475eff..28bcdd8fe2 100644 --- a/test/output/frameFillQuantitative.html +++ b/test/output/frameFillQuantitative.html @@ -1,6 +1,6 @@
@@ -41,7 +41,7 @@ diff --git a/test/output/frameSides.svg b/test/output/frameSides.svg index 9db41d3182..0358c643fb 100644 --- a/test/output/frameSides.svg +++ b/test/output/frameSides.svg @@ -1,6 +1,6 @@ diff --git a/test/output/frameSidesX.svg b/test/output/frameSidesX.svg index c5ec3be923..4912d349d5 100644 --- a/test/output/frameSidesX.svg +++ b/test/output/frameSidesX.svg @@ -1,6 +1,6 @@ diff --git a/test/output/frameSidesXY.svg b/test/output/frameSidesXY.svg index 5bfb5c52cf..aea7d8d4ef 100644 --- a/test/output/frameSidesXY.svg +++ b/test/output/frameSidesXY.svg @@ -1,6 +1,6 @@ diff --git a/test/output/frameSidesY.svg b/test/output/frameSidesY.svg index da287b1348..4925a1d7e3 100644 --- a/test/output/frameSidesY.svg +++ b/test/output/frameSidesY.svg @@ -1,6 +1,6 @@ diff --git a/test/output/fruitSales.svg b/test/output/fruitSales.svg index caab82bc58..61edc265cd 100644 --- a/test/output/fruitSales.svg +++ b/test/output/fruitSales.svg @@ -1,6 +1,6 @@ diff --git a/test/output/fruitSalesDate.svg b/test/output/fruitSalesDate.svg index 9541bd796a..39b751a5b6 100644 --- a/test/output/fruitSalesDate.svg +++ b/test/output/fruitSalesDate.svg @@ -1,6 +1,6 @@ diff --git a/test/output/fruitSalesSingleDate.svg b/test/output/fruitSalesSingleDate.svg index d01f8a64d6..43a8ee515d 100644 --- a/test/output/fruitSalesSingleDate.svg +++ b/test/output/fruitSalesSingleDate.svg @@ -1,6 +1,6 @@ diff --git a/test/output/functionContour.svg b/test/output/functionContour.svg index 92b654e93f..b737f317cc 100644 --- a/test/output/functionContour.svg +++ b/test/output/functionContour.svg @@ -1,6 +1,6 @@ diff --git a/test/output/functionContourFaceted.svg b/test/output/functionContourFaceted.svg index b433e7b8bb..c043461c20 100644 --- a/test/output/functionContourFaceted.svg +++ b/test/output/functionContourFaceted.svg @@ -1,6 +1,6 @@ diff --git a/test/output/functionContourFaceted2.svg b/test/output/functionContourFaceted2.svg index b433e7b8bb..c043461c20 100644 --- a/test/output/functionContourFaceted2.svg +++ b/test/output/functionContourFaceted2.svg @@ -1,6 +1,6 @@ diff --git a/test/output/futureSplom.svg b/test/output/futureSplom.svg index 821e8fa48f..9bd30855c3 100644 --- a/test/output/futureSplom.svg +++ b/test/output/futureSplom.svg @@ -1,6 +1,6 @@ diff --git a/test/output/geoLine.svg b/test/output/geoLine.svg index 804c02bd36..d99d096e96 100644 --- a/test/output/geoLine.svg +++ b/test/output/geoLine.svg @@ -1,6 +1,6 @@ diff --git a/test/output/geoLink.svg b/test/output/geoLink.svg index a9474edefa..f8f4a5e745 100644 --- a/test/output/geoLink.svg +++ b/test/output/geoLink.svg @@ -1,6 +1,6 @@ diff --git a/test/output/gistempAnomaly.svg b/test/output/gistempAnomaly.svg index 8116ae99f2..210c192c4f 100644 --- a/test/output/gistempAnomaly.svg +++ b/test/output/gistempAnomaly.svg @@ -1,6 +1,6 @@ diff --git a/test/output/gistempAnomalyMoving.svg b/test/output/gistempAnomalyMoving.svg index 4bca58e1d3..509e7d60f1 100644 --- a/test/output/gistempAnomalyMoving.svg +++ b/test/output/gistempAnomalyMoving.svg @@ -1,6 +1,6 @@ diff --git a/test/output/gistempAnomalyTransform.svg b/test/output/gistempAnomalyTransform.svg index d0eb915e10..d0c1b7d90d 100644 --- a/test/output/gistempAnomalyTransform.svg +++ b/test/output/gistempAnomalyTransform.svg @@ -1,6 +1,6 @@ diff --git a/test/output/googleTrendsRidgeline.svg b/test/output/googleTrendsRidgeline.svg index ce026d227f..c2ece343bb 100644 --- a/test/output/googleTrendsRidgeline.svg +++ b/test/output/googleTrendsRidgeline.svg @@ -1,6 +1,6 @@ diff --git a/test/output/graticule.svg b/test/output/graticule.svg index 2a75868cef..4bc85325ae 100644 --- a/test/output/graticule.svg +++ b/test/output/graticule.svg @@ -1,6 +1,6 @@ diff --git a/test/output/greekGods.svg b/test/output/greekGods.svg index cf85947f78..37e2bca5a1 100644 --- a/test/output/greekGods.svg +++ b/test/output/greekGods.svg @@ -1,6 +1,6 @@ diff --git a/test/output/greekGodsExplicit.svg b/test/output/greekGodsExplicit.svg index c0df7a6afa..493f74eace 100644 --- a/test/output/greekGodsExplicit.svg +++ b/test/output/greekGodsExplicit.svg @@ -1,6 +1,6 @@ diff --git a/test/output/greekGodsTip.svg b/test/output/greekGodsTip.svg index b3a07b4472..9c8aa2c6cd 100644 --- a/test/output/greekGodsTip.svg +++ b/test/output/greekGodsTip.svg @@ -1,6 +1,6 @@ diff --git a/test/output/gridChoropleth.svg b/test/output/gridChoropleth.svg index 1a71b33edd..b0e37b0e5e 100644 --- a/test/output/gridChoropleth.svg +++ b/test/output/gridChoropleth.svg @@ -1,6 +1,6 @@ diff --git a/test/output/gridChoroplethDx.svg b/test/output/gridChoroplethDx.svg index 29763f3bce..004628ba16 100644 --- a/test/output/gridChoroplethDx.svg +++ b/test/output/gridChoroplethDx.svg @@ -1,6 +1,6 @@ diff --git a/test/output/gridReduceIdentity.svg b/test/output/gridReduceIdentity.svg index 6056309366..2403cd624a 100644 --- a/test/output/gridReduceIdentity.svg +++ b/test/output/gridReduceIdentity.svg @@ -1,6 +1,6 @@ diff --git a/test/output/groupedRects.svg b/test/output/groupedRects.svg index 5e3f210209..8cdddba47d 100644 --- a/test/output/groupedRects.svg +++ b/test/output/groupedRects.svg @@ -1,6 +1,6 @@ diff --git a/test/output/hadcrutWarmingStripes.svg b/test/output/hadcrutWarmingStripes.svg index ada1856503..be0faafbbc 100644 --- a/test/output/hadcrutWarmingStripes.svg +++ b/test/output/hadcrutWarmingStripes.svg @@ -1,6 +1,6 @@ diff --git a/test/output/heatmap.svg b/test/output/heatmap.svg index e68b56d88e..08a62a00a6 100644 --- a/test/output/heatmap.svg +++ b/test/output/heatmap.svg @@ -1,6 +1,6 @@ diff --git a/test/output/heatmapArray.svg b/test/output/heatmapArray.svg index e68b56d88e..08a62a00a6 100644 --- a/test/output/heatmapArray.svg +++ b/test/output/heatmapArray.svg @@ -1,6 +1,6 @@ diff --git a/test/output/heatmapConstantOpacity.svg b/test/output/heatmapConstantOpacity.svg index 5d4678b2a0..5d4c9536cd 100644 --- a/test/output/heatmapConstantOpacity.svg +++ b/test/output/heatmapConstantOpacity.svg @@ -1,6 +1,6 @@ diff --git a/test/output/heatmapFaceted.svg b/test/output/heatmapFaceted.svg index 08717eddd4..256c789a8a 100644 --- a/test/output/heatmapFaceted.svg +++ b/test/output/heatmapFaceted.svg @@ -1,6 +1,6 @@ diff --git a/test/output/heatmapFillOpacity.svg b/test/output/heatmapFillOpacity.svg index 3c5a4a29b5..773eaeb31d 100644 --- a/test/output/heatmapFillOpacity.svg +++ b/test/output/heatmapFillOpacity.svg @@ -1,6 +1,6 @@ diff --git a/test/output/heatmapLog.svg b/test/output/heatmapLog.svg index 8f343c92d4..eed66e227b 100644 --- a/test/output/heatmapLog.svg +++ b/test/output/heatmapLog.svg @@ -1,6 +1,6 @@ diff --git a/test/output/heatmapOpacity.svg b/test/output/heatmapOpacity.svg index 3a52741fbe..1cc14898a1 100644 --- a/test/output/heatmapOpacity.svg +++ b/test/output/heatmapOpacity.svg @@ -1,6 +1,6 @@ diff --git a/test/output/heatmapPartial.svg b/test/output/heatmapPartial.svg index 7b291ea591..c71591e33f 100644 --- a/test/output/heatmapPartial.svg +++ b/test/output/heatmapPartial.svg @@ -1,6 +1,6 @@ diff --git a/test/output/hexbin.svg b/test/output/hexbin.svg index 3536de0382..0b71b1b3d5 100644 --- a/test/output/hexbin.svg +++ b/test/output/hexbin.svg @@ -1,6 +1,6 @@ diff --git a/test/output/hexbinFillX.svg b/test/output/hexbinFillX.svg index 3c83296f8b..5f855da8e3 100644 --- a/test/output/hexbinFillX.svg +++ b/test/output/hexbinFillX.svg @@ -1,6 +1,6 @@ diff --git a/test/output/hexbinIdentityReduce.svg b/test/output/hexbinIdentityReduce.svg index 05dbae6947..bdce3f3660 100644 --- a/test/output/hexbinIdentityReduce.svg +++ b/test/output/hexbinIdentityReduce.svg @@ -1,6 +1,6 @@ diff --git a/test/output/hexbinOranges.svg b/test/output/hexbinOranges.svg index 6625a2a154..dc335bc4fe 100644 --- a/test/output/hexbinOranges.svg +++ b/test/output/hexbinOranges.svg @@ -1,6 +1,6 @@ diff --git a/test/output/hexbinR.html b/test/output/hexbinR.html index fa48cac6e8..fcd8f5589e 100644 --- a/test/output/hexbinR.html +++ b/test/output/hexbinR.html @@ -1,6 +1,6 @@
@@ -34,7 +34,7 @@ Proportion of each sex (%) diff --git a/test/output/hexbinSymbol.html b/test/output/hexbinSymbol.html index 8a57ee8d66..025b6d1a24 100644 --- a/test/output/hexbinSymbol.html +++ b/test/output/hexbinSymbol.html @@ -1,25 +1,25 @@
diff --git a/test/output/hexbinText.svg b/test/output/hexbinText.svg index afd82f6c9a..f1d73f2237 100644 --- a/test/output/hexbinText.svg +++ b/test/output/hexbinText.svg @@ -1,6 +1,6 @@ diff --git a/test/output/hexbinZ.html b/test/output/hexbinZ.html index be981ce817..53ee62c84b 100644 --- a/test/output/hexbinZ.html +++ b/test/output/hexbinZ.html @@ -1,25 +1,25 @@
diff --git a/test/output/hexbinZNull.svg b/test/output/hexbinZNull.svg index 82ca6490c6..5071c545be 100644 --- a/test/output/hexbinZNull.svg +++ b/test/output/hexbinZNull.svg @@ -1,6 +1,6 @@ diff --git a/test/output/highCardinalityOrdinal.svg b/test/output/highCardinalityOrdinal.svg index 749c7ff5cf..8c9ac45d74 100644 --- a/test/output/highCardinalityOrdinal.svg +++ b/test/output/highCardinalityOrdinal.svg @@ -1,6 +1,6 @@ diff --git a/test/output/hrefFill.svg b/test/output/hrefFill.svg index 3f8c3e90b5..003d3b454f 100644 --- a/test/output/hrefFill.svg +++ b/test/output/hrefFill.svg @@ -1,6 +1,6 @@ diff --git a/test/output/ibmTrading.svg b/test/output/ibmTrading.svg index 89ec9707f7..8348ddf624 100644 --- a/test/output/ibmTrading.svg +++ b/test/output/ibmTrading.svg @@ -1,6 +1,6 @@ diff --git a/test/output/identityScale.svg b/test/output/identityScale.svg index 44d955a03e..9103a02297 100644 --- a/test/output/identityScale.svg +++ b/test/output/identityScale.svg @@ -1,6 +1,6 @@ diff --git a/test/output/imagePixelated.svg b/test/output/imagePixelated.svg index 4292aea08a..01fbb40bba 100644 --- a/test/output/imagePixelated.svg +++ b/test/output/imagePixelated.svg @@ -1,6 +1,6 @@ diff --git a/test/output/industryUnemployment.svg b/test/output/industryUnemployment.svg index a11a1cd0a7..9d1836510b 100644 --- a/test/output/industryUnemployment.svg +++ b/test/output/industryUnemployment.svg @@ -1,6 +1,6 @@ diff --git a/test/output/industryUnemploymentShare.svg b/test/output/industryUnemploymentShare.svg index 459f3905b8..b6badbd7d9 100644 --- a/test/output/industryUnemploymentShare.svg +++ b/test/output/industryUnemploymentShare.svg @@ -1,6 +1,6 @@ diff --git a/test/output/industryUnemploymentStream.svg b/test/output/industryUnemploymentStream.svg index 09f8b19d8d..c1e65821be 100644 --- a/test/output/industryUnemploymentStream.svg +++ b/test/output/industryUnemploymentStream.svg @@ -1,6 +1,6 @@ diff --git a/test/output/industryUnemploymentTrack.svg b/test/output/industryUnemploymentTrack.svg index f9f7bd91c1..2bf30dd1af 100644 --- a/test/output/industryUnemploymentTrack.svg +++ b/test/output/industryUnemploymentTrack.svg @@ -1,6 +1,6 @@ diff --git a/test/output/infinityLog.svg b/test/output/infinityLog.svg index c881f9b795..0953f5dc14 100644 --- a/test/output/infinityLog.svg +++ b/test/output/infinityLog.svg @@ -1,6 +1,6 @@ diff --git a/test/output/integerInterval.svg b/test/output/integerInterval.svg index 7424fb30b6..db25e4db5c 100644 --- a/test/output/integerInterval.svg +++ b/test/output/integerInterval.svg @@ -1,6 +1,6 @@ diff --git a/test/output/integerIntervalArea.html b/test/output/integerIntervalArea.html index 1cd669e1a2..847b67e1f1 100644 --- a/test/output/integerIntervalArea.html +++ b/test/output/integerIntervalArea.html @@ -1,25 +1,25 @@
diff --git a/test/output/integerIntervalAreaZ.html b/test/output/integerIntervalAreaZ.html index 5633cf8290..2ae97e24db 100644 --- a/test/output/integerIntervalAreaZ.html +++ b/test/output/integerIntervalAreaZ.html @@ -1,25 +1,25 @@
diff --git a/test/output/internFacetDate.svg b/test/output/internFacetDate.svg index b17680457a..78b5458bf7 100644 --- a/test/output/internFacetDate.svg +++ b/test/output/internFacetDate.svg @@ -1,6 +1,6 @@ diff --git a/test/output/internFacetNaN.svg b/test/output/internFacetNaN.svg index af683bf3dd..2cca9cb3cd 100644 --- a/test/output/internFacetNaN.svg +++ b/test/output/internFacetNaN.svg @@ -1,6 +1,6 @@ diff --git a/test/output/intervalAwareBin.svg b/test/output/intervalAwareBin.svg index bb6616c20a..57e5e58180 100644 --- a/test/output/intervalAwareBin.svg +++ b/test/output/intervalAwareBin.svg @@ -1,6 +1,6 @@ diff --git a/test/output/intervalAwareGroup.svg b/test/output/intervalAwareGroup.svg index 34034295ab..8a11a77442 100644 --- a/test/output/intervalAwareGroup.svg +++ b/test/output/intervalAwareGroup.svg @@ -1,6 +1,6 @@ diff --git a/test/output/intervalAwareStack.svg b/test/output/intervalAwareStack.svg index 73fcbd1a1c..f9edd8e841 100644 --- a/test/output/intervalAwareStack.svg +++ b/test/output/intervalAwareStack.svg @@ -1,6 +1,6 @@ diff --git a/test/output/intradayHistogram.svg b/test/output/intradayHistogram.svg index 372c1a52cc..0f367137c1 100644 --- a/test/output/intradayHistogram.svg +++ b/test/output/intradayHistogram.svg @@ -1,6 +1,6 @@ diff --git a/test/output/kittenConstant.svg b/test/output/kittenConstant.svg index 3c1a88b09a..8e41e2426d 100644 --- a/test/output/kittenConstant.svg +++ b/test/output/kittenConstant.svg @@ -1,6 +1,6 @@ diff --git a/test/output/kittenConstantRotate.svg b/test/output/kittenConstantRotate.svg index c0f4ed7bc2..b41c69d0af 100644 --- a/test/output/kittenConstantRotate.svg +++ b/test/output/kittenConstantRotate.svg @@ -1,6 +1,6 @@ diff --git a/test/output/kittenConstantWidthHeight.svg b/test/output/kittenConstantWidthHeight.svg index 5e8e2ebd0c..ac98c2299f 100644 --- a/test/output/kittenConstantWidthHeight.svg +++ b/test/output/kittenConstantWidthHeight.svg @@ -1,6 +1,6 @@ diff --git a/test/output/kittenVariable.svg b/test/output/kittenVariable.svg index 4ad651cc1e..3e54c279b4 100644 --- a/test/output/kittenVariable.svg +++ b/test/output/kittenVariable.svg @@ -1,6 +1,6 @@ diff --git a/test/output/kittenVariableDodge.svg b/test/output/kittenVariableDodge.svg index c07110e172..ece3905dc0 100644 --- a/test/output/kittenVariableDodge.svg +++ b/test/output/kittenVariableDodge.svg @@ -1,6 +1,6 @@ diff --git a/test/output/kittenVariableRotate.svg b/test/output/kittenVariableRotate.svg index 93b34e40fc..54ba4fe931 100644 --- a/test/output/kittenVariableRotate.svg +++ b/test/output/kittenVariableRotate.svg @@ -1,6 +1,6 @@ diff --git a/test/output/learningPoverty.svg b/test/output/learningPoverty.svg index 76e316510b..5227099194 100644 --- a/test/output/learningPoverty.svg +++ b/test/output/learningPoverty.svg @@ -1,6 +1,6 @@ diff --git a/test/output/letterFrequencyBar.svg b/test/output/letterFrequencyBar.svg index b68e978186..d7775e6433 100644 --- a/test/output/letterFrequencyBar.svg +++ b/test/output/letterFrequencyBar.svg @@ -1,6 +1,6 @@ diff --git a/test/output/letterFrequencyCloud.svg b/test/output/letterFrequencyCloud.svg index 70a89efac5..a170414d92 100644 --- a/test/output/letterFrequencyCloud.svg +++ b/test/output/letterFrequencyCloud.svg @@ -1,6 +1,6 @@ diff --git a/test/output/letterFrequencyColumn.svg b/test/output/letterFrequencyColumn.svg index c5446f42f0..bc56e81c5a 100644 --- a/test/output/letterFrequencyColumn.svg +++ b/test/output/letterFrequencyColumn.svg @@ -1,6 +1,6 @@ diff --git a/test/output/letterFrequencyDot.svg b/test/output/letterFrequencyDot.svg index 2480cf8ecf..9b7bc1ea29 100644 --- a/test/output/letterFrequencyDot.svg +++ b/test/output/letterFrequencyDot.svg @@ -1,6 +1,6 @@ diff --git a/test/output/letterFrequencyLollipop.svg b/test/output/letterFrequencyLollipop.svg index 7116859be7..ebc383b592 100644 --- a/test/output/letterFrequencyLollipop.svg +++ b/test/output/letterFrequencyLollipop.svg @@ -1,6 +1,6 @@ diff --git a/test/output/letterFrequencyWheel.svg b/test/output/letterFrequencyWheel.svg index 9fe6c94e33..8f3602ccbf 100644 --- a/test/output/letterFrequencyWheel.svg +++ b/test/output/letterFrequencyWheel.svg @@ -1,6 +1,6 @@ diff --git a/test/output/liborProjections.svg b/test/output/liborProjections.svg index 905d602d13..9bbd5aae71 100644 --- a/test/output/liborProjections.svg +++ b/test/output/liborProjections.svg @@ -1,6 +1,6 @@ diff --git a/test/output/liborProjectionsFacet.html b/test/output/liborProjectionsFacet.html index 43703a38eb..56f1dec084 100644 --- a/test/output/liborProjectionsFacet.html +++ b/test/output/liborProjectionsFacet.html @@ -1,25 +1,25 @@
diff --git a/test/output/likertSurvey.html b/test/output/likertSurvey.html index de5db87621..45da862a02 100644 --- a/test/output/likertSurvey.html +++ b/test/output/likertSurvey.html @@ -1,25 +1,25 @@
diff --git a/test/output/linearRegressionCars.svg b/test/output/linearRegressionCars.svg index bec9c8bc42..6184f4367d 100644 --- a/test/output/linearRegressionCars.svg +++ b/test/output/linearRegressionCars.svg @@ -1,6 +1,6 @@ diff --git a/test/output/linearRegressionMtcars.svg b/test/output/linearRegressionMtcars.svg index 8f7e164838..68fc9cb950 100644 --- a/test/output/linearRegressionMtcars.svg +++ b/test/output/linearRegressionMtcars.svg @@ -1,6 +1,6 @@ diff --git a/test/output/linearRegressionPenguins.svg b/test/output/linearRegressionPenguins.svg index bbc31a9d80..b8342fb8c7 100644 --- a/test/output/linearRegressionPenguins.svg +++ b/test/output/linearRegressionPenguins.svg @@ -1,6 +1,6 @@ diff --git a/test/output/logDegenerate.svg b/test/output/logDegenerate.svg index 83a7524fe3..2fa4024b1d 100644 --- a/test/output/logDegenerate.svg +++ b/test/output/logDegenerate.svg @@ -1,6 +1,6 @@ diff --git a/test/output/longLabels.svg b/test/output/longLabels.svg index 0862672c45..3c20aa317a 100644 --- a/test/output/longLabels.svg +++ b/test/output/longLabels.svg @@ -1,6 +1,6 @@ diff --git a/test/output/mandelbrot.svg b/test/output/mandelbrot.svg index 5241ef9f1a..329ee456d1 100644 --- a/test/output/mandelbrot.svg +++ b/test/output/mandelbrot.svg @@ -1,6 +1,6 @@ diff --git a/test/output/markerRuleX.svg b/test/output/markerRuleX.svg index 16ae03c774..9e0368e33c 100644 --- a/test/output/markerRuleX.svg +++ b/test/output/markerRuleX.svg @@ -1,6 +1,6 @@ diff --git a/test/output/markerRuleY.svg b/test/output/markerRuleY.svg index 0466f7b469..161a774460 100644 --- a/test/output/markerRuleY.svg +++ b/test/output/markerRuleY.svg @@ -1,6 +1,6 @@ diff --git a/test/output/markerTickX.svg b/test/output/markerTickX.svg index e6c4e97d32..272e0b9bbd 100644 --- a/test/output/markerTickX.svg +++ b/test/output/markerTickX.svg @@ -1,6 +1,6 @@ diff --git a/test/output/markerTickY.svg b/test/output/markerTickY.svg index 6ba7ed4115..1fd1b3d294 100644 --- a/test/output/markerTickY.svg +++ b/test/output/markerTickY.svg @@ -1,6 +1,6 @@ diff --git a/test/output/markovChain.svg b/test/output/markovChain.svg index 95d73712ce..71adab13ad 100644 --- a/test/output/markovChain.svg +++ b/test/output/markovChain.svg @@ -1,6 +1,6 @@ diff --git a/test/output/metroInequality.svg b/test/output/metroInequality.svg index 41d388f102..86b7418721 100644 --- a/test/output/metroInequality.svg +++ b/test/output/metroInequality.svg @@ -1,6 +1,6 @@ diff --git a/test/output/metroInequalityChange.svg b/test/output/metroInequalityChange.svg index 77e0aefbdf..b556027d26 100644 --- a/test/output/metroInequalityChange.svg +++ b/test/output/metroInequalityChange.svg @@ -1,6 +1,6 @@ diff --git a/test/output/metroUnemployment.svg b/test/output/metroUnemployment.svg index 2eb10a9587..03ae44e55b 100644 --- a/test/output/metroUnemployment.svg +++ b/test/output/metroUnemployment.svg @@ -1,6 +1,6 @@ diff --git a/test/output/metroUnemploymentHighlight.svg b/test/output/metroUnemploymentHighlight.svg index 4700254430..c11d9ce4ce 100644 --- a/test/output/metroUnemploymentHighlight.svg +++ b/test/output/metroUnemploymentHighlight.svg @@ -1,6 +1,6 @@ diff --git a/test/output/metroUnemploymentIndex.svg b/test/output/metroUnemploymentIndex.svg index b6075023bd..55a5492334 100644 --- a/test/output/metroUnemploymentIndex.svg +++ b/test/output/metroUnemploymentIndex.svg @@ -1,6 +1,6 @@ diff --git a/test/output/metroUnemploymentMoving.svg b/test/output/metroUnemploymentMoving.svg index 3148aa24e3..88c9d4cba8 100644 --- a/test/output/metroUnemploymentMoving.svg +++ b/test/output/metroUnemploymentMoving.svg @@ -1,6 +1,6 @@ diff --git a/test/output/metroUnemploymentNormalize.svg b/test/output/metroUnemploymentNormalize.svg index e91ab3ab5a..c333dea114 100644 --- a/test/output/metroUnemploymentNormalize.svg +++ b/test/output/metroUnemploymentNormalize.svg @@ -1,6 +1,6 @@ diff --git a/test/output/metroUnemploymentRidgeline.svg b/test/output/metroUnemploymentRidgeline.svg index 7fb106da99..32a30de4c6 100644 --- a/test/output/metroUnemploymentRidgeline.svg +++ b/test/output/metroUnemploymentRidgeline.svg @@ -1,6 +1,6 @@ diff --git a/test/output/metroUnemploymentSlope.svg b/test/output/metroUnemploymentSlope.svg index 7422737a58..8e1408b00c 100644 --- a/test/output/metroUnemploymentSlope.svg +++ b/test/output/metroUnemploymentSlope.svg @@ -1,6 +1,6 @@ diff --git a/test/output/metroUnemploymentStroke.svg b/test/output/metroUnemploymentStroke.svg index cb0cc8fa0b..52128921fa 100644 --- a/test/output/metroUnemploymentStroke.svg +++ b/test/output/metroUnemploymentStroke.svg @@ -1,6 +1,6 @@ diff --git a/test/output/mobyDick.svg b/test/output/mobyDick.svg index 48e579f8aa..525997b748 100644 --- a/test/output/mobyDick.svg +++ b/test/output/mobyDick.svg @@ -1,6 +1,6 @@ diff --git a/test/output/mobyDickFaceted.svg b/test/output/mobyDickFaceted.svg index f554a48d74..3286115326 100644 --- a/test/output/mobyDickFaceted.svg +++ b/test/output/mobyDickFaceted.svg @@ -1,6 +1,6 @@ diff --git a/test/output/mobyDickLetterFrequency.svg b/test/output/mobyDickLetterFrequency.svg index aa5ce76268..e51880fe2d 100644 --- a/test/output/mobyDickLetterFrequency.svg +++ b/test/output/mobyDickLetterFrequency.svg @@ -1,6 +1,6 @@ diff --git a/test/output/mobyDickLetterFrequencyFillX.svg b/test/output/mobyDickLetterFrequencyFillX.svg index 6e843da67b..998a42a7c9 100644 --- a/test/output/mobyDickLetterFrequencyFillX.svg +++ b/test/output/mobyDickLetterFrequencyFillX.svg @@ -1,6 +1,6 @@ diff --git a/test/output/mobyDickLetterPairs.svg b/test/output/mobyDickLetterPairs.svg index e128f7b7ab..27b58c0540 100644 --- a/test/output/mobyDickLetterPairs.svg +++ b/test/output/mobyDickLetterPairs.svg @@ -1,6 +1,6 @@ diff --git a/test/output/mobyDickLetterPosition.svg b/test/output/mobyDickLetterPosition.svg index a54b4791ff..07b4a424e1 100644 --- a/test/output/mobyDickLetterPosition.svg +++ b/test/output/mobyDickLetterPosition.svg @@ -1,6 +1,6 @@ diff --git a/test/output/mobyDickLetterRelativeFrequency.svg b/test/output/mobyDickLetterRelativeFrequency.svg index 8d775126bc..10761a9d02 100644 --- a/test/output/mobyDickLetterRelativeFrequency.svg +++ b/test/output/mobyDickLetterRelativeFrequency.svg @@ -1,6 +1,6 @@ diff --git a/test/output/morleyBoxplot.svg b/test/output/morleyBoxplot.svg index 00dbe188f2..16747e06f5 100644 --- a/test/output/morleyBoxplot.svg +++ b/test/output/morleyBoxplot.svg @@ -1,6 +1,6 @@ diff --git a/test/output/moviesProfitByGenre.svg b/test/output/moviesProfitByGenre.svg index bb5ff6bbae..40ce0c496c 100644 --- a/test/output/moviesProfitByGenre.svg +++ b/test/output/moviesProfitByGenre.svg @@ -1,6 +1,6 @@ diff --git a/test/output/moviesRatingByGenre.svg b/test/output/moviesRatingByGenre.svg index 3f2fd2ab3f..f2dd5bfaf7 100644 --- a/test/output/moviesRatingByGenre.svg +++ b/test/output/moviesRatingByGenre.svg @@ -1,6 +1,6 @@ diff --git a/test/output/multiplicationTable.svg b/test/output/multiplicationTable.svg index 44f8141f3b..3b2be02fde 100644 --- a/test/output/multiplicationTable.svg +++ b/test/output/multiplicationTable.svg @@ -1,6 +1,6 @@ diff --git a/test/output/musicRevenue.svg b/test/output/musicRevenue.svg index 694f27e56d..6d5b3d0f38 100644 --- a/test/output/musicRevenue.svg +++ b/test/output/musicRevenue.svg @@ -1,6 +1,6 @@ diff --git a/test/output/musicRevenueCustomOrder.svg b/test/output/musicRevenueCustomOrder.svg index 08b32ee398..b142d62559 100644 --- a/test/output/musicRevenueCustomOrder.svg +++ b/test/output/musicRevenueCustomOrder.svg @@ -1,6 +1,6 @@ diff --git a/test/output/npmVersions.svg b/test/output/npmVersions.svg index cf91c5ed57..798f5b1c37 100644 --- a/test/output/npmVersions.svg +++ b/test/output/npmVersions.svg @@ -1,6 +1,6 @@ diff --git a/test/output/opacityDotsFillUnscaled.svg b/test/output/opacityDotsFillUnscaled.svg index 4bdf97a576..456c9e5c36 100644 --- a/test/output/opacityDotsFillUnscaled.svg +++ b/test/output/opacityDotsFillUnscaled.svg @@ -1,6 +1,6 @@ diff --git a/test/output/opacityDotsStrokeUnscaled.svg b/test/output/opacityDotsStrokeUnscaled.svg index ba8d1706fa..f61f05b0e6 100644 --- a/test/output/opacityDotsStrokeUnscaled.svg +++ b/test/output/opacityDotsStrokeUnscaled.svg @@ -1,6 +1,6 @@ diff --git a/test/output/opacityDotsUnscaled.svg b/test/output/opacityDotsUnscaled.svg index 6580d23cff..865b84b58f 100644 --- a/test/output/opacityDotsUnscaled.svg +++ b/test/output/opacityDotsUnscaled.svg @@ -1,6 +1,6 @@ diff --git a/test/output/opacityLegend.svg b/test/output/opacityLegend.svg index b50c40411f..0a5997793c 100644 --- a/test/output/opacityLegend.svg +++ b/test/output/opacityLegend.svg @@ -1,6 +1,6 @@ diff --git a/test/output/opacityLegendColor.svg b/test/output/opacityLegendColor.svg index 7922537dd9..61b91916c7 100644 --- a/test/output/opacityLegendColor.svg +++ b/test/output/opacityLegendColor.svg @@ -1,6 +1,6 @@ diff --git a/test/output/opacityLegendLinear.svg b/test/output/opacityLegendLinear.svg index 63aa68d081..4aba50fbd9 100644 --- a/test/output/opacityLegendLinear.svg +++ b/test/output/opacityLegendLinear.svg @@ -1,6 +1,6 @@ diff --git a/test/output/opacityLegendLog.svg b/test/output/opacityLegendLog.svg index 2480f07acc..47b31fd8b2 100644 --- a/test/output/opacityLegendLog.svg +++ b/test/output/opacityLegendLog.svg @@ -1,6 +1,6 @@ diff --git a/test/output/opacityLegendRange.svg b/test/output/opacityLegendRange.svg index fc7f4a2df5..e4e3d6a4cd 100644 --- a/test/output/opacityLegendRange.svg +++ b/test/output/opacityLegendRange.svg @@ -1,6 +1,6 @@ diff --git a/test/output/opacityLegendSqrt.svg b/test/output/opacityLegendSqrt.svg index 08394d4897..daa2dff50e 100644 --- a/test/output/opacityLegendSqrt.svg +++ b/test/output/opacityLegendSqrt.svg @@ -1,6 +1,6 @@ diff --git a/test/output/ordinalBar.svg b/test/output/ordinalBar.svg index 030b8b3a34..b3f76afc90 100644 --- a/test/output/ordinalBar.svg +++ b/test/output/ordinalBar.svg @@ -1,6 +1,6 @@ diff --git a/test/output/pairsArea.svg b/test/output/pairsArea.svg index 62c63b73fc..e50d89e6c4 100644 --- a/test/output/pairsArea.svg +++ b/test/output/pairsArea.svg @@ -1,6 +1,6 @@ diff --git a/test/output/penguinAnnotated.svg b/test/output/penguinAnnotated.svg index 7246b08805..b71bb8c8ad 100644 --- a/test/output/penguinAnnotated.svg +++ b/test/output/penguinAnnotated.svg @@ -1,6 +1,6 @@ diff --git a/test/output/penguinCulmen.svg b/test/output/penguinCulmen.svg index c075eb1baa..2986334ed4 100644 --- a/test/output/penguinCulmen.svg +++ b/test/output/penguinCulmen.svg @@ -1,6 +1,6 @@ diff --git a/test/output/penguinCulmenArray.svg b/test/output/penguinCulmenArray.svg index e6b5a6b044..2d1c0c2d73 100644 --- a/test/output/penguinCulmenArray.svg +++ b/test/output/penguinCulmenArray.svg @@ -1,6 +1,6 @@ diff --git a/test/output/penguinCulmenDelaunay.svg b/test/output/penguinCulmenDelaunay.svg index e5c90a8631..a4d271f808 100644 --- a/test/output/penguinCulmenDelaunay.svg +++ b/test/output/penguinCulmenDelaunay.svg @@ -1,6 +1,6 @@ diff --git a/test/output/penguinCulmenDelaunayMesh.svg b/test/output/penguinCulmenDelaunayMesh.svg index 1750bd4359..0784323f32 100644 --- a/test/output/penguinCulmenDelaunayMesh.svg +++ b/test/output/penguinCulmenDelaunayMesh.svg @@ -1,6 +1,6 @@ diff --git a/test/output/penguinCulmenDelaunaySpecies.svg b/test/output/penguinCulmenDelaunaySpecies.svg index 6055a03f48..ec6b4d63d2 100644 --- a/test/output/penguinCulmenDelaunaySpecies.svg +++ b/test/output/penguinCulmenDelaunaySpecies.svg @@ -1,6 +1,6 @@ diff --git a/test/output/penguinCulmenMarkFacet.svg b/test/output/penguinCulmenMarkFacet.svg index 45d60f5fe8..aac77ca51d 100644 --- a/test/output/penguinCulmenMarkFacet.svg +++ b/test/output/penguinCulmenMarkFacet.svg @@ -1,6 +1,6 @@ diff --git a/test/output/penguinCulmenVoronoi.svg b/test/output/penguinCulmenVoronoi.svg index c78d2bcbb9..44a69b4be3 100644 --- a/test/output/penguinCulmenVoronoi.svg +++ b/test/output/penguinCulmenVoronoi.svg @@ -1,6 +1,6 @@ diff --git a/test/output/penguinDensity.svg b/test/output/penguinDensity.svg index 7800aaa01a..b0fb958111 100644 --- a/test/output/penguinDensity.svg +++ b/test/output/penguinDensity.svg @@ -1,6 +1,6 @@ diff --git a/test/output/penguinDensityFill.html b/test/output/penguinDensityFill.html index 0b4e405204..ece85310ff 100644 --- a/test/output/penguinDensityFill.html +++ b/test/output/penguinDensityFill.html @@ -1,6 +1,6 @@
@@ -34,7 +34,7 @@ Density diff --git a/test/output/penguinDensityZ.html b/test/output/penguinDensityZ.html index 0a4b2369b7..ea04ea01ec 100644 --- a/test/output/penguinDensityZ.html +++ b/test/output/penguinDensityZ.html @@ -1,25 +1,25 @@
diff --git a/test/output/penguinDodge.svg b/test/output/penguinDodge.svg index fcc996c36c..02cfbb3854 100644 --- a/test/output/penguinDodge.svg +++ b/test/output/penguinDodge.svg @@ -1,6 +1,6 @@ diff --git a/test/output/penguinDodgeHexbin.svg b/test/output/penguinDodgeHexbin.svg index c99a6feec6..c578b8cbe2 100644 --- a/test/output/penguinDodgeHexbin.svg +++ b/test/output/penguinDodgeHexbin.svg @@ -1,6 +1,6 @@ diff --git a/test/output/penguinDodgeVoronoi.svg b/test/output/penguinDodgeVoronoi.svg index a27d7a5cd4..c85c8bf2b5 100644 --- a/test/output/penguinDodgeVoronoi.svg +++ b/test/output/penguinDodgeVoronoi.svg @@ -1,6 +1,6 @@ diff --git a/test/output/penguinFacetAnnotated.svg b/test/output/penguinFacetAnnotated.svg index 9a17e035f1..df2dbaf0ec 100644 --- a/test/output/penguinFacetAnnotated.svg +++ b/test/output/penguinFacetAnnotated.svg @@ -1,6 +1,6 @@ diff --git a/test/output/penguinFacetAnnotatedX.svg b/test/output/penguinFacetAnnotatedX.svg index 096b526ed2..329793cdf1 100644 --- a/test/output/penguinFacetAnnotatedX.svg +++ b/test/output/penguinFacetAnnotatedX.svg @@ -1,6 +1,6 @@ diff --git a/test/output/penguinFacetDodge.svg b/test/output/penguinFacetDodge.svg index 49c004cdd1..abaa09a3ad 100644 --- a/test/output/penguinFacetDodge.svg +++ b/test/output/penguinFacetDodge.svg @@ -1,6 +1,6 @@ diff --git a/test/output/penguinFacetDodgeIdentity.svg b/test/output/penguinFacetDodgeIdentity.svg index 88459496f4..9ddc1841e3 100644 --- a/test/output/penguinFacetDodgeIdentity.svg +++ b/test/output/penguinFacetDodgeIdentity.svg @@ -1,6 +1,6 @@ diff --git a/test/output/penguinFacetDodgeIsland.html b/test/output/penguinFacetDodgeIsland.html index af6d446909..63449abec4 100644 --- a/test/output/penguinFacetDodgeIsland.html +++ b/test/output/penguinFacetDodgeIsland.html @@ -1,25 +1,25 @@
diff --git a/test/output/penguinFacetDodgeSymbol.html b/test/output/penguinFacetDodgeSymbol.html index 6ae05e27c5..8ababf7310 100644 --- a/test/output/penguinFacetDodgeSymbol.html +++ b/test/output/penguinFacetDodgeSymbol.html @@ -1,25 +1,25 @@
diff --git a/test/output/penguinHexbinColorExplicit.svg b/test/output/penguinHexbinColorExplicit.svg index 6deb669880..b2e4498101 100644 --- a/test/output/penguinHexbinColorExplicit.svg +++ b/test/output/penguinHexbinColorExplicit.svg @@ -1,6 +1,6 @@ diff --git a/test/output/penguinIslandUnknown.svg b/test/output/penguinIslandUnknown.svg index b47f04a4be..0d5fd0b532 100644 --- a/test/output/penguinIslandUnknown.svg +++ b/test/output/penguinIslandUnknown.svg @@ -1,6 +1,6 @@ diff --git a/test/output/penguinMass.svg b/test/output/penguinMass.svg index d571e480da..586203490e 100644 --- a/test/output/penguinMass.svg +++ b/test/output/penguinMass.svg @@ -1,6 +1,6 @@ diff --git a/test/output/penguinMassSex.svg b/test/output/penguinMassSex.svg index b2b9e5a48d..220c6739ab 100644 --- a/test/output/penguinMassSex.svg +++ b/test/output/penguinMassSex.svg @@ -1,6 +1,6 @@ diff --git a/test/output/penguinMassSexSpecies.svg b/test/output/penguinMassSexSpecies.svg index b2d1282d13..b72fa4e99e 100644 --- a/test/output/penguinMassSexSpecies.svg +++ b/test/output/penguinMassSexSpecies.svg @@ -1,6 +1,6 @@ diff --git a/test/output/penguinMassSpecies.svg b/test/output/penguinMassSpecies.svg index a43d29bfd3..ac62d7c40e 100644 --- a/test/output/penguinMassSpecies.svg +++ b/test/output/penguinMassSpecies.svg @@ -1,6 +1,6 @@ diff --git a/test/output/penguinNA1.svg b/test/output/penguinNA1.svg index 4ece1cf00a..7754b22960 100644 --- a/test/output/penguinNA1.svg +++ b/test/output/penguinNA1.svg @@ -1,6 +1,6 @@ diff --git a/test/output/penguinNA2.svg b/test/output/penguinNA2.svg index f611645afb..2181c691f2 100644 --- a/test/output/penguinNA2.svg +++ b/test/output/penguinNA2.svg @@ -1,6 +1,6 @@ diff --git a/test/output/penguinNA3.svg b/test/output/penguinNA3.svg index a58a8ce301..7d1c16c8ca 100644 --- a/test/output/penguinNA3.svg +++ b/test/output/penguinNA3.svg @@ -1,6 +1,6 @@ diff --git a/test/output/penguinQuantileEmpty.svg b/test/output/penguinQuantileEmpty.svg index d99a4a0a43..86c6cc1d6a 100644 --- a/test/output/penguinQuantileEmpty.svg +++ b/test/output/penguinQuantileEmpty.svg @@ -1,6 +1,6 @@ diff --git a/test/output/penguinQuantileUnknown.html b/test/output/penguinQuantileUnknown.html index 54cfa33a74..7800e35b43 100644 --- a/test/output/penguinQuantileUnknown.html +++ b/test/output/penguinQuantileUnknown.html @@ -1,6 +1,6 @@
@@ -40,7 +40,7 @@ body_mass_g diff --git a/test/output/penguinSex.svg b/test/output/penguinSex.svg index ade9143715..b163855c28 100644 --- a/test/output/penguinSex.svg +++ b/test/output/penguinSex.svg @@ -1,6 +1,6 @@ diff --git a/test/output/penguinSexMassCulmenSpecies.svg b/test/output/penguinSexMassCulmenSpecies.svg index ba0f6edac3..e00824f5f4 100644 --- a/test/output/penguinSexMassCulmenSpecies.svg +++ b/test/output/penguinSexMassCulmenSpecies.svg @@ -1,6 +1,6 @@ diff --git a/test/output/penguinSizeSymbols.html b/test/output/penguinSizeSymbols.html index 79674fc33f..7d3bbc67dc 100644 --- a/test/output/penguinSizeSymbols.html +++ b/test/output/penguinSizeSymbols.html @@ -1,25 +1,25 @@
diff --git a/test/output/penguinSpeciesCheysson.html b/test/output/penguinSpeciesCheysson.html index 2d6bc1a3f0..cf825404fb 100644 --- a/test/output/penguinSpeciesCheysson.html +++ b/test/output/penguinSpeciesCheysson.html @@ -1,25 +1,25 @@
diff --git a/test/output/penguinSpeciesGradient.svg b/test/output/penguinSpeciesGradient.svg index a169a1ae06..a5e1774491 100644 --- a/test/output/penguinSpeciesGradient.svg +++ b/test/output/penguinSpeciesGradient.svg @@ -1,6 +1,6 @@ diff --git a/test/output/penguinSpeciesGroup.svg b/test/output/penguinSpeciesGroup.svg index 8839f02cd8..e55503d8e5 100644 --- a/test/output/penguinSpeciesGroup.svg +++ b/test/output/penguinSpeciesGroup.svg @@ -1,6 +1,6 @@ diff --git a/test/output/penguinSpeciesImageFilter.svg b/test/output/penguinSpeciesImageFilter.svg index ea1a896cf0..d697fe54b0 100644 --- a/test/output/penguinSpeciesImageFilter.svg +++ b/test/output/penguinSpeciesImageFilter.svg @@ -1,6 +1,6 @@ diff --git a/test/output/penguinSpeciesIsland.svg b/test/output/penguinSpeciesIsland.svg index c96627bee5..ec08aaf5a4 100644 --- a/test/output/penguinSpeciesIsland.svg +++ b/test/output/penguinSpeciesIsland.svg @@ -1,6 +1,6 @@ diff --git a/test/output/penguinSpeciesIslandRelative.svg b/test/output/penguinSpeciesIslandRelative.svg index dd5a490844..c8f4438502 100644 --- a/test/output/penguinSpeciesIslandRelative.svg +++ b/test/output/penguinSpeciesIslandRelative.svg @@ -1,6 +1,6 @@ diff --git a/test/output/penguinSpeciesIslandSex.svg b/test/output/penguinSpeciesIslandSex.svg index df812a3895..ff272ab9e9 100644 --- a/test/output/penguinSpeciesIslandSex.svg +++ b/test/output/penguinSpeciesIslandSex.svg @@ -1,6 +1,6 @@ diff --git a/test/output/penguinVoronoi1D.svg b/test/output/penguinVoronoi1D.svg index 14efe4cfdb..cc261d161f 100644 --- a/test/output/penguinVoronoi1D.svg +++ b/test/output/penguinVoronoi1D.svg @@ -1,6 +1,6 @@ diff --git a/test/output/pointerLinkedRectInterval.svg b/test/output/pointerLinkedRectInterval.svg index 6cb6b205d5..cb1281a0a6 100644 --- a/test/output/pointerLinkedRectInterval.svg +++ b/test/output/pointerLinkedRectInterval.svg @@ -1,6 +1,6 @@ diff --git a/test/output/pointerNonFaceted.svg b/test/output/pointerNonFaceted.svg index 6130dd63a9..b026e8b42d 100644 --- a/test/output/pointerNonFaceted.svg +++ b/test/output/pointerNonFaceted.svg @@ -1,6 +1,6 @@ diff --git a/test/output/pointerRenderCompose.svg b/test/output/pointerRenderCompose.svg index a1ea5ec337..755484ec6c 100644 --- a/test/output/pointerRenderCompose.svg +++ b/test/output/pointerRenderCompose.svg @@ -1,6 +1,6 @@ diff --git a/test/output/pointerViewof.html b/test/output/pointerViewof.html index 8fb48b823d..d320531398 100644 --- a/test/output/pointerViewof.html +++ b/test/output/pointerViewof.html @@ -1,6 +1,6 @@
diff --git a/test/output/polylinear.svg b/test/output/polylinear.svg index 111830181b..d8d3793a48 100644 --- a/test/output/polylinear.svg +++ b/test/output/polylinear.svg @@ -1,6 +1,6 @@ diff --git a/test/output/populationByLatitude.svg b/test/output/populationByLatitude.svg index 663b103fa2..c266fb6566 100644 --- a/test/output/populationByLatitude.svg +++ b/test/output/populationByLatitude.svg @@ -1,6 +1,6 @@ diff --git a/test/output/populationByLongitude.svg b/test/output/populationByLongitude.svg index 88a418d208..ba0dfec88f 100644 --- a/test/output/populationByLongitude.svg +++ b/test/output/populationByLongitude.svg @@ -1,6 +1,6 @@ diff --git a/test/output/projectionBleedEdges.svg b/test/output/projectionBleedEdges.svg index 1b18b718c3..8fa4540586 100644 --- a/test/output/projectionBleedEdges.svg +++ b/test/output/projectionBleedEdges.svg @@ -1,6 +1,6 @@ diff --git a/test/output/projectionBleedEdges2.svg b/test/output/projectionBleedEdges2.svg index a1a33005b8..8864826e72 100644 --- a/test/output/projectionBleedEdges2.svg +++ b/test/output/projectionBleedEdges2.svg @@ -1,6 +1,6 @@ diff --git a/test/output/projectionClipAngle.svg b/test/output/projectionClipAngle.svg index 122f3a4305..733c1e87a8 100644 --- a/test/output/projectionClipAngle.svg +++ b/test/output/projectionClipAngle.svg @@ -1,6 +1,6 @@ diff --git a/test/output/projectionClipAngleFrame.svg b/test/output/projectionClipAngleFrame.svg index 9442446cc7..3739bf469f 100644 --- a/test/output/projectionClipAngleFrame.svg +++ b/test/output/projectionClipAngleFrame.svg @@ -1,6 +1,6 @@ diff --git a/test/output/projectionClipBerghaus.svg b/test/output/projectionClipBerghaus.svg index 4878f6c6de..98cba53328 100644 --- a/test/output/projectionClipBerghaus.svg +++ b/test/output/projectionClipBerghaus.svg @@ -1,6 +1,6 @@ diff --git a/test/output/projectionFitAntarctica.svg b/test/output/projectionFitAntarctica.svg index f032b17cdb..e2a7acd770 100644 --- a/test/output/projectionFitAntarctica.svg +++ b/test/output/projectionFitAntarctica.svg @@ -1,6 +1,6 @@ diff --git a/test/output/projectionFitBertin1953.svg b/test/output/projectionFitBertin1953.svg index 8535e9ec28..ab113fe6d2 100644 --- a/test/output/projectionFitBertin1953.svg +++ b/test/output/projectionFitBertin1953.svg @@ -1,6 +1,6 @@ diff --git a/test/output/projectionFitConic.svg b/test/output/projectionFitConic.svg index 80bc48edf2..0ed550f917 100644 --- a/test/output/projectionFitConic.svg +++ b/test/output/projectionFitConic.svg @@ -1,6 +1,6 @@ diff --git a/test/output/projectionFitIdentity.svg b/test/output/projectionFitIdentity.svg index 9415507d60..c70f31dfbf 100644 --- a/test/output/projectionFitIdentity.svg +++ b/test/output/projectionFitIdentity.svg @@ -1,6 +1,6 @@ diff --git a/test/output/projectionFitUsAlbers.svg b/test/output/projectionFitUsAlbers.svg index 99aa6a5276..d5bed70e00 100644 --- a/test/output/projectionFitUsAlbers.svg +++ b/test/output/projectionFitUsAlbers.svg @@ -1,6 +1,6 @@ diff --git a/test/output/projectionHeightAlbers.svg b/test/output/projectionHeightAlbers.svg index 707bdaeeec..b209629533 100644 --- a/test/output/projectionHeightAlbers.svg +++ b/test/output/projectionHeightAlbers.svg @@ -1,6 +1,6 @@ diff --git a/test/output/projectionHeightEqualEarth.svg b/test/output/projectionHeightEqualEarth.svg index 5cf00b9995..fafcb6ae23 100644 --- a/test/output/projectionHeightEqualEarth.svg +++ b/test/output/projectionHeightEqualEarth.svg @@ -1,6 +1,6 @@ diff --git a/test/output/projectionHeightGeometry.svg b/test/output/projectionHeightGeometry.svg index e03dcb35a8..a5fa4c1819 100644 --- a/test/output/projectionHeightGeometry.svg +++ b/test/output/projectionHeightGeometry.svg @@ -1,6 +1,6 @@ diff --git a/test/output/projectionHeightGeometryNull.svg b/test/output/projectionHeightGeometryNull.svg index a143d5b606..f9558be378 100644 --- a/test/output/projectionHeightGeometryNull.svg +++ b/test/output/projectionHeightGeometryNull.svg @@ -1,6 +1,6 @@ diff --git a/test/output/projectionHeightMercator.svg b/test/output/projectionHeightMercator.svg index b7fea24c74..e8a8303ca3 100644 --- a/test/output/projectionHeightMercator.svg +++ b/test/output/projectionHeightMercator.svg @@ -1,6 +1,6 @@ diff --git a/test/output/projectionHeightOrthographic.svg b/test/output/projectionHeightOrthographic.svg index 032a740cfa..ec7b7c9664 100644 --- a/test/output/projectionHeightOrthographic.svg +++ b/test/output/projectionHeightOrthographic.svg @@ -1,6 +1,6 @@ diff --git a/test/output/projectionNull.svg b/test/output/projectionNull.svg index 3625d94be0..9fa5275ef9 100644 --- a/test/output/projectionNull.svg +++ b/test/output/projectionNull.svg @@ -1,6 +1,6 @@ diff --git a/test/output/randomBins.svg b/test/output/randomBins.svg index 22257e017f..b78f9b4db4 100644 --- a/test/output/randomBins.svg +++ b/test/output/randomBins.svg @@ -1,6 +1,6 @@ diff --git a/test/output/randomBinsXY.svg b/test/output/randomBinsXY.svg index 6f3293b540..8209628324 100644 --- a/test/output/randomBinsXY.svg +++ b/test/output/randomBinsXY.svg @@ -1,6 +1,6 @@ diff --git a/test/output/randomQuantile.svg b/test/output/randomQuantile.svg index 19c36deb0b..9b502f8ce8 100644 --- a/test/output/randomQuantile.svg +++ b/test/output/randomQuantile.svg @@ -1,6 +1,6 @@ diff --git a/test/output/randomWalk.svg b/test/output/randomWalk.svg index 0355a72d6b..8eb5b4116b 100644 --- a/test/output/randomWalk.svg +++ b/test/output/randomWalk.svg @@ -1,6 +1,6 @@ diff --git a/test/output/randomWalkCustomMap1.svg b/test/output/randomWalkCustomMap1.svg index 0355a72d6b..8eb5b4116b 100644 --- a/test/output/randomWalkCustomMap1.svg +++ b/test/output/randomWalkCustomMap1.svg @@ -1,6 +1,6 @@ diff --git a/test/output/randomWalkCustomMap2.svg b/test/output/randomWalkCustomMap2.svg index 0355a72d6b..8eb5b4116b 100644 --- a/test/output/randomWalkCustomMap2.svg +++ b/test/output/randomWalkCustomMap2.svg @@ -1,6 +1,6 @@ diff --git a/test/output/randomWalkCustomMap3.svg b/test/output/randomWalkCustomMap3.svg index 0355a72d6b..8eb5b4116b 100644 --- a/test/output/randomWalkCustomMap3.svg +++ b/test/output/randomWalkCustomMap3.svg @@ -1,6 +1,6 @@ diff --git a/test/output/rasterCa55Barycentric.svg b/test/output/rasterCa55Barycentric.svg index 1d843af02c..7f226520fa 100644 --- a/test/output/rasterCa55Barycentric.svg +++ b/test/output/rasterCa55Barycentric.svg @@ -1,6 +1,6 @@ diff --git a/test/output/rasterCa55Color.svg b/test/output/rasterCa55Color.svg index f815fc8d89..91c545d709 100644 --- a/test/output/rasterCa55Color.svg +++ b/test/output/rasterCa55Color.svg @@ -1,6 +1,6 @@ diff --git a/test/output/rasterCa55Nearest.svg b/test/output/rasterCa55Nearest.svg index eddca8bf24..bdba0c9c99 100644 --- a/test/output/rasterCa55Nearest.svg +++ b/test/output/rasterCa55Nearest.svg @@ -1,6 +1,6 @@ diff --git a/test/output/rasterCa55None.svg b/test/output/rasterCa55None.svg index 6ed36a6ca0..f9b766cd65 100644 --- a/test/output/rasterCa55None.svg +++ b/test/output/rasterCa55None.svg @@ -1,6 +1,6 @@ diff --git a/test/output/rasterCa55RandomWalk.svg b/test/output/rasterCa55RandomWalk.svg index 0be275708b..6db26ee85e 100644 --- a/test/output/rasterCa55RandomWalk.svg +++ b/test/output/rasterCa55RandomWalk.svg @@ -1,6 +1,6 @@ diff --git a/test/output/rasterFacet.svg b/test/output/rasterFacet.svg index 9d25d28811..d71f25653e 100644 --- a/test/output/rasterFacet.svg +++ b/test/output/rasterFacet.svg @@ -1,6 +1,6 @@ diff --git a/test/output/rasterPenguinsBarycentric.svg b/test/output/rasterPenguinsBarycentric.svg index 1a9aa4bf7f..2ddee074b0 100644 --- a/test/output/rasterPenguinsBarycentric.svg +++ b/test/output/rasterPenguinsBarycentric.svg @@ -1,6 +1,6 @@ diff --git a/test/output/rasterPenguinsBlur.svg b/test/output/rasterPenguinsBlur.svg index 22ba6b9113..c86a005095 100644 --- a/test/output/rasterPenguinsBlur.svg +++ b/test/output/rasterPenguinsBlur.svg @@ -1,6 +1,6 @@ diff --git a/test/output/rasterPenguinsRandomWalk.svg b/test/output/rasterPenguinsRandomWalk.svg index 646cf8fe43..c73498c148 100644 --- a/test/output/rasterPenguinsRandomWalk.svg +++ b/test/output/rasterPenguinsRandomWalk.svg @@ -1,6 +1,6 @@ diff --git a/test/output/rasterPrecision.svg b/test/output/rasterPrecision.svg index 09e0bac8c9..24aa313df0 100644 --- a/test/output/rasterPrecision.svg +++ b/test/output/rasterPrecision.svg @@ -1,6 +1,6 @@ diff --git a/test/output/rasterVapor.svg b/test/output/rasterVapor.svg index 985f3bfd36..fc5b561bd1 100644 --- a/test/output/rasterVapor.svg +++ b/test/output/rasterVapor.svg @@ -1,6 +1,6 @@ diff --git a/test/output/rasterVapor2.html b/test/output/rasterVapor2.html index a94025ce73..738996d8c2 100644 --- a/test/output/rasterVapor2.html +++ b/test/output/rasterVapor2.html @@ -1,6 +1,6 @@
@@ -33,7 +33,7 @@ diff --git a/test/output/rasterVaporEqualEarth.svg b/test/output/rasterVaporEqualEarth.svg index 924f455a8e..0361454e91 100644 --- a/test/output/rasterVaporEqualEarth.svg +++ b/test/output/rasterVaporEqualEarth.svg @@ -1,6 +1,6 @@ diff --git a/test/output/rasterVaporEqualEarthBarycentric.svg b/test/output/rasterVaporEqualEarthBarycentric.svg index 2e4b0dec71..71241174cd 100644 --- a/test/output/rasterVaporEqualEarthBarycentric.svg +++ b/test/output/rasterVaporEqualEarthBarycentric.svg @@ -1,6 +1,6 @@ diff --git a/test/output/rasterVaporPeters.svg b/test/output/rasterVaporPeters.svg index 2063715a7b..7f1926a8e1 100644 --- a/test/output/rasterVaporPeters.svg +++ b/test/output/rasterVaporPeters.svg @@ -1,6 +1,6 @@ diff --git a/test/output/rasterWalmartBarycentric.svg b/test/output/rasterWalmartBarycentric.svg index 0b5b26ac04..518ce041f5 100644 --- a/test/output/rasterWalmartBarycentric.svg +++ b/test/output/rasterWalmartBarycentric.svg @@ -1,6 +1,6 @@ diff --git a/test/output/rasterWalmartBarycentricOpacity.svg b/test/output/rasterWalmartBarycentricOpacity.svg index 526ab82726..c922759c9e 100644 --- a/test/output/rasterWalmartBarycentricOpacity.svg +++ b/test/output/rasterWalmartBarycentricOpacity.svg @@ -1,6 +1,6 @@ diff --git a/test/output/rasterWalmartRandomWalk.svg b/test/output/rasterWalmartRandomWalk.svg index d893f75b20..6587b20d54 100644 --- a/test/output/rasterWalmartRandomWalk.svg +++ b/test/output/rasterWalmartRandomWalk.svg @@ -1,6 +1,6 @@ diff --git a/test/output/rasterWalmartWalkOpacity.svg b/test/output/rasterWalmartWalkOpacity.svg index c435803885..074c9df0dc 100644 --- a/test/output/rasterWalmartWalkOpacity.svg +++ b/test/output/rasterWalmartWalkOpacity.svg @@ -1,6 +1,6 @@ diff --git a/test/output/rectBand.svg b/test/output/rectBand.svg index 0124108fa4..4617390b6b 100644 --- a/test/output/rectBand.svg +++ b/test/output/rectBand.svg @@ -1,6 +1,6 @@ diff --git a/test/output/rectBandX.svg b/test/output/rectBandX.svg index 0dbc0ff909..2d44293499 100644 --- a/test/output/rectBandX.svg +++ b/test/output/rectBandX.svg @@ -1,6 +1,6 @@ diff --git a/test/output/rectBandX1.svg b/test/output/rectBandX1.svg index 1352af63ee..c78209e11d 100644 --- a/test/output/rectBandX1.svg +++ b/test/output/rectBandX1.svg @@ -1,6 +1,6 @@ diff --git a/test/output/rectBandY.svg b/test/output/rectBandY.svg index f8af281c9a..bb1171c4f6 100644 --- a/test/output/rectBandY.svg +++ b/test/output/rectBandY.svg @@ -1,6 +1,6 @@ diff --git a/test/output/rectPointX1.svg b/test/output/rectPointX1.svg index 070ba05d46..d5d2799cfb 100644 --- a/test/output/rectPointX1.svg +++ b/test/output/rectPointX1.svg @@ -1,6 +1,6 @@ diff --git a/test/output/reducerScaleOverrideFunction.svg b/test/output/reducerScaleOverrideFunction.svg index 0d7b9a63d1..20321213d0 100644 --- a/test/output/reducerScaleOverrideFunction.svg +++ b/test/output/reducerScaleOverrideFunction.svg @@ -1,6 +1,6 @@ diff --git a/test/output/reducerScaleOverrideImplementation.svg b/test/output/reducerScaleOverrideImplementation.svg index 0d7b9a63d1..20321213d0 100644 --- a/test/output/reducerScaleOverrideImplementation.svg +++ b/test/output/reducerScaleOverrideImplementation.svg @@ -1,6 +1,6 @@ diff --git a/test/output/reducerScaleOverrideName.svg b/test/output/reducerScaleOverrideName.svg index 0d7b9a63d1..20321213d0 100644 --- a/test/output/reducerScaleOverrideName.svg +++ b/test/output/reducerScaleOverrideName.svg @@ -1,6 +1,6 @@ diff --git a/test/output/seattlePrecipitationDensity.svg b/test/output/seattlePrecipitationDensity.svg index e3f97f667a..8d5568595a 100644 --- a/test/output/seattlePrecipitationDensity.svg +++ b/test/output/seattlePrecipitationDensity.svg @@ -1,6 +1,6 @@ diff --git a/test/output/seattlePrecipitationRule.svg b/test/output/seattlePrecipitationRule.svg index f71868f4e0..8730a71ef1 100644 --- a/test/output/seattlePrecipitationRule.svg +++ b/test/output/seattlePrecipitationRule.svg @@ -1,6 +1,6 @@ diff --git a/test/output/seattlePrecipitationSum.svg b/test/output/seattlePrecipitationSum.svg index 15a0f57307..ae31b1a1d5 100644 --- a/test/output/seattlePrecipitationSum.svg +++ b/test/output/seattlePrecipitationSum.svg @@ -1,6 +1,6 @@ diff --git a/test/output/seattleTemperatureAmplitude.html b/test/output/seattleTemperatureAmplitude.html index e2a3117981..afc4ee8723 100644 --- a/test/output/seattleTemperatureAmplitude.html +++ b/test/output/seattleTemperatureAmplitude.html @@ -1,6 +1,6 @@
@@ -41,7 +41,7 @@ diff --git a/test/output/seattleTemperatureBand.svg b/test/output/seattleTemperatureBand.svg index 2995bf637e..e7ae5a6f41 100644 --- a/test/output/seattleTemperatureBand.svg +++ b/test/output/seattleTemperatureBand.svg @@ -1,6 +1,6 @@ diff --git a/test/output/seattleTemperatureCell.svg b/test/output/seattleTemperatureCell.svg index 4b0ec28839..f7771a3000 100644 --- a/test/output/seattleTemperatureCell.svg +++ b/test/output/seattleTemperatureCell.svg @@ -1,6 +1,6 @@ diff --git a/test/output/sfCovidDeaths.svg b/test/output/sfCovidDeaths.svg index fe3d79a79c..259e596a0d 100644 --- a/test/output/sfCovidDeaths.svg +++ b/test/output/sfCovidDeaths.svg @@ -1,6 +1,6 @@ diff --git a/test/output/sfTemperatureBand.svg b/test/output/sfTemperatureBand.svg index 2799d78ac1..bf03245de6 100644 --- a/test/output/sfTemperatureBand.svg +++ b/test/output/sfTemperatureBand.svg @@ -1,6 +1,6 @@ diff --git a/test/output/sfTemperatureBandArea.svg b/test/output/sfTemperatureBandArea.svg index a2f6a270f8..1086b3cd51 100644 --- a/test/output/sfTemperatureBandArea.svg +++ b/test/output/sfTemperatureBandArea.svg @@ -1,6 +1,6 @@ diff --git a/test/output/sfTemperatureWindow.svg b/test/output/sfTemperatureWindow.svg index 51c7d9ec9c..61e4c30cbc 100644 --- a/test/output/sfTemperatureWindow.svg +++ b/test/output/sfTemperatureWindow.svg @@ -1,6 +1,6 @@ diff --git a/test/output/shiftX.svg b/test/output/shiftX.svg index e38f76da7c..b6e9a3be39 100644 --- a/test/output/shiftX.svg +++ b/test/output/shiftX.svg @@ -1,6 +1,6 @@ diff --git a/test/output/shorthandArea.svg b/test/output/shorthandArea.svg index db09dc4ed0..545b61f2c0 100644 --- a/test/output/shorthandArea.svg +++ b/test/output/shorthandArea.svg @@ -1,6 +1,6 @@ diff --git a/test/output/shorthandAreaY.svg b/test/output/shorthandAreaY.svg index 5b7d104b83..7bc91fbd64 100644 --- a/test/output/shorthandAreaY.svg +++ b/test/output/shorthandAreaY.svg @@ -1,6 +1,6 @@ diff --git a/test/output/shorthandBarY.svg b/test/output/shorthandBarY.svg index 60b79a6fe1..b9d9e63d9b 100644 --- a/test/output/shorthandBarY.svg +++ b/test/output/shorthandBarY.svg @@ -1,6 +1,6 @@ diff --git a/test/output/shorthandBinRectY.svg b/test/output/shorthandBinRectY.svg index 8bdab40be6..bbacd4c2ff 100644 --- a/test/output/shorthandBinRectY.svg +++ b/test/output/shorthandBinRectY.svg @@ -1,6 +1,6 @@ diff --git a/test/output/shorthandBoxX.svg b/test/output/shorthandBoxX.svg index 5293fe0069..af61ed59ef 100644 --- a/test/output/shorthandBoxX.svg +++ b/test/output/shorthandBoxX.svg @@ -1,6 +1,6 @@ diff --git a/test/output/shorthandCell.svg b/test/output/shorthandCell.svg index b5c98f895f..a2cad6015f 100644 --- a/test/output/shorthandCell.svg +++ b/test/output/shorthandCell.svg @@ -1,6 +1,6 @@ diff --git a/test/output/shorthandCellCategorical.svg b/test/output/shorthandCellCategorical.svg index 25276ad530..44622291fc 100644 --- a/test/output/shorthandCellCategorical.svg +++ b/test/output/shorthandCellCategorical.svg @@ -1,6 +1,6 @@ diff --git a/test/output/shorthandCellX.svg b/test/output/shorthandCellX.svg index 87dce2f8a6..82a979d059 100644 --- a/test/output/shorthandCellX.svg +++ b/test/output/shorthandCellX.svg @@ -1,6 +1,6 @@ diff --git a/test/output/shorthandDot.svg b/test/output/shorthandDot.svg index cbf90cf69f..c80301d9ad 100644 --- a/test/output/shorthandDot.svg +++ b/test/output/shorthandDot.svg @@ -1,6 +1,6 @@ diff --git a/test/output/shorthandDotX.svg b/test/output/shorthandDotX.svg index fbcdd8ee78..8ca0368f04 100644 --- a/test/output/shorthandDotX.svg +++ b/test/output/shorthandDotX.svg @@ -1,6 +1,6 @@ diff --git a/test/output/shorthandGroupBarY.svg b/test/output/shorthandGroupBarY.svg index 7c63b60ae2..b06c1a9e50 100644 --- a/test/output/shorthandGroupBarY.svg +++ b/test/output/shorthandGroupBarY.svg @@ -1,6 +1,6 @@ diff --git a/test/output/shorthandLine.svg b/test/output/shorthandLine.svg index 846ee62286..e622741249 100644 --- a/test/output/shorthandLine.svg +++ b/test/output/shorthandLine.svg @@ -1,6 +1,6 @@ diff --git a/test/output/shorthandLineY.svg b/test/output/shorthandLineY.svg index f44e182ce0..cbc3cc9a81 100644 --- a/test/output/shorthandLineY.svg +++ b/test/output/shorthandLineY.svg @@ -1,6 +1,6 @@ diff --git a/test/output/shorthandLineYWindow.svg b/test/output/shorthandLineYWindow.svg index 9643f9629a..76be28f392 100644 --- a/test/output/shorthandLineYWindow.svg +++ b/test/output/shorthandLineYWindow.svg @@ -1,6 +1,6 @@ diff --git a/test/output/shorthandRectY.svg b/test/output/shorthandRectY.svg index 33277826ac..8bce89e7b3 100644 --- a/test/output/shorthandRectY.svg +++ b/test/output/shorthandRectY.svg @@ -1,6 +1,6 @@ diff --git a/test/output/shorthandRuleX.svg b/test/output/shorthandRuleX.svg index 0aa455a138..3d736461e2 100644 --- a/test/output/shorthandRuleX.svg +++ b/test/output/shorthandRuleX.svg @@ -1,6 +1,6 @@ diff --git a/test/output/shorthandText.svg b/test/output/shorthandText.svg index e11d6773b6..bb60a6ebc4 100644 --- a/test/output/shorthandText.svg +++ b/test/output/shorthandText.svg @@ -1,6 +1,6 @@ diff --git a/test/output/shorthandTextX.svg b/test/output/shorthandTextX.svg index 500dd68205..903b2a6ac8 100644 --- a/test/output/shorthandTextX.svg +++ b/test/output/shorthandTextX.svg @@ -1,6 +1,6 @@ diff --git a/test/output/shorthandTickX.svg b/test/output/shorthandTickX.svg index 9ee048f90d..509663d22b 100644 --- a/test/output/shorthandTickX.svg +++ b/test/output/shorthandTickX.svg @@ -1,6 +1,6 @@ diff --git a/test/output/shorthandVector.svg b/test/output/shorthandVector.svg index f69773ea12..7c73ebf8ba 100644 --- a/test/output/shorthandVector.svg +++ b/test/output/shorthandVector.svg @@ -1,6 +1,6 @@ diff --git a/test/output/shorthandVectorX.svg b/test/output/shorthandVectorX.svg index 88e44d85fd..8d336a350d 100644 --- a/test/output/shorthandVectorX.svg +++ b/test/output/shorthandVectorX.svg @@ -1,6 +1,6 @@ diff --git a/test/output/simpsonsRatings.svg b/test/output/simpsonsRatings.svg index 94cc3e54fd..c8b425347b 100644 --- a/test/output/simpsonsRatings.svg +++ b/test/output/simpsonsRatings.svg @@ -1,6 +1,6 @@ diff --git a/test/output/simpsonsRatingsDots.svg b/test/output/simpsonsRatingsDots.svg index ff3da29efb..134e363947 100644 --- a/test/output/simpsonsRatingsDots.svg +++ b/test/output/simpsonsRatingsDots.svg @@ -1,6 +1,6 @@ diff --git a/test/output/simpsonsViews.html b/test/output/simpsonsViews.html index cfd14496d3..e9a17d96e5 100644 --- a/test/output/simpsonsViews.html +++ b/test/output/simpsonsViews.html @@ -1,6 +1,6 @@
@@ -45,7 +45,7 @@ season diff --git a/test/output/singleValueBar.svg b/test/output/singleValueBar.svg index 254f9671d9..6c222df36a 100644 --- a/test/output/singleValueBar.svg +++ b/test/output/singleValueBar.svg @@ -1,6 +1,6 @@ diff --git a/test/output/singleValueBin.svg b/test/output/singleValueBin.svg index afb8466be4..9c33e3ad8d 100644 --- a/test/output/singleValueBin.svg +++ b/test/output/singleValueBin.svg @@ -1,6 +1,6 @@ diff --git a/test/output/softwareVersions.svg b/test/output/softwareVersions.svg index 92179db22f..62f344d30e 100644 --- a/test/output/softwareVersions.svg +++ b/test/output/softwareVersions.svg @@ -1,6 +1,6 @@ diff --git a/test/output/sparseCell.svg b/test/output/sparseCell.svg index da5b1bf0b3..b0080c5bb8 100644 --- a/test/output/sparseCell.svg +++ b/test/output/sparseCell.svg @@ -1,6 +1,6 @@ diff --git a/test/output/sparseTitle.svg b/test/output/sparseTitle.svg index 2ef7b57eee..03f3e620c9 100644 --- a/test/output/sparseTitle.svg +++ b/test/output/sparseTitle.svg @@ -1,6 +1,6 @@ diff --git a/test/output/sparseTitleTip.svg b/test/output/sparseTitleTip.svg index bd95e9172e..39823e020f 100644 --- a/test/output/sparseTitleTip.svg +++ b/test/output/sparseTitleTip.svg @@ -1,6 +1,6 @@ diff --git a/test/output/stackedBar.svg b/test/output/stackedBar.svg index 56f024b66e..f05d0c1768 100644 --- a/test/output/stackedBar.svg +++ b/test/output/stackedBar.svg @@ -1,6 +1,6 @@ diff --git a/test/output/stackedRect.svg b/test/output/stackedRect.svg index 344d166bfb..7c856bd41e 100644 --- a/test/output/stackedRect.svg +++ b/test/output/stackedRect.svg @@ -1,6 +1,6 @@ diff --git a/test/output/stargazers.svg b/test/output/stargazers.svg index c1e2d1c48c..de63684448 100644 --- a/test/output/stargazers.svg +++ b/test/output/stargazers.svg @@ -1,6 +1,6 @@ diff --git a/test/output/stargazersBinned.svg b/test/output/stargazersBinned.svg index 021a059967..4669ca2815 100644 --- a/test/output/stargazersBinned.svg +++ b/test/output/stargazersBinned.svg @@ -1,6 +1,6 @@ diff --git a/test/output/stargazersHourly.svg b/test/output/stargazersHourly.svg index 000b15de68..77d2a60b29 100644 --- a/test/output/stargazersHourly.svg +++ b/test/output/stargazersHourly.svg @@ -1,6 +1,6 @@ diff --git a/test/output/stargazersHourlyGroup.svg b/test/output/stargazersHourlyGroup.svg index 1c33807b84..540f666c15 100644 --- a/test/output/stargazersHourlyGroup.svg +++ b/test/output/stargazersHourlyGroup.svg @@ -1,6 +1,6 @@ diff --git a/test/output/stocksIndex.svg b/test/output/stocksIndex.svg index ef7c18e4b6..385a56dbdb 100644 --- a/test/output/stocksIndex.svg +++ b/test/output/stocksIndex.svg @@ -1,6 +1,6 @@ diff --git a/test/output/styleOverrideLegendCategorical.html b/test/output/styleOverrideLegendCategorical.html new file mode 100644 index 0000000000..949a1fdcbc --- /dev/null +++ b/test/output/styleOverrideLegendCategorical.html @@ -0,0 +1,103 @@ +
+ +
+ + + A + + B + + C + + D + + E + + F + + G + + H + + I + + J +
+
+ + + A + + B + + C + + D + + E + + F + + G + + H + + I + + J +
+
\ No newline at end of file diff --git a/test/output/symbolLegendBasic.html b/test/output/symbolLegendBasic.html index 0027f02e6e..869f357093 100644 --- a/test/output/symbolLegendBasic.html +++ b/test/output/symbolLegendBasic.html @@ -1,24 +1,24 @@
diff --git a/test/output/symbolSetFillColor.html b/test/output/symbolSetFillColor.html index bc6894d793..06236c292c 100644 --- a/test/output/symbolSetFillColor.html +++ b/test/output/symbolSetFillColor.html @@ -1,25 +1,25 @@
diff --git a/test/output/symbolSetStroke.svg b/test/output/symbolSetStroke.svg index dd3144d0d3..99759daf20 100644 --- a/test/output/symbolSetStroke.svg +++ b/test/output/symbolSetStroke.svg @@ -1,6 +1,6 @@ diff --git a/test/output/symbolSetStrokeColor.html b/test/output/symbolSetStrokeColor.html index ee56b8531f..56a4bad7de 100644 --- a/test/output/symbolSetStrokeColor.html +++ b/test/output/symbolSetStrokeColor.html @@ -1,25 +1,25 @@
diff --git a/test/output/textOverflow.svg b/test/output/textOverflow.svg index 9474e93c3c..76109f5c0a 100644 --- a/test/output/textOverflow.svg +++ b/test/output/textOverflow.svg @@ -1,6 +1,6 @@ diff --git a/test/output/textOverflowClip.svg b/test/output/textOverflowClip.svg index 819a067109..60fbaf0f8e 100644 --- a/test/output/textOverflowClip.svg +++ b/test/output/textOverflowClip.svg @@ -1,6 +1,6 @@ diff --git a/test/output/textOverflowEllipsis.svg b/test/output/textOverflowEllipsis.svg index 4d1e323467..65e3dca672 100644 --- a/test/output/textOverflowEllipsis.svg +++ b/test/output/textOverflowEllipsis.svg @@ -1,6 +1,6 @@ diff --git a/test/output/textOverflowMonospace.svg b/test/output/textOverflowMonospace.svg index af8942533f..eba118ceef 100644 --- a/test/output/textOverflowMonospace.svg +++ b/test/output/textOverflowMonospace.svg @@ -1,6 +1,6 @@ diff --git a/test/output/textOverflowNone.svg b/test/output/textOverflowNone.svg index 718ada45d6..dbbd943d98 100644 --- a/test/output/textOverflowNone.svg +++ b/test/output/textOverflowNone.svg @@ -1,6 +1,6 @@ diff --git a/test/output/thisIsJustToSay.svg b/test/output/thisIsJustToSay.svg index f9d33c9819..270f7a7b2b 100644 --- a/test/output/thisIsJustToSay.svg +++ b/test/output/thisIsJustToSay.svg @@ -1,6 +1,6 @@ diff --git a/test/output/timeAxisBottom.svg b/test/output/timeAxisBottom.svg index 1fbb49ac39..38df613a92 100644 --- a/test/output/timeAxisBottom.svg +++ b/test/output/timeAxisBottom.svg @@ -1,7 +1,7 @@ @@ -56,7 +56,7 @@ @@ -111,7 +111,7 @@ @@ -166,7 +166,7 @@ @@ -227,7 +227,7 @@ @@ -276,7 +276,7 @@ @@ -325,7 +325,7 @@ @@ -380,7 +380,7 @@ @@ -441,7 +441,7 @@ @@ -496,7 +496,7 @@ @@ -551,7 +551,7 @@ @@ -606,7 +606,7 @@ @@ -661,7 +661,7 @@ @@ -713,7 +713,7 @@ @@ -762,7 +762,7 @@ @@ -811,7 +811,7 @@ @@ -854,7 +854,7 @@ @@ -909,7 +909,7 @@ @@ -967,7 +967,7 @@ @@ -1031,7 +1031,7 @@ @@ -1092,7 +1092,7 @@ @@ -1153,7 +1153,7 @@ @@ -1214,7 +1214,7 @@ @@ -1275,7 +1275,7 @@ @@ -1330,7 +1330,7 @@ diff --git a/test/output/timeAxisExplicitInterval.svg b/test/output/timeAxisExplicitInterval.svg index 527c781f2a..15cec1ca15 100644 --- a/test/output/timeAxisExplicitInterval.svg +++ b/test/output/timeAxisExplicitInterval.svg @@ -1,6 +1,6 @@ diff --git a/test/output/timeAxisExplicitNonstandardInterval.svg b/test/output/timeAxisExplicitNonstandardInterval.svg index 0590ec9dc8..e3f7589fa2 100644 --- a/test/output/timeAxisExplicitNonstandardInterval.svg +++ b/test/output/timeAxisExplicitNonstandardInterval.svg @@ -1,6 +1,6 @@ diff --git a/test/output/timeAxisExplicitNonstandardIntervalTicks.svg b/test/output/timeAxisExplicitNonstandardIntervalTicks.svg index 563a91071c..ebf831fc57 100644 --- a/test/output/timeAxisExplicitNonstandardIntervalTicks.svg +++ b/test/output/timeAxisExplicitNonstandardIntervalTicks.svg @@ -1,6 +1,6 @@ diff --git a/test/output/timeAxisLeft.svg b/test/output/timeAxisLeft.svg index e301f43f8b..00f94bd3f0 100644 --- a/test/output/timeAxisLeft.svg +++ b/test/output/timeAxisLeft.svg @@ -1,7 +1,7 @@ @@ -56,7 +56,7 @@ @@ -117,7 +117,7 @@ @@ -172,7 +172,7 @@ @@ -227,7 +227,7 @@ @@ -279,7 +279,7 @@ @@ -340,7 +340,7 @@ @@ -404,7 +404,7 @@ @@ -465,7 +465,7 @@ diff --git a/test/output/timeAxisLocal.svg b/test/output/timeAxisLocal.svg index 8edfb82186..0b4b7c2d0d 100644 --- a/test/output/timeAxisLocal.svg +++ b/test/output/timeAxisLocal.svg @@ -1,6 +1,6 @@ diff --git a/test/output/timeAxisOrdinal.svg b/test/output/timeAxisOrdinal.svg index 6aa0081710..39939d3dfa 100644 --- a/test/output/timeAxisOrdinal.svg +++ b/test/output/timeAxisOrdinal.svg @@ -1,6 +1,6 @@ diff --git a/test/output/timeAxisOrdinalSparseInterval.svg b/test/output/timeAxisOrdinalSparseInterval.svg index f98b0714e2..1f06162fb5 100644 --- a/test/output/timeAxisOrdinalSparseInterval.svg +++ b/test/output/timeAxisOrdinalSparseInterval.svg @@ -1,6 +1,6 @@ diff --git a/test/output/timeAxisOrdinalSparseTicks.svg b/test/output/timeAxisOrdinalSparseTicks.svg index 4eb4f76cf5..c2207064cc 100644 --- a/test/output/timeAxisOrdinalSparseTicks.svg +++ b/test/output/timeAxisOrdinalSparseTicks.svg @@ -1,6 +1,6 @@ diff --git a/test/output/timeAxisOrdinalTicks.svg b/test/output/timeAxisOrdinalTicks.svg index cdac104405..36a450bb2e 100644 --- a/test/output/timeAxisOrdinalTicks.svg +++ b/test/output/timeAxisOrdinalTicks.svg @@ -1,6 +1,6 @@ diff --git a/test/output/timeAxisRight.svg b/test/output/timeAxisRight.svg index 4d092808a1..272b4d316c 100644 --- a/test/output/timeAxisRight.svg +++ b/test/output/timeAxisRight.svg @@ -1,7 +1,7 @@ @@ -56,7 +56,7 @@ @@ -117,7 +117,7 @@ @@ -172,7 +172,7 @@ @@ -227,7 +227,7 @@ @@ -279,7 +279,7 @@ @@ -340,7 +340,7 @@ @@ -404,7 +404,7 @@ @@ -465,7 +465,7 @@ diff --git a/test/output/timeAxisTop.svg b/test/output/timeAxisTop.svg index c9e189322c..0e1ea837e3 100644 --- a/test/output/timeAxisTop.svg +++ b/test/output/timeAxisTop.svg @@ -1,7 +1,7 @@ @@ -56,7 +56,7 @@ @@ -111,7 +111,7 @@ @@ -166,7 +166,7 @@ @@ -227,7 +227,7 @@ @@ -276,7 +276,7 @@ @@ -325,7 +325,7 @@ @@ -380,7 +380,7 @@ @@ -441,7 +441,7 @@ @@ -496,7 +496,7 @@ @@ -551,7 +551,7 @@ @@ -606,7 +606,7 @@ @@ -661,7 +661,7 @@ @@ -713,7 +713,7 @@ @@ -762,7 +762,7 @@ @@ -811,7 +811,7 @@ @@ -854,7 +854,7 @@ @@ -909,7 +909,7 @@ @@ -967,7 +967,7 @@ @@ -1031,7 +1031,7 @@ @@ -1092,7 +1092,7 @@ @@ -1153,7 +1153,7 @@ @@ -1214,7 +1214,7 @@ @@ -1275,7 +1275,7 @@ @@ -1330,7 +1330,7 @@ diff --git a/test/output/tipAreaBand.svg b/test/output/tipAreaBand.svg index b4b3763731..534e72567c 100644 --- a/test/output/tipAreaBand.svg +++ b/test/output/tipAreaBand.svg @@ -1,6 +1,6 @@ diff --git a/test/output/tipAreaStack.svg b/test/output/tipAreaStack.svg index 3a2510763a..07a4084a35 100644 --- a/test/output/tipAreaStack.svg +++ b/test/output/tipAreaStack.svg @@ -1,6 +1,6 @@ diff --git a/test/output/tipBar.svg b/test/output/tipBar.svg index 4d9a4050e1..fa3f011951 100644 --- a/test/output/tipBar.svg +++ b/test/output/tipBar.svg @@ -1,6 +1,6 @@ diff --git a/test/output/tipBin.svg b/test/output/tipBin.svg index fb02db3a28..dbac97ea48 100644 --- a/test/output/tipBin.svg +++ b/test/output/tipBin.svg @@ -1,6 +1,6 @@ diff --git a/test/output/tipBinStack.svg b/test/output/tipBinStack.svg index 1002f95457..e5fccf3d2e 100644 --- a/test/output/tipBinStack.svg +++ b/test/output/tipBinStack.svg @@ -1,6 +1,6 @@ diff --git a/test/output/tipCell.svg b/test/output/tipCell.svg index 1596a920bd..1e2f7c6e45 100644 --- a/test/output/tipCell.svg +++ b/test/output/tipCell.svg @@ -1,6 +1,6 @@ diff --git a/test/output/tipCellFacet.svg b/test/output/tipCellFacet.svg index c4ae9832ad..24ee381742 100644 --- a/test/output/tipCellFacet.svg +++ b/test/output/tipCellFacet.svg @@ -1,6 +1,6 @@ diff --git a/test/output/tipDodge.svg b/test/output/tipDodge.svg index 26ab361867..67c7d53ced 100644 --- a/test/output/tipDodge.svg +++ b/test/output/tipDodge.svg @@ -1,6 +1,6 @@ diff --git a/test/output/tipDot.svg b/test/output/tipDot.svg index a656d2155e..9e3c80c0b0 100644 --- a/test/output/tipDot.svg +++ b/test/output/tipDot.svg @@ -1,6 +1,6 @@ diff --git a/test/output/tipDotFacets.svg b/test/output/tipDotFacets.svg index 45324e39d2..982924e1b8 100644 --- a/test/output/tipDotFacets.svg +++ b/test/output/tipDotFacets.svg @@ -1,6 +1,6 @@ diff --git a/test/output/tipDotFilter.svg b/test/output/tipDotFilter.svg index 5f0eba3e15..8ac71007ca 100644 --- a/test/output/tipDotFilter.svg +++ b/test/output/tipDotFilter.svg @@ -1,6 +1,6 @@ diff --git a/test/output/tipDotX.svg b/test/output/tipDotX.svg index 42a94310ff..ea0779333c 100644 --- a/test/output/tipDotX.svg +++ b/test/output/tipDotX.svg @@ -1,6 +1,6 @@ diff --git a/test/output/tipFacetX.svg b/test/output/tipFacetX.svg index 4a9abb6e85..71d886d727 100644 --- a/test/output/tipFacetX.svg +++ b/test/output/tipFacetX.svg @@ -1,6 +1,6 @@ diff --git a/test/output/tipFormatChannels.svg b/test/output/tipFormatChannels.svg index d246f1f85c..2b0c9f2680 100644 --- a/test/output/tipFormatChannels.svg +++ b/test/output/tipFormatChannels.svg @@ -1,6 +1,6 @@ diff --git a/test/output/tipFormatFacet.svg b/test/output/tipFormatFacet.svg index 93972413ae..4efc6a4437 100644 --- a/test/output/tipFormatFacet.svg +++ b/test/output/tipFormatFacet.svg @@ -1,6 +1,6 @@ diff --git a/test/output/tipFormatFacetFalse.svg b/test/output/tipFormatFacetFalse.svg index 5b9baa0012..90140c8631 100644 --- a/test/output/tipFormatFacetFalse.svg +++ b/test/output/tipFormatFacetFalse.svg @@ -1,6 +1,6 @@ diff --git a/test/output/tipFormatFacetFormat.svg b/test/output/tipFormatFacetFormat.svg index 5d8f9fb17a..4f84ab92ef 100644 --- a/test/output/tipFormatFacetFormat.svg +++ b/test/output/tipFormatFacetFormat.svg @@ -1,6 +1,6 @@ diff --git a/test/output/tipFormatFacetFormatDefaultDay.svg b/test/output/tipFormatFacetFormatDefaultDay.svg index 6ae8141f45..ddb915f54b 100644 --- a/test/output/tipFormatFacetFormatDefaultDay.svg +++ b/test/output/tipFormatFacetFormatDefaultDay.svg @@ -1,6 +1,6 @@ diff --git a/test/output/tipFormatFacetFormatDefaultHour.svg b/test/output/tipFormatFacetFormatDefaultHour.svg index 31e31e2f6a..dd611feee5 100644 --- a/test/output/tipFormatFacetFormatDefaultHour.svg +++ b/test/output/tipFormatFacetFormatDefaultHour.svg @@ -1,6 +1,6 @@ diff --git a/test/output/tipFormatFacetFormatDefaultYear.svg b/test/output/tipFormatFacetFormatDefaultYear.svg index 7cce632268..7a9307e7d1 100644 --- a/test/output/tipFormatFacetFormatDefaultYear.svg +++ b/test/output/tipFormatFacetFormatDefaultYear.svg @@ -1,6 +1,6 @@ diff --git a/test/output/tipFormatFacetLabel.svg b/test/output/tipFormatFacetLabel.svg index 61ee84b19a..2de463a44a 100644 --- a/test/output/tipFormatFacetLabel.svg +++ b/test/output/tipFormatFacetLabel.svg @@ -1,6 +1,6 @@ diff --git a/test/output/tipFormatFunction.svg b/test/output/tipFormatFunction.svg index d7b631f109..8d1d54dbb5 100644 --- a/test/output/tipFormatFunction.svg +++ b/test/output/tipFormatFunction.svg @@ -1,6 +1,6 @@ diff --git a/test/output/tipFormatNull.svg b/test/output/tipFormatNull.svg index 7f561cac7e..dee39dd934 100644 --- a/test/output/tipFormatNull.svg +++ b/test/output/tipFormatNull.svg @@ -1,6 +1,6 @@ diff --git a/test/output/tipFormatPaired.svg b/test/output/tipFormatPaired.svg index de3204ac3c..2c9b1239e2 100644 --- a/test/output/tipFormatPaired.svg +++ b/test/output/tipFormatPaired.svg @@ -1,6 +1,6 @@ diff --git a/test/output/tipFormatPairedFormat.svg b/test/output/tipFormatPairedFormat.svg index d5a5917fdf..bfde39cddb 100644 --- a/test/output/tipFormatPairedFormat.svg +++ b/test/output/tipFormatPairedFormat.svg @@ -1,6 +1,6 @@ diff --git a/test/output/tipFormatPairedLabel.svg b/test/output/tipFormatPairedLabel.svg index 0cb847669f..9af450aeb3 100644 --- a/test/output/tipFormatPairedLabel.svg +++ b/test/output/tipFormatPairedLabel.svg @@ -1,6 +1,6 @@ diff --git a/test/output/tipFormatPairedLabelChannel.svg b/test/output/tipFormatPairedLabelChannel.svg index d56335afe7..1bcb593e73 100644 --- a/test/output/tipFormatPairedLabelChannel.svg +++ b/test/output/tipFormatPairedLabelChannel.svg @@ -1,6 +1,6 @@ diff --git a/test/output/tipFormatPairedLabelScale.svg b/test/output/tipFormatPairedLabelScale.svg index a1a9546554..54f8e1058c 100644 --- a/test/output/tipFormatPairedLabelScale.svg +++ b/test/output/tipFormatPairedLabelScale.svg @@ -1,6 +1,6 @@ diff --git a/test/output/tipFormatPairedPartial.svg b/test/output/tipFormatPairedPartial.svg index 0edd913af0..75a575c8c1 100644 --- a/test/output/tipFormatPairedPartial.svg +++ b/test/output/tipFormatPairedPartial.svg @@ -1,6 +1,6 @@ diff --git a/test/output/tipFormatPriority1.svg b/test/output/tipFormatPriority1.svg index b2fdd57a81..a4a03421c1 100644 --- a/test/output/tipFormatPriority1.svg +++ b/test/output/tipFormatPriority1.svg @@ -1,6 +1,6 @@ diff --git a/test/output/tipFormatPriority2.svg b/test/output/tipFormatPriority2.svg index ce4e840d62..709523fdff 100644 --- a/test/output/tipFormatPriority2.svg +++ b/test/output/tipFormatPriority2.svg @@ -1,6 +1,6 @@ diff --git a/test/output/tipFormatPriorityDefault.svg b/test/output/tipFormatPriorityDefault.svg index 88d7c925d8..527863fc19 100644 --- a/test/output/tipFormatPriorityDefault.svg +++ b/test/output/tipFormatPriorityDefault.svg @@ -1,6 +1,6 @@ diff --git a/test/output/tipFormatPriorityPaired.svg b/test/output/tipFormatPriorityPaired.svg index ed683bf80c..8a2d415df1 100644 --- a/test/output/tipFormatPriorityPaired.svg +++ b/test/output/tipFormatPriorityPaired.svg @@ -1,6 +1,6 @@ diff --git a/test/output/tipFormatPriorityPaired2.svg b/test/output/tipFormatPriorityPaired2.svg index cbae8cf9a1..ff866d45d1 100644 --- a/test/output/tipFormatPriorityPaired2.svg +++ b/test/output/tipFormatPriorityPaired2.svg @@ -1,6 +1,6 @@ diff --git a/test/output/tipFormatStringDate.svg b/test/output/tipFormatStringDate.svg index 84b0fa84c2..43d013593e 100644 --- a/test/output/tipFormatStringDate.svg +++ b/test/output/tipFormatStringDate.svg @@ -1,6 +1,6 @@ diff --git a/test/output/tipFormatStringNumber.svg b/test/output/tipFormatStringNumber.svg index d7b631f109..8d1d54dbb5 100644 --- a/test/output/tipFormatStringNumber.svg +++ b/test/output/tipFormatStringNumber.svg @@ -1,6 +1,6 @@ diff --git a/test/output/tipFormatTitleExplicit.svg b/test/output/tipFormatTitleExplicit.svg index c20f7b87ca..908df098b1 100644 --- a/test/output/tipFormatTitleExplicit.svg +++ b/test/output/tipFormatTitleExplicit.svg @@ -1,6 +1,6 @@ diff --git a/test/output/tipFormatTitleIgnoreFormat.svg b/test/output/tipFormatTitleIgnoreFormat.svg index d96e8c63f6..c38effc636 100644 --- a/test/output/tipFormatTitleIgnoreFormat.svg +++ b/test/output/tipFormatTitleIgnoreFormat.svg @@ -1,6 +1,6 @@ diff --git a/test/output/tipFormatTitlePrimitive.svg b/test/output/tipFormatTitlePrimitive.svg index bdc50ed840..56f17f53a8 100644 --- a/test/output/tipFormatTitlePrimitive.svg +++ b/test/output/tipFormatTitlePrimitive.svg @@ -1,6 +1,6 @@ diff --git a/test/output/tipGeoCentroid.svg b/test/output/tipGeoCentroid.svg index 1800c3ab77..c06112219f 100644 --- a/test/output/tipGeoCentroid.svg +++ b/test/output/tipGeoCentroid.svg @@ -1,6 +1,6 @@ diff --git a/test/output/tipGeoNoProjection.svg b/test/output/tipGeoNoProjection.svg index c881789433..ccdd976ecf 100644 --- a/test/output/tipGeoNoProjection.svg +++ b/test/output/tipGeoNoProjection.svg @@ -1,6 +1,6 @@ diff --git a/test/output/tipGeoProjection.svg b/test/output/tipGeoProjection.svg index 86b85edbd0..0c621d229e 100644 --- a/test/output/tipGeoProjection.svg +++ b/test/output/tipGeoProjection.svg @@ -1,6 +1,6 @@ diff --git a/test/output/tipGroupPrimitives.svg b/test/output/tipGroupPrimitives.svg index e5c8988f7f..3441cf3017 100644 --- a/test/output/tipGroupPrimitives.svg +++ b/test/output/tipGroupPrimitives.svg @@ -1,6 +1,6 @@ diff --git a/test/output/tipHexbin.svg b/test/output/tipHexbin.svg index 5e4d44bcd7..3023ee3a6b 100644 --- a/test/output/tipHexbin.svg +++ b/test/output/tipHexbin.svg @@ -1,6 +1,6 @@ diff --git a/test/output/tipHexbinExplicit.svg b/test/output/tipHexbinExplicit.svg index 8318bb24bf..fc4dd78bbe 100644 --- a/test/output/tipHexbinExplicit.svg +++ b/test/output/tipHexbinExplicit.svg @@ -1,6 +1,6 @@ diff --git a/test/output/tipLineX.svg b/test/output/tipLineX.svg index f0e1ce6944..ca6d7f2dd8 100644 --- a/test/output/tipLineX.svg +++ b/test/output/tipLineX.svg @@ -1,6 +1,6 @@ diff --git a/test/output/tipLineY.svg b/test/output/tipLineY.svg index 61453b3889..00ff6bfabd 100644 --- a/test/output/tipLineY.svg +++ b/test/output/tipLineY.svg @@ -1,6 +1,6 @@ diff --git a/test/output/tipLongText.svg b/test/output/tipLongText.svg index 3fb976b3e7..f8194258d6 100644 --- a/test/output/tipLongText.svg +++ b/test/output/tipLongText.svg @@ -1,6 +1,6 @@ diff --git a/test/output/tipNewLines.svg b/test/output/tipNewLines.svg index 64d5cac000..993148bbb3 100644 --- a/test/output/tipNewLines.svg +++ b/test/output/tipNewLines.svg @@ -1,6 +1,6 @@ diff --git a/test/output/tipRaster.svg b/test/output/tipRaster.svg index 60a1cd6042..df61436498 100644 --- a/test/output/tipRaster.svg +++ b/test/output/tipRaster.svg @@ -1,6 +1,6 @@ diff --git a/test/output/tipRule.svg b/test/output/tipRule.svg index d36762cf3e..0d90a606a4 100644 --- a/test/output/tipRule.svg +++ b/test/output/tipRule.svg @@ -1,6 +1,6 @@ diff --git a/test/output/tipRuleAnchored.svg b/test/output/tipRuleAnchored.svg index baf260d347..568b29cba5 100644 --- a/test/output/tipRuleAnchored.svg +++ b/test/output/tipRuleAnchored.svg @@ -1,6 +1,6 @@ diff --git a/test/output/tipTransform.html b/test/output/tipTransform.html index d0a7363aae..3cfe9e861c 100644 --- a/test/output/tipTransform.html +++ b/test/output/tipTransform.html @@ -1,6 +1,6 @@
@@ -41,7 +41,7 @@
diff --git a/test/output/title.html b/test/output/title.html index 28dea7851f..117ff36ac6 100644 --- a/test/output/title.html +++ b/test/output/title.html @@ -3,25 +3,25 @@

A title about penguins

A subtitle about body_mass_g

diff --git a/test/output/titleHtml.html b/test/output/titleHtml.html index e12a34dcfc..e7b5a2844e 100644 --- a/test/output/titleHtml.html +++ b/test/output/titleHtml.html @@ -2,7 +2,7 @@

A fancy title about penguins

A fancy subtitle

A fancy title about penguins

max-width: 100%; } - .plot text, - .plot tspan { + :where(.plot text), + :where(.plot tspan) { white-space: pre; } diff --git a/test/output/trafficHorizon.html b/test/output/trafficHorizon.html index f1f93ed461..f5d2db103f 100644 --- a/test/output/trafficHorizon.html +++ b/test/output/trafficHorizon.html @@ -1,25 +1,25 @@
diff --git a/test/output/travelersCovidDrop.svg b/test/output/travelersCovidDrop.svg index 473bb38f82..fffb636aeb 100644 --- a/test/output/travelersCovidDrop.svg +++ b/test/output/travelersCovidDrop.svg @@ -1,6 +1,6 @@ diff --git a/test/output/travelersYearOverYear.svg b/test/output/travelersYearOverYear.svg index 310b01a587..e467e46b21 100644 --- a/test/output/travelersYearOverYear.svg +++ b/test/output/travelersYearOverYear.svg @@ -1,6 +1,6 @@ diff --git a/test/output/treeDelimiter.svg b/test/output/treeDelimiter.svg index d638ddcb76..72e5dfd727 100644 --- a/test/output/treeDelimiter.svg +++ b/test/output/treeDelimiter.svg @@ -1,6 +1,6 @@ diff --git a/test/output/treeDelimiter2.svg b/test/output/treeDelimiter2.svg index d638ddcb76..72e5dfd727 100644 --- a/test/output/treeDelimiter2.svg +++ b/test/output/treeDelimiter2.svg @@ -1,6 +1,6 @@ diff --git a/test/output/uniformRandomDifference.svg b/test/output/uniformRandomDifference.svg index 7e98fb9a32..d1aea0d040 100644 --- a/test/output/uniformRandomDifference.svg +++ b/test/output/uniformRandomDifference.svg @@ -1,6 +1,6 @@ diff --git a/test/output/untypedDateBin.svg b/test/output/untypedDateBin.svg index 5455f8248f..9d721e29ff 100644 --- a/test/output/untypedDateBin.svg +++ b/test/output/untypedDateBin.svg @@ -1,6 +1,6 @@ diff --git a/test/output/usCongressAge.svg b/test/output/usCongressAge.svg index 79398f1c48..6a7893ae94 100644 --- a/test/output/usCongressAge.svg +++ b/test/output/usCongressAge.svg @@ -1,6 +1,6 @@ diff --git a/test/output/usCongressAgeColorExplicit.svg b/test/output/usCongressAgeColorExplicit.svg index 6034eefec9..21f3dcb7f9 100644 --- a/test/output/usCongressAgeColorExplicit.svg +++ b/test/output/usCongressAgeColorExplicit.svg @@ -1,6 +1,6 @@ diff --git a/test/output/usCongressAgeGender.svg b/test/output/usCongressAgeGender.svg index c0b2dabbcd..247c57614d 100644 --- a/test/output/usCongressAgeGender.svg +++ b/test/output/usCongressAgeGender.svg @@ -1,6 +1,6 @@ diff --git a/test/output/usCongressAgeSymbolExplicit.svg b/test/output/usCongressAgeSymbolExplicit.svg index 0888b91589..e45a870743 100644 --- a/test/output/usCongressAgeSymbolExplicit.svg +++ b/test/output/usCongressAgeSymbolExplicit.svg @@ -1,6 +1,6 @@ diff --git a/test/output/usCountyChoropleth.html b/test/output/usCountyChoropleth.html index e4f4939370..04c9b6262b 100644 --- a/test/output/usCountyChoropleth.html +++ b/test/output/usCountyChoropleth.html @@ -1,6 +1,6 @@
@@ -60,7 +60,7 @@ Unemployment (%) diff --git a/test/output/usCountySpikes.svg b/test/output/usCountySpikes.svg index ae4d693618..44a38576b1 100644 --- a/test/output/usCountySpikes.svg +++ b/test/output/usCountySpikes.svg @@ -1,6 +1,6 @@ diff --git a/test/output/usPopulationStateAge.svg b/test/output/usPopulationStateAge.svg index 19ce0179c8..1a701d1c3b 100644 --- a/test/output/usPopulationStateAge.svg +++ b/test/output/usPopulationStateAge.svg @@ -1,6 +1,6 @@ diff --git a/test/output/usPopulationStateAgeDots.svg b/test/output/usPopulationStateAgeDots.svg index 76472602c5..f8b8164ac4 100644 --- a/test/output/usPopulationStateAgeDots.svg +++ b/test/output/usPopulationStateAgeDots.svg @@ -1,6 +1,6 @@ diff --git a/test/output/usPopulationStateAgeGrouped.svg b/test/output/usPopulationStateAgeGrouped.svg index c563ddfd41..2fed96cb7b 100644 --- a/test/output/usPopulationStateAgeGrouped.svg +++ b/test/output/usPopulationStateAgeGrouped.svg @@ -1,6 +1,6 @@ diff --git a/test/output/usPresidentFavorabilityDots.svg b/test/output/usPresidentFavorabilityDots.svg index 5dc7a3eb69..8630d52da1 100644 --- a/test/output/usPresidentFavorabilityDots.svg +++ b/test/output/usPresidentFavorabilityDots.svg @@ -1,6 +1,6 @@ diff --git a/test/output/usPresidentGallery.svg b/test/output/usPresidentGallery.svg index 1ee7b9a794..280ec866dc 100644 --- a/test/output/usPresidentGallery.svg +++ b/test/output/usPresidentGallery.svg @@ -1,6 +1,6 @@ diff --git a/test/output/usPresidentGalleryAlt.svg b/test/output/usPresidentGalleryAlt.svg index f5b9e466c9..aed35161fc 100644 --- a/test/output/usPresidentGalleryAlt.svg +++ b/test/output/usPresidentGalleryAlt.svg @@ -1,6 +1,6 @@ diff --git a/test/output/usPresidentialElection2020.svg b/test/output/usPresidentialElection2020.svg index 6359c12c5e..be85fc855e 100644 --- a/test/output/usPresidentialElection2020.svg +++ b/test/output/usPresidentialElection2020.svg @@ -1,6 +1,6 @@ diff --git a/test/output/usPresidentialElectionMap2020.svg b/test/output/usPresidentialElectionMap2020.svg index 88094de8f6..06378d69a3 100644 --- a/test/output/usPresidentialElectionMap2020.svg +++ b/test/output/usPresidentialElectionMap2020.svg @@ -1,6 +1,6 @@ diff --git a/test/output/usPresidentialForecast2016.svg b/test/output/usPresidentialForecast2016.svg index 8fbc7b5ec0..de2f375748 100644 --- a/test/output/usPresidentialForecast2016.svg +++ b/test/output/usPresidentialForecast2016.svg @@ -1,6 +1,6 @@ diff --git a/test/output/usRetailSales.svg b/test/output/usRetailSales.svg index 3a352bbf41..37f8c48c49 100644 --- a/test/output/usRetailSales.svg +++ b/test/output/usRetailSales.svg @@ -1,6 +1,6 @@ diff --git a/test/output/usStateCapitals.svg b/test/output/usStateCapitals.svg index 908303b20d..c1a70b8032 100644 --- a/test/output/usStateCapitals.svg +++ b/test/output/usStateCapitals.svg @@ -1,6 +1,6 @@ diff --git a/test/output/usStateCapitalsVoronoi.svg b/test/output/usStateCapitalsVoronoi.svg index fd1ea8dfa5..fe1279f13a 100644 --- a/test/output/usStateCapitalsVoronoi.svg +++ b/test/output/usStateCapitalsVoronoi.svg @@ -1,6 +1,6 @@ diff --git a/test/output/usStatePopulationChange.svg b/test/output/usStatePopulationChange.svg index e078a076c6..badc13dc29 100644 --- a/test/output/usStatePopulationChange.svg +++ b/test/output/usStatePopulationChange.svg @@ -1,6 +1,6 @@ diff --git a/test/output/usStatePopulationChangeRelative.svg b/test/output/usStatePopulationChangeRelative.svg index 5a1377b4b4..aad8b9ade0 100644 --- a/test/output/usStatePopulationChangeRelative.svg +++ b/test/output/usStatePopulationChangeRelative.svg @@ -1,6 +1,6 @@ diff --git a/test/output/varColor.svg b/test/output/varColor.svg index 4a47acc30e..d4e9ba906a 100644 --- a/test/output/varColor.svg +++ b/test/output/varColor.svg @@ -1,6 +1,6 @@ diff --git a/test/output/varColor2.svg b/test/output/varColor2.svg index f3cee93875..9837248b8a 100644 --- a/test/output/varColor2.svg +++ b/test/output/varColor2.svg @@ -1,6 +1,6 @@ diff --git a/test/output/varColorP3.svg b/test/output/varColorP3.svg index ecbd017665..f32767c8e3 100644 --- a/test/output/varColorP3.svg +++ b/test/output/varColorP3.svg @@ -1,6 +1,6 @@ diff --git a/test/output/vectorField.svg b/test/output/vectorField.svg index 7149f2f3f4..1eda66042b 100644 --- a/test/output/vectorField.svg +++ b/test/output/vectorField.svg @@ -1,6 +1,6 @@ diff --git a/test/output/vectorFrame.svg b/test/output/vectorFrame.svg index 74215c3028..d9864a0f5e 100644 --- a/test/output/vectorFrame.svg +++ b/test/output/vectorFrame.svg @@ -1,6 +1,6 @@ diff --git a/test/output/volcano.svg b/test/output/volcano.svg index 6728800246..e4ff9d032e 100644 --- a/test/output/volcano.svg +++ b/test/output/volcano.svg @@ -1,6 +1,6 @@ diff --git a/test/output/volcanoContour.svg b/test/output/volcanoContour.svg index ac8d0a5094..0a08dfb45f 100644 --- a/test/output/volcanoContour.svg +++ b/test/output/volcanoContour.svg @@ -1,6 +1,6 @@ diff --git a/test/output/volcanoTerrain.svg b/test/output/volcanoTerrain.svg index fe54233849..eb0965aa2d 100644 --- a/test/output/volcanoTerrain.svg +++ b/test/output/volcanoTerrain.svg @@ -1,6 +1,6 @@ diff --git a/test/output/walmarts.html b/test/output/walmarts.html index 22190a9dc6..b510d76eeb 100644 --- a/test/output/walmarts.html +++ b/test/output/walmarts.html @@ -1,6 +1,6 @@
@@ -34,7 +34,7 @@ First year opened diff --git a/test/output/walmartsAdditions.svg b/test/output/walmartsAdditions.svg index d0fad208e1..ea10521ad3 100644 --- a/test/output/walmartsAdditions.svg +++ b/test/output/walmartsAdditions.svg @@ -1,6 +1,6 @@ diff --git a/test/output/walmartsDecades.svg b/test/output/walmartsDecades.svg index 575fc9c6a3..f68de58307 100644 --- a/test/output/walmartsDecades.svg +++ b/test/output/walmartsDecades.svg @@ -1,6 +1,6 @@ diff --git a/test/output/walmartsDensity.svg b/test/output/walmartsDensity.svg index aeb5d131ef..dc79eb35c1 100644 --- a/test/output/walmartsDensity.svg +++ b/test/output/walmartsDensity.svg @@ -1,6 +1,6 @@ diff --git a/test/output/walmartsDensityUnprojected.svg b/test/output/walmartsDensityUnprojected.svg index 3a49b3f94a..1ec3a16eb4 100644 --- a/test/output/walmartsDensityUnprojected.svg +++ b/test/output/walmartsDensityUnprojected.svg @@ -1,6 +1,6 @@ diff --git a/test/output/warnMisalignedDivergingDomain.html b/test/output/warnMisalignedDivergingDomain.html index 06d23373dd..e9d2299b28 100644 --- a/test/output/warnMisalignedDivergingDomain.html +++ b/test/output/warnMisalignedDivergingDomain.html @@ -1,6 +1,6 @@
@@ -37,7 +37,7 @@ diff --git a/test/output/warnTimeAxisOrdinalExplicitIncompatibleTicks.svg b/test/output/warnTimeAxisOrdinalExplicitIncompatibleTicks.svg index c94a555d56..be8fd2ac8f 100644 --- a/test/output/warnTimeAxisOrdinalExplicitIncompatibleTicks.svg +++ b/test/output/warnTimeAxisOrdinalExplicitIncompatibleTicks.svg @@ -1,6 +1,6 @@ diff --git a/test/output/warnTimeAxisOrdinalIncompatible.svg b/test/output/warnTimeAxisOrdinalIncompatible.svg index c94a555d56..be8fd2ac8f 100644 --- a/test/output/warnTimeAxisOrdinalIncompatible.svg +++ b/test/output/warnTimeAxisOrdinalIncompatible.svg @@ -1,6 +1,6 @@ diff --git a/test/output/wealthBritainBar.svg b/test/output/wealthBritainBar.svg index ce7d260448..ceb5c18f1f 100644 --- a/test/output/wealthBritainBar.svg +++ b/test/output/wealthBritainBar.svg @@ -1,6 +1,6 @@ diff --git a/test/output/wealthBritainProportionPlot.svg b/test/output/wealthBritainProportionPlot.svg index 60c730ad48..30db29124c 100644 --- a/test/output/wealthBritainProportionPlot.svg +++ b/test/output/wealthBritainProportionPlot.svg @@ -1,6 +1,6 @@ diff --git a/test/output/wordCloud.svg b/test/output/wordCloud.svg index 2df8a3d9e0..d23901c58c 100644 --- a/test/output/wordCloud.svg +++ b/test/output/wordCloud.svg @@ -1,6 +1,6 @@ diff --git a/test/output/wordLengthMobyDick.svg b/test/output/wordLengthMobyDick.svg index 0e6911caa1..9bfde568f9 100644 --- a/test/output/wordLengthMobyDick.svg +++ b/test/output/wordLengthMobyDick.svg @@ -1,6 +1,6 @@ diff --git a/test/output/yearlyRequests.svg b/test/output/yearlyRequests.svg index 948ee6e886..922dc92ed7 100644 --- a/test/output/yearlyRequests.svg +++ b/test/output/yearlyRequests.svg @@ -1,6 +1,6 @@ diff --git a/test/output/yearlyRequestsDate.svg b/test/output/yearlyRequestsDate.svg index 948ee6e886..922dc92ed7 100644 --- a/test/output/yearlyRequestsDate.svg +++ b/test/output/yearlyRequestsDate.svg @@ -1,6 +1,6 @@ diff --git a/test/output/yearlyRequestsDot.svg b/test/output/yearlyRequestsDot.svg index 43ee5224bb..c9e9c84953 100644 --- a/test/output/yearlyRequestsDot.svg +++ b/test/output/yearlyRequestsDot.svg @@ -1,6 +1,6 @@ diff --git a/test/output/yearlyRequestsLine.svg b/test/output/yearlyRequestsLine.svg index 5c3a9c49bf..9134f0fd17 100644 --- a/test/output/yearlyRequestsLine.svg +++ b/test/output/yearlyRequestsLine.svg @@ -1,6 +1,6 @@ diff --git a/test/output/youngAdults.html b/test/output/youngAdults.html index ac7872c1a1..aa6145e559 100644 --- a/test/output/youngAdults.html +++ b/test/output/youngAdults.html @@ -3,25 +3,25 @@

Share of young adults living with their parents (%)

…by age and sex. Data: Eurostat

diff --git a/test/plots/index.ts b/test/plots/index.ts index 3eb5b5de2a..0a3ee3eb0d 100644 --- a/test/plots/index.ts +++ b/test/plots/index.ts @@ -292,6 +292,7 @@ export * from "./stargazers-hourly-group.js"; export * from "./stargazers-hourly.js"; export * from "./stargazers.js"; export * from "./stocks-index.js"; +export * from "./style-overrides.js"; export * from "./symbol-set.js"; export * from "./text-overflow.js"; export * from "./this-is-just-to-say.js"; diff --git a/test/plots/style-overrides.ts b/test/plots/style-overrides.ts new file mode 100644 index 0000000000..1e6359239f --- /dev/null +++ b/test/plots/style-overrides.ts @@ -0,0 +1,31 @@ +import * as Plot from "@observablehq/plot"; +import * as d3 from "d3"; + +export function styleOverrideLegendCategorical() { + const className = "style-override"; + const wrapper = d3 + .create("div") + .attr("class", "test-wrapper") // Required by ../plot.js + .html( + ` + + ` + ) + .node(); + + const options = {color: {domain: "ABCDEFGHIJ"}, label: "Hello"}; + + // Normal legend without style overrides + wrapper.append(Plot.legend(options)); + + // Styled legend with className override + wrapper.append(Plot.legend({...options, className})); + + return wrapper; +}