diff --git a/tests/e2e/samples.js b/tests/e2e/samples.js index 5519e38bf..0b05ee8b6 100644 --- a/tests/e2e/samples.js +++ b/tests/e2e/samples.js @@ -110,7 +110,10 @@ async function processSample(page, sample, command) { ) const mismatchPercent = ((100 * numDiffs) / width / height).toFixed(2) - throw new TestError(`Screenshot changed by ${mismatchPercent}%`) + + if (mismatchPercent > 5) { + throw new TestError(`Screenshot changed by ${mismatchPercent}%`) + } } else if (err) { throw err } @@ -164,7 +167,7 @@ async function processSamples(command, paths) { dest: `${e2eSamplesDir}/apexcharts.e2e.js`, format: 'umd', env: 'development', - istanbul: true + istanbul: true, }) } @@ -188,7 +191,7 @@ async function processSamples(command, paths) { const cluster = await Cluster.launch({ concurrency: Cluster.CONCURRENCY_PAGE, - maxConcurrency: 5 + maxConcurrency: 5, }) await cluster.task(async ({ page, data: sample }) => { @@ -207,7 +210,7 @@ async function processSamples(command, paths) { } catch (e) { failedTests.push({ path: `${sample.dirName}/${sample.fileName}`, - error: e + error: e, }) } numCompleted++ @@ -241,12 +244,7 @@ async function processSamples(command, paths) { ) if (!failedTest.error.hideStack) { - console.log( - failedTest.error.stack - .split('\n') - .slice(1) - .join('\n') - ) + console.log(failedTest.error.stack.split('\n').slice(1).join('\n')) } } diff --git a/tests/e2e/snapshots/area/area-datetime.png b/tests/e2e/snapshots/area/area-datetime.png index 14a2cf48c..e1edc7ce7 100644 Binary files a/tests/e2e/snapshots/area/area-datetime.png and b/tests/e2e/snapshots/area/area-datetime.png differ diff --git a/tests/e2e/snapshots/area/area-github-style.png b/tests/e2e/snapshots/area/area-github-style.png index e35e6cbba..d812430b3 100644 Binary files a/tests/e2e/snapshots/area/area-github-style.png and b/tests/e2e/snapshots/area/area-github-style.png differ diff --git a/tests/e2e/snapshots/area/area-spline.png b/tests/e2e/snapshots/area/area-spline.png index 9151869bd..f8b619303 100644 Binary files a/tests/e2e/snapshots/area/area-spline.png and b/tests/e2e/snapshots/area/area-spline.png differ diff --git a/tests/e2e/snapshots/area/area-with-missing-data.png b/tests/e2e/snapshots/area/area-with-missing-data.png index 4b88fc693..6f28016e3 100644 Binary files a/tests/e2e/snapshots/area/area-with-missing-data.png and b/tests/e2e/snapshots/area/area-with-missing-data.png differ diff --git a/tests/e2e/snapshots/area/area-with-negative.png b/tests/e2e/snapshots/area/area-with-negative.png index fe2efde9a..24e1dddca 100644 Binary files a/tests/e2e/snapshots/area/area-with-negative.png and b/tests/e2e/snapshots/area/area-with-negative.png differ diff --git a/tests/e2e/snapshots/area/basic-area.png b/tests/e2e/snapshots/area/basic-area.png index 419c28f88..adf8d9f1b 100644 Binary files a/tests/e2e/snapshots/area/basic-area.png and b/tests/e2e/snapshots/area/basic-area.png differ diff --git a/tests/e2e/snapshots/area/multi-axis-with-seriesname-arrays.png b/tests/e2e/snapshots/area/multi-axis-with-seriesname-arrays.png index d51696af2..ea8fbdf41 100644 Binary files a/tests/e2e/snapshots/area/multi-axis-with-seriesname-arrays.png and b/tests/e2e/snapshots/area/multi-axis-with-seriesname-arrays.png differ diff --git a/tests/e2e/snapshots/area/stacked-area.png b/tests/e2e/snapshots/area/stacked-area.png index 75e2c259b..204de43dd 100644 Binary files a/tests/e2e/snapshots/area/stacked-area.png and b/tests/e2e/snapshots/area/stacked-area.png differ diff --git a/tests/e2e/snapshots/area/timeseries-with-irregular-data.png b/tests/e2e/snapshots/area/timeseries-with-irregular-data.png index 1ac212524..d4555e718 100644 Binary files a/tests/e2e/snapshots/area/timeseries-with-irregular-data.png and b/tests/e2e/snapshots/area/timeseries-with-irregular-data.png differ diff --git a/tests/e2e/snapshots/bar/bar-with-custom-data-labels.png b/tests/e2e/snapshots/bar/bar-with-custom-data-labels.png index 73c889135..fda50b468 100644 Binary files a/tests/e2e/snapshots/bar/bar-with-custom-data-labels.png and b/tests/e2e/snapshots/bar/bar-with-custom-data-labels.png differ diff --git a/tests/e2e/snapshots/bar/bar-with-images.png b/tests/e2e/snapshots/bar/bar-with-images.png index dd5af2eb1..5e6e537d8 100644 Binary files a/tests/e2e/snapshots/bar/bar-with-images.png and b/tests/e2e/snapshots/bar/bar-with-images.png differ diff --git a/tests/e2e/snapshots/bar/bar-with-markers.png b/tests/e2e/snapshots/bar/bar-with-markers.png index 174f1f5db..6ecab986c 100644 Binary files a/tests/e2e/snapshots/bar/bar-with-markers.png and b/tests/e2e/snapshots/bar/bar-with-markers.png differ diff --git a/tests/e2e/snapshots/bar/bar-with-negative.png b/tests/e2e/snapshots/bar/bar-with-negative.png index 05fecaf6f..68ce4e8b8 100644 Binary files a/tests/e2e/snapshots/bar/bar-with-negative.png and b/tests/e2e/snapshots/bar/bar-with-negative.png differ diff --git a/tests/e2e/snapshots/bar/basic-bar.png b/tests/e2e/snapshots/bar/basic-bar.png index d5711eb51..53d7fdc60 100644 Binary files a/tests/e2e/snapshots/bar/basic-bar.png and b/tests/e2e/snapshots/bar/basic-bar.png differ diff --git a/tests/e2e/snapshots/bar/grouped-bar.png b/tests/e2e/snapshots/bar/grouped-bar.png index a3ab2dd4a..a53803e65 100644 Binary files a/tests/e2e/snapshots/bar/grouped-bar.png and b/tests/e2e/snapshots/bar/grouped-bar.png differ diff --git a/tests/e2e/snapshots/bar/grouped-stacked-bar.png b/tests/e2e/snapshots/bar/grouped-stacked-bar.png index 361eb1b07..009d9c18b 100644 Binary files a/tests/e2e/snapshots/bar/grouped-stacked-bar.png and b/tests/e2e/snapshots/bar/grouped-stacked-bar.png differ diff --git a/tests/e2e/snapshots/bar/patterned-bar.png b/tests/e2e/snapshots/bar/patterned-bar.png index b584a0a4c..0da58873a 100644 Binary files a/tests/e2e/snapshots/bar/patterned-bar.png and b/tests/e2e/snapshots/bar/patterned-bar.png differ diff --git a/tests/e2e/snapshots/bar/reversed-bar.png b/tests/e2e/snapshots/bar/reversed-bar.png index 4c6e45dda..99163581a 100644 Binary files a/tests/e2e/snapshots/bar/reversed-bar.png and b/tests/e2e/snapshots/bar/reversed-bar.png differ diff --git a/tests/e2e/snapshots/bar/stacked-bar-100.png b/tests/e2e/snapshots/bar/stacked-bar-100.png index 797ce2651..e79b4da6d 100644 Binary files a/tests/e2e/snapshots/bar/stacked-bar-100.png and b/tests/e2e/snapshots/bar/stacked-bar-100.png differ diff --git a/tests/e2e/snapshots/bar/stacked-bar.png b/tests/e2e/snapshots/bar/stacked-bar.png index 404a5c3f3..681762c32 100644 Binary files a/tests/e2e/snapshots/bar/stacked-bar.png and b/tests/e2e/snapshots/bar/stacked-bar.png differ diff --git a/tests/e2e/snapshots/boxPlot/basic.png b/tests/e2e/snapshots/boxPlot/basic.png index bb7ca44ee..cc63be84c 100644 Binary files a/tests/e2e/snapshots/boxPlot/basic.png and b/tests/e2e/snapshots/boxPlot/basic.png differ diff --git a/tests/e2e/snapshots/boxPlot/boxplot-scatter.png b/tests/e2e/snapshots/boxPlot/boxplot-scatter.png index 142b1e3b0..6f0bafb05 100644 Binary files a/tests/e2e/snapshots/boxPlot/boxplot-scatter.png and b/tests/e2e/snapshots/boxPlot/boxplot-scatter.png differ diff --git a/tests/e2e/snapshots/boxPlot/horizontal-boxplot.png b/tests/e2e/snapshots/boxPlot/horizontal-boxplot.png index 5342a4b3d..38e72a550 100644 Binary files a/tests/e2e/snapshots/boxPlot/horizontal-boxplot.png and b/tests/e2e/snapshots/boxPlot/horizontal-boxplot.png differ diff --git a/tests/e2e/snapshots/bubble/3d-bubble.png b/tests/e2e/snapshots/bubble/3d-bubble.png index 97b5807d2..dfa2f7463 100644 Binary files a/tests/e2e/snapshots/bubble/3d-bubble.png and b/tests/e2e/snapshots/bubble/3d-bubble.png differ diff --git a/tests/e2e/snapshots/bubble/simple-bubble.png b/tests/e2e/snapshots/bubble/simple-bubble.png index 450ec0030..d1e438214 100644 Binary files a/tests/e2e/snapshots/bubble/simple-bubble.png and b/tests/e2e/snapshots/bubble/simple-bubble.png differ diff --git a/tests/e2e/snapshots/candlestick/basic.png b/tests/e2e/snapshots/candlestick/basic.png index 514036f55..63c88dd74 100644 Binary files a/tests/e2e/snapshots/candlestick/basic.png and b/tests/e2e/snapshots/candlestick/basic.png differ diff --git a/tests/e2e/snapshots/candlestick/candlestick-bar.png b/tests/e2e/snapshots/candlestick/candlestick-bar.png index 9aa732451..616de4d94 100644 Binary files a/tests/e2e/snapshots/candlestick/candlestick-bar.png and b/tests/e2e/snapshots/candlestick/candlestick-bar.png differ diff --git a/tests/e2e/snapshots/candlestick/candlestick-category.png b/tests/e2e/snapshots/candlestick/candlestick-category.png index e40981940..2af8e35bd 100644 Binary files a/tests/e2e/snapshots/candlestick/candlestick-category.png and b/tests/e2e/snapshots/candlestick/candlestick-category.png differ diff --git a/tests/e2e/snapshots/candlestick/candlestick-line.png b/tests/e2e/snapshots/candlestick/candlestick-line.png index c3c216e62..fad4d2307 100644 Binary files a/tests/e2e/snapshots/candlestick/candlestick-line.png and b/tests/e2e/snapshots/candlestick/candlestick-line.png differ diff --git a/tests/e2e/snapshots/column/basic-column.png b/tests/e2e/snapshots/column/basic-column.png index fd07fa0b7..14db6d498 100644 Binary files a/tests/e2e/snapshots/column/basic-column.png and b/tests/e2e/snapshots/column/basic-column.png differ diff --git a/tests/e2e/snapshots/column/column-with-data-labels.png b/tests/e2e/snapshots/column/column-with-data-labels.png index c8fb56391..6a1cb326d 100644 Binary files a/tests/e2e/snapshots/column/column-with-data-labels.png and b/tests/e2e/snapshots/column/column-with-data-labels.png differ diff --git a/tests/e2e/snapshots/column/column-with-group-label.png b/tests/e2e/snapshots/column/column-with-group-label.png index f189e77a4..a9ca8cd08 100644 Binary files a/tests/e2e/snapshots/column/column-with-group-label.png and b/tests/e2e/snapshots/column/column-with-group-label.png differ diff --git a/tests/e2e/snapshots/column/column-with-markers.png b/tests/e2e/snapshots/column/column-with-markers.png index ec5b46eb8..d36c32ea6 100644 Binary files a/tests/e2e/snapshots/column/column-with-markers.png and b/tests/e2e/snapshots/column/column-with-markers.png differ diff --git a/tests/e2e/snapshots/column/column-with-negative.png b/tests/e2e/snapshots/column/column-with-negative.png index dcd6953eb..5b8765e4f 100644 Binary files a/tests/e2e/snapshots/column/column-with-negative.png and b/tests/e2e/snapshots/column/column-with-negative.png differ diff --git a/tests/e2e/snapshots/column/column-with-rotated-data-labels.png b/tests/e2e/snapshots/column/column-with-rotated-data-labels.png index 34604745a..b6bbab3e8 100644 Binary files a/tests/e2e/snapshots/column/column-with-rotated-data-labels.png and b/tests/e2e/snapshots/column/column-with-rotated-data-labels.png differ diff --git a/tests/e2e/snapshots/column/column-with-rotated-labels.png b/tests/e2e/snapshots/column/column-with-rotated-labels.png index aede3c42f..dd02b279d 100644 Binary files a/tests/e2e/snapshots/column/column-with-rotated-labels.png and b/tests/e2e/snapshots/column/column-with-rotated-labels.png differ diff --git a/tests/e2e/snapshots/column/data-color.png b/tests/e2e/snapshots/column/data-color.png index 1b705129b..4e18acb2b 100644 Binary files a/tests/e2e/snapshots/column/data-color.png and b/tests/e2e/snapshots/column/data-color.png differ diff --git a/tests/e2e/snapshots/column/distributed-columns.png b/tests/e2e/snapshots/column/distributed-columns.png index 0934af729..54324ed08 100644 Binary files a/tests/e2e/snapshots/column/distributed-columns.png and b/tests/e2e/snapshots/column/distributed-columns.png differ diff --git a/tests/e2e/snapshots/column/dumbbell-chart.png b/tests/e2e/snapshots/column/dumbbell-chart.png index 1060befa5..82c620bf2 100644 Binary files a/tests/e2e/snapshots/column/dumbbell-chart.png and b/tests/e2e/snapshots/column/dumbbell-chart.png differ diff --git a/tests/e2e/snapshots/column/dynamic-loaded-chart.png b/tests/e2e/snapshots/column/dynamic-loaded-chart.png index 546708245..e9ac252d3 100644 Binary files a/tests/e2e/snapshots/column/dynamic-loaded-chart.png and b/tests/e2e/snapshots/column/dynamic-loaded-chart.png differ diff --git a/tests/e2e/snapshots/column/grouped-stacked-column.png b/tests/e2e/snapshots/column/grouped-stacked-column.png index 42c59e12d..a48a66d73 100644 Binary files a/tests/e2e/snapshots/column/grouped-stacked-column.png and b/tests/e2e/snapshots/column/grouped-stacked-column.png differ diff --git a/tests/e2e/snapshots/column/range-column.png b/tests/e2e/snapshots/column/range-column.png index db6f2dcf3..b0b513b85 100644 Binary files a/tests/e2e/snapshots/column/range-column.png and b/tests/e2e/snapshots/column/range-column.png differ diff --git a/tests/e2e/snapshots/column/stacked-column-100.png b/tests/e2e/snapshots/column/stacked-column-100.png index d5b655c42..ea441fdf1 100644 Binary files a/tests/e2e/snapshots/column/stacked-column-100.png and b/tests/e2e/snapshots/column/stacked-column-100.png differ diff --git a/tests/e2e/snapshots/column/stacked-column-with-line-new.png b/tests/e2e/snapshots/column/stacked-column-with-line-new.png index c5f6bcb6c..d0f5e6817 100644 Binary files a/tests/e2e/snapshots/column/stacked-column-with-line-new.png and b/tests/e2e/snapshots/column/stacked-column-with-line-new.png differ diff --git a/tests/e2e/snapshots/column/stacked-column-with-line.png b/tests/e2e/snapshots/column/stacked-column-with-line.png index eabbf0775..d0f5e6817 100644 Binary files a/tests/e2e/snapshots/column/stacked-column-with-line.png and b/tests/e2e/snapshots/column/stacked-column-with-line.png differ diff --git a/tests/e2e/snapshots/column/stacked-column.png b/tests/e2e/snapshots/column/stacked-column.png index 8a5599ea0..7041f07da 100644 Binary files a/tests/e2e/snapshots/column/stacked-column.png and b/tests/e2e/snapshots/column/stacked-column.png differ diff --git a/tests/e2e/snapshots/funnel/funnel.png b/tests/e2e/snapshots/funnel/funnel.png index 33d7a46c1..89b66ae6b 100644 Binary files a/tests/e2e/snapshots/funnel/funnel.png and b/tests/e2e/snapshots/funnel/funnel.png differ diff --git a/tests/e2e/snapshots/funnel/pyramid.png b/tests/e2e/snapshots/funnel/pyramid.png index 4ce77f457..a659cceae 100644 Binary files a/tests/e2e/snapshots/funnel/pyramid.png and b/tests/e2e/snapshots/funnel/pyramid.png differ diff --git a/tests/e2e/snapshots/heatmap/basic.png b/tests/e2e/snapshots/heatmap/basic.png index 65942296c..e41553460 100644 Binary files a/tests/e2e/snapshots/heatmap/basic.png and b/tests/e2e/snapshots/heatmap/basic.png differ diff --git a/tests/e2e/snapshots/heatmap/color-range.png b/tests/e2e/snapshots/heatmap/color-range.png index fc01ccbb2..4d58d244c 100644 Binary files a/tests/e2e/snapshots/heatmap/color-range.png and b/tests/e2e/snapshots/heatmap/color-range.png differ diff --git a/tests/e2e/snapshots/heatmap/image-fill.png b/tests/e2e/snapshots/heatmap/image-fill.png index b67f20a56..88feb1010 100644 Binary files a/tests/e2e/snapshots/heatmap/image-fill.png and b/tests/e2e/snapshots/heatmap/image-fill.png differ diff --git a/tests/e2e/snapshots/heatmap/multiple-color-scales-flipped.png b/tests/e2e/snapshots/heatmap/multiple-color-scales-flipped.png index 3be08d189..a0dfc90a3 100644 Binary files a/tests/e2e/snapshots/heatmap/multiple-color-scales-flipped.png and b/tests/e2e/snapshots/heatmap/multiple-color-scales-flipped.png differ diff --git a/tests/e2e/snapshots/heatmap/multiple-color.png b/tests/e2e/snapshots/heatmap/multiple-color.png index a1d4babbc..b6c7465f1 100644 Binary files a/tests/e2e/snapshots/heatmap/multiple-color.png and b/tests/e2e/snapshots/heatmap/multiple-color.png differ diff --git a/tests/e2e/snapshots/heatmap/rounded.png b/tests/e2e/snapshots/heatmap/rounded.png index da236e1b9..db45f3151 100644 Binary files a/tests/e2e/snapshots/heatmap/rounded.png and b/tests/e2e/snapshots/heatmap/rounded.png differ diff --git a/tests/e2e/snapshots/line/basic-line.png b/tests/e2e/snapshots/line/basic-line.png index 366bccfda..f73f4524d 100644 Binary files a/tests/e2e/snapshots/line/basic-line.png and b/tests/e2e/snapshots/line/basic-line.png differ diff --git a/tests/e2e/snapshots/line/brush-charts.png b/tests/e2e/snapshots/line/brush-charts.png index b8c114ddc..51b47b672 100644 Binary files a/tests/e2e/snapshots/line/brush-charts.png and b/tests/e2e/snapshots/line/brush-charts.png differ diff --git a/tests/e2e/snapshots/line/dashed-line.png b/tests/e2e/snapshots/line/dashed-line.png index 73d11868b..56e9e2a78 100644 Binary files a/tests/e2e/snapshots/line/dashed-line.png and b/tests/e2e/snapshots/line/dashed-line.png differ diff --git a/tests/e2e/snapshots/line/gradient-line.png b/tests/e2e/snapshots/line/gradient-line.png index 573a84890..c878fe148 100644 Binary files a/tests/e2e/snapshots/line/gradient-line.png and b/tests/e2e/snapshots/line/gradient-line.png differ diff --git a/tests/e2e/snapshots/line/line-with-annotations.png b/tests/e2e/snapshots/line/line-with-annotations.png index 1899ff15d..44f3953ed 100644 Binary files a/tests/e2e/snapshots/line/line-with-annotations.png and b/tests/e2e/snapshots/line/line-with-annotations.png differ diff --git a/tests/e2e/snapshots/line/line-with-data-labels.png b/tests/e2e/snapshots/line/line-with-data-labels.png index 7e1613eb3..0a67c7884 100644 Binary files a/tests/e2e/snapshots/line/line-with-data-labels.png and b/tests/e2e/snapshots/line/line-with-data-labels.png differ diff --git a/tests/e2e/snapshots/line/line-with-image.png b/tests/e2e/snapshots/line/line-with-image.png index 3b74af54e..18caec350 100644 Binary files a/tests/e2e/snapshots/line/line-with-image.png and b/tests/e2e/snapshots/line/line-with-image.png differ diff --git a/tests/e2e/snapshots/line/line-with-missing-data.png b/tests/e2e/snapshots/line/line-with-missing-data.png index ce3c2af7b..05bdb5d1d 100644 Binary files a/tests/e2e/snapshots/line/line-with-missing-data.png and b/tests/e2e/snapshots/line/line-with-missing-data.png differ diff --git a/tests/e2e/snapshots/line/linestep.png b/tests/e2e/snapshots/line/linestep.png index 5bd933f07..c79e0d0d4 100644 Binary files a/tests/e2e/snapshots/line/linestep.png and b/tests/e2e/snapshots/line/linestep.png differ diff --git a/tests/e2e/snapshots/line/logarithmic-line.png b/tests/e2e/snapshots/line/logarithmic-line.png index f2d19bd08..6445bd45b 100644 Binary files a/tests/e2e/snapshots/line/logarithmic-line.png and b/tests/e2e/snapshots/line/logarithmic-line.png differ diff --git a/tests/e2e/snapshots/line/realtime.png b/tests/e2e/snapshots/line/realtime.png index 6cdd56c3c..1c6895b8a 100644 Binary files a/tests/e2e/snapshots/line/realtime.png and b/tests/e2e/snapshots/line/realtime.png differ diff --git a/tests/e2e/snapshots/line/stepline.png b/tests/e2e/snapshots/line/stepline.png index 0507ef269..ed5b221d4 100644 Binary files a/tests/e2e/snapshots/line/stepline.png and b/tests/e2e/snapshots/line/stepline.png differ diff --git a/tests/e2e/snapshots/line/syncing-charts.png b/tests/e2e/snapshots/line/syncing-charts.png index ca6aedadf..5997acc4f 100644 Binary files a/tests/e2e/snapshots/line/syncing-charts.png and b/tests/e2e/snapshots/line/syncing-charts.png differ diff --git a/tests/e2e/snapshots/line/zoomable-timeseries.png b/tests/e2e/snapshots/line/zoomable-timeseries.png index b2cdd94a5..c4c4bb0d9 100644 Binary files a/tests/e2e/snapshots/line/zoomable-timeseries.png and b/tests/e2e/snapshots/line/zoomable-timeseries.png differ diff --git a/tests/e2e/snapshots/misc/annotations-example.png b/tests/e2e/snapshots/misc/annotations-example.png index 3762cad81..b34848bc5 100644 Binary files a/tests/e2e/snapshots/misc/annotations-example.png and b/tests/e2e/snapshots/misc/annotations-example.png differ diff --git a/tests/e2e/snapshots/misc/axios.png b/tests/e2e/snapshots/misc/axios.png index 00fa17cca..40d538316 100644 Binary files a/tests/e2e/snapshots/misc/axios.png and b/tests/e2e/snapshots/misc/axios.png differ diff --git a/tests/e2e/snapshots/misc/custom-legend.png b/tests/e2e/snapshots/misc/custom-legend.png index 7d765c567..3a177f607 100644 Binary files a/tests/e2e/snapshots/misc/custom-legend.png and b/tests/e2e/snapshots/misc/custom-legend.png differ diff --git a/tests/e2e/snapshots/misc/jquery.png b/tests/e2e/snapshots/misc/jquery.png index 00fa17cca..40d538316 100644 Binary files a/tests/e2e/snapshots/misc/jquery.png and b/tests/e2e/snapshots/misc/jquery.png differ diff --git a/tests/e2e/snapshots/misc/minMaxPoints.png b/tests/e2e/snapshots/misc/minMaxPoints.png index 4318ad996..c36da4389 100644 Binary files a/tests/e2e/snapshots/misc/minMaxPoints.png and b/tests/e2e/snapshots/misc/minMaxPoints.png differ diff --git a/tests/e2e/snapshots/misc/no-data.png b/tests/e2e/snapshots/misc/no-data.png index 9a0c50545..c0eaf12e0 100644 Binary files a/tests/e2e/snapshots/misc/no-data.png and b/tests/e2e/snapshots/misc/no-data.png differ diff --git a/tests/e2e/snapshots/misc/range-annotations-inverted-axis-example.png b/tests/e2e/snapshots/misc/range-annotations-inverted-axis-example.png index 8f7c4c308..602b4bab2 100644 Binary files a/tests/e2e/snapshots/misc/range-annotations-inverted-axis-example.png and b/tests/e2e/snapshots/misc/range-annotations-inverted-axis-example.png differ diff --git a/tests/e2e/snapshots/mixed/duplicate-labels.png b/tests/e2e/snapshots/mixed/duplicate-labels.png index 2f1cd2d46..3b6f1a4aa 100644 Binary files a/tests/e2e/snapshots/mixed/duplicate-labels.png and b/tests/e2e/snapshots/mixed/duplicate-labels.png differ diff --git a/tests/e2e/snapshots/mixed/line-area.png b/tests/e2e/snapshots/mixed/line-area.png index 520b0e07f..f25fbc6d7 100644 Binary files a/tests/e2e/snapshots/mixed/line-area.png and b/tests/e2e/snapshots/mixed/line-area.png differ diff --git a/tests/e2e/snapshots/mixed/line-column-area-stacked-grouped.png b/tests/e2e/snapshots/mixed/line-column-area-stacked-grouped.png index c66ad954c..0f64de40e 100644 Binary files a/tests/e2e/snapshots/mixed/line-column-area-stacked-grouped.png and b/tests/e2e/snapshots/mixed/line-column-area-stacked-grouped.png differ diff --git a/tests/e2e/snapshots/mixed/line-column-area.png b/tests/e2e/snapshots/mixed/line-column-area.png index 133f2f507..b1807e369 100644 Binary files a/tests/e2e/snapshots/mixed/line-column-area.png and b/tests/e2e/snapshots/mixed/line-column-area.png differ diff --git a/tests/e2e/snapshots/mixed/line-column.png b/tests/e2e/snapshots/mixed/line-column.png index da6efdb12..87fc0263a 100644 Binary files a/tests/e2e/snapshots/mixed/line-column.png and b/tests/e2e/snapshots/mixed/line-column.png differ diff --git a/tests/e2e/snapshots/mixed/line-scatter.png b/tests/e2e/snapshots/mixed/line-scatter.png index 54649b1bc..67a183c0b 100644 Binary files a/tests/e2e/snapshots/mixed/line-scatter.png and b/tests/e2e/snapshots/mixed/line-scatter.png differ diff --git a/tests/e2e/snapshots/mixed/multiple-yaxes.png b/tests/e2e/snapshots/mixed/multiple-yaxes.png index 7db84b3ac..9e784d466 100644 Binary files a/tests/e2e/snapshots/mixed/multiple-yaxes.png and b/tests/e2e/snapshots/mixed/multiple-yaxes.png differ diff --git a/tests/e2e/snapshots/pie/donut-update.png b/tests/e2e/snapshots/pie/donut-update.png index b725406f2..afd806651 100644 Binary files a/tests/e2e/snapshots/pie/donut-update.png and b/tests/e2e/snapshots/pie/donut-update.png differ diff --git a/tests/e2e/snapshots/pie/donut-with-pattern.png b/tests/e2e/snapshots/pie/donut-with-pattern.png index 72b17abce..ca442a1da 100644 Binary files a/tests/e2e/snapshots/pie/donut-with-pattern.png and b/tests/e2e/snapshots/pie/donut-with-pattern.png differ diff --git a/tests/e2e/snapshots/pie/gradient-donut.png b/tests/e2e/snapshots/pie/gradient-donut.png index 2bdb02200..af09a5795 100644 Binary files a/tests/e2e/snapshots/pie/gradient-donut.png and b/tests/e2e/snapshots/pie/gradient-donut.png differ diff --git a/tests/e2e/snapshots/pie/monochrome-pie.png b/tests/e2e/snapshots/pie/monochrome-pie.png index c75766fd3..317df1aad 100644 Binary files a/tests/e2e/snapshots/pie/monochrome-pie.png and b/tests/e2e/snapshots/pie/monochrome-pie.png differ diff --git a/tests/e2e/snapshots/pie/pie-with-image.png b/tests/e2e/snapshots/pie/pie-with-image.png index a6ba27c25..0daddb148 100644 Binary files a/tests/e2e/snapshots/pie/pie-with-image.png and b/tests/e2e/snapshots/pie/pie-with-image.png differ diff --git a/tests/e2e/snapshots/pie/semi-donut.png b/tests/e2e/snapshots/pie/semi-donut.png index 12a2fe4bb..fbe8189f9 100644 Binary files a/tests/e2e/snapshots/pie/semi-donut.png and b/tests/e2e/snapshots/pie/semi-donut.png differ diff --git a/tests/e2e/snapshots/pie/simple-donut.png b/tests/e2e/snapshots/pie/simple-donut.png index 8a9b49bd9..90250126e 100644 Binary files a/tests/e2e/snapshots/pie/simple-donut.png and b/tests/e2e/snapshots/pie/simple-donut.png differ diff --git a/tests/e2e/snapshots/pie/simple-pie.png b/tests/e2e/snapshots/pie/simple-pie.png index 373044ef4..e089cddc2 100644 Binary files a/tests/e2e/snapshots/pie/simple-pie.png and b/tests/e2e/snapshots/pie/simple-pie.png differ diff --git a/tests/e2e/snapshots/polarArea/basic-polar-area.png b/tests/e2e/snapshots/polarArea/basic-polar-area.png index 9bbe58d69..0ec2d5a6d 100644 Binary files a/tests/e2e/snapshots/polarArea/basic-polar-area.png and b/tests/e2e/snapshots/polarArea/basic-polar-area.png differ diff --git a/tests/e2e/snapshots/polarArea/polar-area-monochrome.png b/tests/e2e/snapshots/polarArea/polar-area-monochrome.png index d0008ce52..767d82d64 100644 Binary files a/tests/e2e/snapshots/polarArea/polar-area-monochrome.png and b/tests/e2e/snapshots/polarArea/polar-area-monochrome.png differ diff --git a/tests/e2e/snapshots/radar/basic-radar.png b/tests/e2e/snapshots/radar/basic-radar.png index a6c79e534..2a661e59e 100644 Binary files a/tests/e2e/snapshots/radar/basic-radar.png and b/tests/e2e/snapshots/radar/basic-radar.png differ diff --git a/tests/e2e/snapshots/radar/radar-multiple-series.png b/tests/e2e/snapshots/radar/radar-multiple-series.png index 390aff01f..50efbea65 100644 Binary files a/tests/e2e/snapshots/radar/radar-multiple-series.png and b/tests/e2e/snapshots/radar/radar-multiple-series.png differ diff --git a/tests/e2e/snapshots/radar/radar-with-polygon-fill.png b/tests/e2e/snapshots/radar/radar-with-polygon-fill.png index c50b1a1d7..10871dfda 100644 Binary files a/tests/e2e/snapshots/radar/radar-with-polygon-fill.png and b/tests/e2e/snapshots/radar/radar-with-polygon-fill.png differ diff --git a/tests/e2e/snapshots/radialBar/circle-chart-multiple.png b/tests/e2e/snapshots/radialBar/circle-chart-multiple.png index 901900cd0..fbc1a7b2f 100644 Binary files a/tests/e2e/snapshots/radialBar/circle-chart-multiple.png and b/tests/e2e/snapshots/radialBar/circle-chart-multiple.png differ diff --git a/tests/e2e/snapshots/radialBar/circle-chart-with-image.png b/tests/e2e/snapshots/radialBar/circle-chart-with-image.png index ee449ac5f..b738343a4 100644 Binary files a/tests/e2e/snapshots/radialBar/circle-chart-with-image.png and b/tests/e2e/snapshots/radialBar/circle-chart-with-image.png differ diff --git a/tests/e2e/snapshots/radialBar/circle-chart.png b/tests/e2e/snapshots/radialBar/circle-chart.png index 14d87d7a8..95fea3ded 100644 Binary files a/tests/e2e/snapshots/radialBar/circle-chart.png and b/tests/e2e/snapshots/radialBar/circle-chart.png differ diff --git a/tests/e2e/snapshots/radialBar/circle-custom-angle.png b/tests/e2e/snapshots/radialBar/circle-custom-angle.png index f85a4c33a..1657afd83 100644 Binary files a/tests/e2e/snapshots/radialBar/circle-custom-angle.png and b/tests/e2e/snapshots/radialBar/circle-custom-angle.png differ diff --git a/tests/e2e/snapshots/radialBar/circle-gradient.png b/tests/e2e/snapshots/radialBar/circle-gradient.png index e5f4dc823..a72e8ffe8 100644 Binary files a/tests/e2e/snapshots/radialBar/circle-gradient.png and b/tests/e2e/snapshots/radialBar/circle-gradient.png differ diff --git a/tests/e2e/snapshots/radialBar/semi-circle-chart.png b/tests/e2e/snapshots/radialBar/semi-circle-chart.png index 7ac68f03c..5cf09b827 100644 Binary files a/tests/e2e/snapshots/radialBar/semi-circle-chart.png and b/tests/e2e/snapshots/radialBar/semi-circle-chart.png differ diff --git a/tests/e2e/snapshots/radialBar/stroked-gauge.png b/tests/e2e/snapshots/radialBar/stroked-gauge.png index 54071d8fa..1326a9861 100644 Binary files a/tests/e2e/snapshots/radialBar/stroked-gauge.png and b/tests/e2e/snapshots/radialBar/stroked-gauge.png differ diff --git a/tests/e2e/snapshots/rangeArea/basic-range-area.png b/tests/e2e/snapshots/rangeArea/basic-range-area.png index 1c0ef3ebc..59355855c 100644 Binary files a/tests/e2e/snapshots/rangeArea/basic-range-area.png and b/tests/e2e/snapshots/rangeArea/basic-range-area.png differ diff --git a/tests/e2e/snapshots/rangeArea/range-area-line-combo-monotoneCubic.png b/tests/e2e/snapshots/rangeArea/range-area-line-combo-monotoneCubic.png index edf975e4d..e98073b70 100644 Binary files a/tests/e2e/snapshots/rangeArea/range-area-line-combo-monotoneCubic.png and b/tests/e2e/snapshots/rangeArea/range-area-line-combo-monotoneCubic.png differ diff --git a/tests/e2e/snapshots/rangeArea/range-area-line-combo.png b/tests/e2e/snapshots/rangeArea/range-area-line-combo.png index 37e865cc0..b1fc465d1 100644 Binary files a/tests/e2e/snapshots/rangeArea/range-area-line-combo.png and b/tests/e2e/snapshots/rangeArea/range-area-line-combo.png differ diff --git a/tests/e2e/snapshots/scatter/scatter-basic.png b/tests/e2e/snapshots/scatter/scatter-basic.png index 1c997cae3..1b83436da 100644 Binary files a/tests/e2e/snapshots/scatter/scatter-basic.png and b/tests/e2e/snapshots/scatter/scatter-basic.png differ diff --git a/tests/e2e/snapshots/scatter/scatter-datetime.png b/tests/e2e/snapshots/scatter/scatter-datetime.png index 6745a4b7d..7b0240676 100644 Binary files a/tests/e2e/snapshots/scatter/scatter-datetime.png and b/tests/e2e/snapshots/scatter/scatter-datetime.png differ diff --git a/tests/e2e/snapshots/scatter/scatter-images.png b/tests/e2e/snapshots/scatter/scatter-images.png index cc3e07747..2089fc15b 100644 Binary files a/tests/e2e/snapshots/scatter/scatter-images.png and b/tests/e2e/snapshots/scatter/scatter-images.png differ diff --git a/tests/e2e/snapshots/slope/basic.png b/tests/e2e/snapshots/slope/basic.png new file mode 100644 index 000000000..07aba9f1b Binary files /dev/null and b/tests/e2e/snapshots/slope/basic.png differ diff --git a/tests/e2e/snapshots/slope/slope-style-2.png b/tests/e2e/snapshots/slope/slope-style-2.png new file mode 100644 index 000000000..b6c4953c3 Binary files /dev/null and b/tests/e2e/snapshots/slope/slope-style-2.png differ diff --git a/tests/e2e/snapshots/sparklines/sparklines.png b/tests/e2e/snapshots/sparklines/sparklines.png index ae4fb038e..8f7803cc3 100644 Binary files a/tests/e2e/snapshots/sparklines/sparklines.png and b/tests/e2e/snapshots/sparklines/sparklines.png differ diff --git a/tests/e2e/snapshots/timelines/advanced.png b/tests/e2e/snapshots/timelines/advanced.png index 10161b7d7..11dd8b1f2 100644 Binary files a/tests/e2e/snapshots/timelines/advanced.png and b/tests/e2e/snapshots/timelines/advanced.png differ diff --git a/tests/e2e/snapshots/timelines/brush-rangebars.png b/tests/e2e/snapshots/timelines/brush-rangebars.png index 79540c52f..734a30ee8 100644 Binary files a/tests/e2e/snapshots/timelines/brush-rangebars.png and b/tests/e2e/snapshots/timelines/brush-rangebars.png differ diff --git a/tests/e2e/snapshots/timelines/controlling-colors.png b/tests/e2e/snapshots/timelines/controlling-colors.png index 8964c6e09..82a2e61d9 100644 Binary files a/tests/e2e/snapshots/timelines/controlling-colors.png and b/tests/e2e/snapshots/timelines/controlling-colors.png differ diff --git a/tests/e2e/snapshots/timelines/dumbbell-chart-horizontal.png b/tests/e2e/snapshots/timelines/dumbbell-chart-horizontal.png index 1f571df7b..aff597a54 100644 Binary files a/tests/e2e/snapshots/timelines/dumbbell-chart-horizontal.png and b/tests/e2e/snapshots/timelines/dumbbell-chart-horizontal.png differ diff --git a/tests/e2e/snapshots/timelines/multi-series-group-rows.png b/tests/e2e/snapshots/timelines/multi-series-group-rows.png index 170d2527f..1243de536 100644 Binary files a/tests/e2e/snapshots/timelines/multi-series-group-rows.png and b/tests/e2e/snapshots/timelines/multi-series-group-rows.png differ diff --git a/tests/e2e/snapshots/timelines/multi-series.png b/tests/e2e/snapshots/timelines/multi-series.png index 0dc005679..bbaaeced2 100644 Binary files a/tests/e2e/snapshots/timelines/multi-series.png and b/tests/e2e/snapshots/timelines/multi-series.png differ diff --git a/tests/e2e/snapshots/timelines/simple.png b/tests/e2e/snapshots/timelines/simple.png index e2d4ef1d6..c099c309b 100644 Binary files a/tests/e2e/snapshots/timelines/simple.png and b/tests/e2e/snapshots/timelines/simple.png differ diff --git a/tests/e2e/snapshots/treemap/basic.png b/tests/e2e/snapshots/treemap/basic.png index 8f3decd5b..3e0bca8d9 100644 Binary files a/tests/e2e/snapshots/treemap/basic.png and b/tests/e2e/snapshots/treemap/basic.png differ diff --git a/tests/e2e/snapshots/treemap/color-scale.png b/tests/e2e/snapshots/treemap/color-scale.png index 460c0ccf6..d08ff0712 100644 Binary files a/tests/e2e/snapshots/treemap/color-scale.png and b/tests/e2e/snapshots/treemap/color-scale.png differ diff --git a/tests/e2e/snapshots/treemap/distributed.png b/tests/e2e/snapshots/treemap/distributed.png index a820abacc..517e08bca 100644 Binary files a/tests/e2e/snapshots/treemap/distributed.png and b/tests/e2e/snapshots/treemap/distributed.png differ diff --git a/tests/e2e/snapshots/treemap/multi-dimensional.png b/tests/e2e/snapshots/treemap/multi-dimensional.png index 4b74fb56f..9070d27f8 100644 Binary files a/tests/e2e/snapshots/treemap/multi-dimensional.png and b/tests/e2e/snapshots/treemap/multi-dimensional.png differ