diff --git a/src/legends/ramp.js b/src/legends/ramp.js index 3dcaf411c6..b7999b93a3 100644 --- a/src/legends/ramp.js +++ b/src/legends/ramp.js @@ -29,6 +29,8 @@ export function legendRamp(color, options) { if (tickFormat === null) tickFormat = () => null; const svg = create("svg", context) + .attr("xmlns", "http://www.w3.org/2000/svg") + .attr("xmlns:xlink", "http://www.w3.org/1999/xlink") .attr("class", `${className}-ramp`) .attr("font-family", "system-ui, sans-serif") .attr("font-size", 10) diff --git a/src/legends/swatches.js b/src/legends/swatches.js index b628a0a5af..13e61974b6 100644 --- a/src/legends/swatches.js +++ b/src/legends/swatches.js @@ -19,6 +19,8 @@ export function legendSwatches(color, {opacity, ...options} = {}) { return legendItems(color, options, (selection, scale, width, height) => selection .append("svg") + .attr("xmlns", "http://www.w3.org/2000/svg") + .attr("xmlns:xlink", "http://www.w3.org/1999/xlink") .attr("width", width) .attr("height", height) .attr("fill", scale.scale) @@ -53,6 +55,8 @@ export function legendSymbols( return legendItems(symbol, options, (selection, scale, width, height) => selection .append("svg") + .attr("xmlns", "http://www.w3.org/2000/svg") + .attr("xmlns:xlink", "http://www.w3.org/1999/xlink") .attr("viewBox", "-8 -8 16 16") .attr("width", width) .attr("height", height) diff --git a/src/plot.js b/src/plot.js index a7383a66c7..7d4906636e 100644 --- a/src/plot.js +++ b/src/plot.js @@ -158,6 +158,8 @@ export function plot(options = {}) { context.ownerSVGElement = svg; context.className = className; context.projection = createProjection(options, subdimensions); + svg.setAttributeNS("http://www.w3.org/2000/xmlns/", "xmlns", "http://www.w3.org/2000/svg"); + svg.setAttributeNS("http://www.w3.org/2000/xmlns/", "xmlns:xlink", "http://www.w3.org/1999/xlink"); // Allows e.g. the axis mark to determine faceting lazily. context.filterFacets = (data, channels) => { diff --git a/test/output/aaplBollinger.svg b/test/output/aaplBollinger.svg index 1b83587f35..44a5797bc7 100644 --- a/test/output/aaplBollinger.svg +++ b/test/output/aaplBollinger.svg @@ -1,4 +1,4 @@ - + + - ESP + ESP - KOR + KOR - CAN + CAN - MDA + MDA - NZL + NZL - AUS + AUS - USA + USA - ETH + ETH - BRN + BRN IOA - + + - ESP + ESP - KOR + KOR - CAN + CAN - MDA + MDA - NZL + NZL - AUS + AUS - USA + USA - ETH + ETH - BRN + BRN IOA - + + - FEMALE + FEMALE - MALE + MALE null - + + - N + N - L + L B - + + - A + A - B + B - C + C - D + D - E + E - F + F - G + G - H + H - I + I J \ No newline at end of file diff --git a/test/output/colorLegendCategoricalColumns.html b/test/output/colorLegendCategoricalColumns.html index f5745a0742..74ae8a61c8 100644 --- a/test/output/colorLegendCategoricalColumns.html +++ b/test/output/colorLegendCategoricalColumns.html @@ -28,52 +28,52 @@ text-overflow: ellipsis; } -
+
Wholesale and Retail Trade
-
+
Manufacturing
-
+
Leisure and hospitality
-
+
Business services
-
+
Construction
-
+
Education and Health
-
+
Government
-
+
Finance
-
+
Self-employed
-
+
Other
diff --git a/test/output/colorLegendCategoricalReverse.html b/test/output/colorLegendCategoricalReverse.html index 80c739aaf3..ce974857cd 100644 --- a/test/output/colorLegendCategoricalReverse.html +++ b/test/output/colorLegendCategoricalReverse.html @@ -23,25 +23,25 @@ align-items: center; margin-right: 1em; } - + - J + J - I + I - H + H - G + G - F + F - E + E - D + D - C + C - B + B A
\ No newline at end of file diff --git a/test/output/colorLegendCategoricalScheme.html b/test/output/colorLegendCategoricalScheme.html index ea5005e09e..7689f603c1 100644 --- a/test/output/colorLegendCategoricalScheme.html +++ b/test/output/colorLegendCategoricalScheme.html @@ -23,25 +23,25 @@ align-items: center; margin-right: 1em; } - + - A + A - B + B - C + C - D + D - E + E - F + F - G + G - H + H - I + I J
\ No newline at end of file diff --git a/test/output/colorLegendDiverging.svg b/test/output/colorLegendDiverging.svg index 2f633239ac..b9ad0ce71e 100644 --- a/test/output/colorLegendDiverging.svg +++ b/test/output/colorLegendDiverging.svg @@ -1,4 +1,4 @@ - + + - Dream + Dream - Torgersen + Torgersen Biscoe
\ No newline at end of file diff --git a/test/output/colorLegendOpacityOrdinalRamp.svg b/test/output/colorLegendOpacityOrdinalRamp.svg index a5b7d1390a..392d0292a9 100644 --- a/test/output/colorLegendOpacityOrdinalRamp.svg +++ b/test/output/colorLegendOpacityOrdinalRamp.svg @@ -1,4 +1,4 @@ - + + - A + A - B + B - C + C - D + D - E + E - F + F - G + G - H + H - I + I J
\ No newline at end of file diff --git a/test/output/colorLegendOrdinalRamp.svg b/test/output/colorLegendOrdinalRamp.svg index 6bad69e654..2a02e4ac13 100644 --- a/test/output/colorLegendOrdinalRamp.svg +++ b/test/output/colorLegendOrdinalRamp.svg @@ -1,4 +1,4 @@ - + + - A + A - B + B - C + C - D + D - E + E - F + F - G + G - H + H - I + I J
\ No newline at end of file diff --git a/test/output/colorLegendOrdinalSchemeRamp.svg b/test/output/colorLegendOrdinalSchemeRamp.svg index 4fc6d7b995..b7e84fd0a5 100644 --- a/test/output/colorLegendOrdinalSchemeRamp.svg +++ b/test/output/colorLegendOrdinalSchemeRamp.svg @@ -1,4 +1,4 @@ - + + - 1.0 + 1.0 - 2.0 + 2.0 - 3.0 + 3.0 - 4.0 + 4.0 5.0
\ No newline at end of file diff --git a/test/output/colorLegendOrdinalTickFormatFunction.html b/test/output/colorLegendOrdinalTickFormatFunction.html index db26640ccb..d71c9c8595 100644 --- a/test/output/colorLegendOrdinalTickFormatFunction.html +++ b/test/output/colorLegendOrdinalTickFormatFunction.html @@ -23,15 +23,15 @@ align-items: center; margin-right: 1em; } - + - 1.0 + 1.0 - 2.0 + 2.0 - 3.0 + 3.0 - 4.0 + 4.0 5.0
\ No newline at end of file diff --git a/test/output/colorLegendOrdinalTicks.svg b/test/output/colorLegendOrdinalTicks.svg index 80ea1f63fe..02250ef516 100644 --- a/test/output/colorLegendOrdinalTicks.svg +++ b/test/output/colorLegendOrdinalTicks.svg @@ -1,4 +1,4 @@ - + + - 200 + 200 - 800 + 800 - 1,800 + 1,800 - 3,201 + 3,201 - 5,001 + 5,001 7,201
\ No newline at end of file diff --git a/test/output/colorLegendQuantitative.svg b/test/output/colorLegendQuantitative.svg index 477a177958..bae9fcb44f 100644 --- a/test/output/colorLegendQuantitative.svg +++ b/test/output/colorLegendQuantitative.svg @@ -1,4 +1,4 @@ - + + accent
@@ -53,9 +53,9 @@ align-items: center; margin-right: 1em; } - + - accent + accent 1
@@ -84,13 +84,13 @@ align-items: center; margin-right: 1em; } - + - accent + accent - 1 + 1 - 2 + 2 3
@@ -119,23 +119,23 @@ align-items: center; margin-right: 1em; } - + - accent + accent - 1 + 1 - 2 + 2 - 3 + 3 - 4 + 4 - 5 + 5 - 6 + 6 - 7 + 7 8 @@ -164,35 +164,35 @@ align-items: center; margin-right: 1em; } - + - accent + accent - 1 + 1 - 2 + 2 - 3 + 3 - 4 + 4 - 5 + 5 - 6 + 6 - 7 + 7 - 8 + 8 - 9 + 9 - 0 + 0 - A + A - B + B - C + C D @@ -221,7 +221,7 @@ align-items: center; margin-right: 1em; } - + category10 @@ -250,9 +250,9 @@ align-items: center; margin-right: 1em; } - + - category10 + category10 1 @@ -281,13 +281,13 @@ align-items: center; margin-right: 1em; } - + - category10 + category10 - 1 + 1 - 2 + 2 3 @@ -316,23 +316,23 @@ align-items: center; margin-right: 1em; } - + - category10 + category10 - 1 + 1 - 2 + 2 - 3 + 3 - 4 + 4 - 5 + 5 - 6 + 6 - 7 + 7 8 @@ -361,35 +361,35 @@ align-items: center; margin-right: 1em; } - + - category10 + category10 - 1 + 1 - 2 + 2 - 3 + 3 - 4 + 4 - 5 + 5 - 6 + 6 - 7 + 7 - 8 + 8 - 9 + 9 - 0 + 0 - A + A - B + B - C + C D @@ -418,7 +418,7 @@ align-items: center; margin-right: 1em; } - + dark2 @@ -447,9 +447,9 @@ align-items: center; margin-right: 1em; } - + - dark2 + dark2 1 @@ -478,13 +478,13 @@ align-items: center; margin-right: 1em; } - + - dark2 + dark2 - 1 + 1 - 2 + 2 3 @@ -513,23 +513,23 @@ align-items: center; margin-right: 1em; } - + - dark2 + dark2 - 1 + 1 - 2 + 2 - 3 + 3 - 4 + 4 - 5 + 5 - 6 + 6 - 7 + 7 8 @@ -558,35 +558,35 @@ align-items: center; margin-right: 1em; } - + - dark2 + dark2 - 1 + 1 - 2 + 2 - 3 + 3 - 4 + 4 - 5 + 5 - 6 + 6 - 7 + 7 - 8 + 8 - 9 + 9 - 0 + 0 - A + A - B + B - C + C D @@ -615,7 +615,7 @@ align-items: center; margin-right: 1em; } - + paired @@ -644,9 +644,9 @@ align-items: center; margin-right: 1em; } - + - paired + paired 1 @@ -675,13 +675,13 @@ align-items: center; margin-right: 1em; } - + - paired + paired - 1 + 1 - 2 + 2 3 @@ -710,23 +710,23 @@ align-items: center; margin-right: 1em; } - + - paired + paired - 1 + 1 - 2 + 2 - 3 + 3 - 4 + 4 - 5 + 5 - 6 + 6 - 7 + 7 8 @@ -755,35 +755,35 @@ align-items: center; margin-right: 1em; } - + - paired + paired - 1 + 1 - 2 + 2 - 3 + 3 - 4 + 4 - 5 + 5 - 6 + 6 - 7 + 7 - 8 + 8 - 9 + 9 - 0 + 0 - A + A - B + B - C + C D @@ -812,7 +812,7 @@ align-items: center; margin-right: 1em; } - + pastel1 @@ -841,9 +841,9 @@ align-items: center; margin-right: 1em; } - + - pastel1 + pastel1 1 @@ -872,13 +872,13 @@ align-items: center; margin-right: 1em; } - + - pastel1 + pastel1 - 1 + 1 - 2 + 2 3 @@ -907,23 +907,23 @@ align-items: center; margin-right: 1em; } - + - pastel1 + pastel1 - 1 + 1 - 2 + 2 - 3 + 3 - 4 + 4 - 5 + 5 - 6 + 6 - 7 + 7 8 @@ -952,35 +952,35 @@ align-items: center; margin-right: 1em; } - + - pastel1 + pastel1 - 1 + 1 - 2 + 2 - 3 + 3 - 4 + 4 - 5 + 5 - 6 + 6 - 7 + 7 - 8 + 8 - 9 + 9 - 0 + 0 - A + A - B + B - C + C D @@ -1009,7 +1009,7 @@ align-items: center; margin-right: 1em; } - + pastel2 @@ -1038,9 +1038,9 @@ align-items: center; margin-right: 1em; } - + - pastel2 + pastel2 1 @@ -1069,13 +1069,13 @@ align-items: center; margin-right: 1em; } - + - pastel2 + pastel2 - 1 + 1 - 2 + 2 3 @@ -1104,23 +1104,23 @@ align-items: center; margin-right: 1em; } - + - pastel2 + pastel2 - 1 + 1 - 2 + 2 - 3 + 3 - 4 + 4 - 5 + 5 - 6 + 6 - 7 + 7 8 @@ -1149,35 +1149,35 @@ align-items: center; margin-right: 1em; } - + - pastel2 + pastel2 - 1 + 1 - 2 + 2 - 3 + 3 - 4 + 4 - 5 + 5 - 6 + 6 - 7 + 7 - 8 + 8 - 9 + 9 - 0 + 0 - A + A - B + B - C + C D @@ -1206,7 +1206,7 @@ align-items: center; margin-right: 1em; } - + set1 @@ -1235,9 +1235,9 @@ align-items: center; margin-right: 1em; } - + - set1 + set1 1 @@ -1266,13 +1266,13 @@ align-items: center; margin-right: 1em; } - + - set1 + set1 - 1 + 1 - 2 + 2 3 @@ -1301,23 +1301,23 @@ align-items: center; margin-right: 1em; } - + - set1 + set1 - 1 + 1 - 2 + 2 - 3 + 3 - 4 + 4 - 5 + 5 - 6 + 6 - 7 + 7 8 @@ -1346,35 +1346,35 @@ align-items: center; margin-right: 1em; } - + - set1 + set1 - 1 + 1 - 2 + 2 - 3 + 3 - 4 + 4 - 5 + 5 - 6 + 6 - 7 + 7 - 8 + 8 - 9 + 9 - 0 + 0 - A + A - B + B - C + C D @@ -1403,7 +1403,7 @@ align-items: center; margin-right: 1em; } - + set2 @@ -1432,9 +1432,9 @@ align-items: center; margin-right: 1em; } - + - set2 + set2 1 @@ -1463,13 +1463,13 @@ align-items: center; margin-right: 1em; } - + - set2 + set2 - 1 + 1 - 2 + 2 3 @@ -1498,23 +1498,23 @@ align-items: center; margin-right: 1em; } - + - set2 + set2 - 1 + 1 - 2 + 2 - 3 + 3 - 4 + 4 - 5 + 5 - 6 + 6 - 7 + 7 8 @@ -1543,35 +1543,35 @@ align-items: center; margin-right: 1em; } - + - set2 + set2 - 1 + 1 - 2 + 2 - 3 + 3 - 4 + 4 - 5 + 5 - 6 + 6 - 7 + 7 - 8 + 8 - 9 + 9 - 0 + 0 - A + A - B + B - C + C D @@ -1600,7 +1600,7 @@ align-items: center; margin-right: 1em; } - + set3 @@ -1629,9 +1629,9 @@ align-items: center; margin-right: 1em; } - + - set3 + set3 1 @@ -1660,13 +1660,13 @@ align-items: center; margin-right: 1em; } - + - set3 + set3 - 1 + 1 - 2 + 2 3 @@ -1695,23 +1695,23 @@ align-items: center; margin-right: 1em; } - + - set3 + set3 - 1 + 1 - 2 + 2 - 3 + 3 - 4 + 4 - 5 + 5 - 6 + 6 - 7 + 7 8 @@ -1740,35 +1740,35 @@ align-items: center; margin-right: 1em; } - + - set3 + set3 - 1 + 1 - 2 + 2 - 3 + 3 - 4 + 4 - 5 + 5 - 6 + 6 - 7 + 7 - 8 + 8 - 9 + 9 - 0 + 0 - A + A - B + B - C + C D @@ -1797,7 +1797,7 @@ align-items: center; margin-right: 1em; } - + tableau10 @@ -1826,9 +1826,9 @@ align-items: center; margin-right: 1em; } - + - tableau10 + tableau10 1 @@ -1857,13 +1857,13 @@ align-items: center; margin-right: 1em; } - + - tableau10 + tableau10 - 1 + 1 - 2 + 2 3 @@ -1892,23 +1892,23 @@ align-items: center; margin-right: 1em; } - + - tableau10 + tableau10 - 1 + 1 - 2 + 2 - 3 + 3 - 4 + 4 - 5 + 5 - 6 + 6 - 7 + 7 8 @@ -1937,35 +1937,35 @@ align-items: center; margin-right: 1em; } - + - tableau10 + tableau10 - 1 + 1 - 2 + 2 - 3 + 3 - 4 + 4 - 5 + 5 - 6 + 6 - 7 + 7 - 8 + 8 - 9 + 9 - 0 + 0 - A + A - B + B - C + C D @@ -1994,7 +1994,7 @@ align-items: center; margin-right: 1em; } - + brbg @@ -2023,9 +2023,9 @@ align-items: center; margin-right: 1em; } - + - brbg + brbg 1 @@ -2054,13 +2054,13 @@ align-items: center; margin-right: 1em; } - + - brbg + brbg - 1 + 1 - 2 + 2 3 @@ -2089,23 +2089,23 @@ align-items: center; margin-right: 1em; } - + - brbg + brbg - 1 + 1 - 2 + 2 - 3 + 3 - 4 + 4 - 5 + 5 - 6 + 6 - 7 + 7 8 @@ -2134,35 +2134,35 @@ align-items: center; margin-right: 1em; } - + - brbg + brbg - 1 + 1 - 2 + 2 - 3 + 3 - 4 + 4 - 5 + 5 - 6 + 6 - 7 + 7 - 8 + 8 - 9 + 9 - 0 + 0 - A + A - B + B - C + C D @@ -2191,7 +2191,7 @@ align-items: center; margin-right: 1em; } - + prgn @@ -2220,9 +2220,9 @@ align-items: center; margin-right: 1em; } - + - prgn + prgn 1 @@ -2251,13 +2251,13 @@ align-items: center; margin-right: 1em; } - + - prgn + prgn - 1 + 1 - 2 + 2 3 @@ -2286,23 +2286,23 @@ align-items: center; margin-right: 1em; } - + - prgn + prgn - 1 + 1 - 2 + 2 - 3 + 3 - 4 + 4 - 5 + 5 - 6 + 6 - 7 + 7 8 @@ -2331,35 +2331,35 @@ align-items: center; margin-right: 1em; } - + - prgn + prgn - 1 + 1 - 2 + 2 - 3 + 3 - 4 + 4 - 5 + 5 - 6 + 6 - 7 + 7 - 8 + 8 - 9 + 9 - 0 + 0 - A + A - B + B - C + C D @@ -2388,7 +2388,7 @@ align-items: center; margin-right: 1em; } - + piyg @@ -2417,9 +2417,9 @@ align-items: center; margin-right: 1em; } - + - piyg + piyg 1 @@ -2448,13 +2448,13 @@ align-items: center; margin-right: 1em; } - + - piyg + piyg - 1 + 1 - 2 + 2 3 @@ -2483,23 +2483,23 @@ align-items: center; margin-right: 1em; } - + - piyg + piyg - 1 + 1 - 2 + 2 - 3 + 3 - 4 + 4 - 5 + 5 - 6 + 6 - 7 + 7 8 @@ -2528,35 +2528,35 @@ align-items: center; margin-right: 1em; } - + - piyg + piyg - 1 + 1 - 2 + 2 - 3 + 3 - 4 + 4 - 5 + 5 - 6 + 6 - 7 + 7 - 8 + 8 - 9 + 9 - 0 + 0 - A + A - B + B - C + C D @@ -2585,7 +2585,7 @@ align-items: center; margin-right: 1em; } - + puor @@ -2614,9 +2614,9 @@ align-items: center; margin-right: 1em; } - + - puor + puor 1 @@ -2645,13 +2645,13 @@ align-items: center; margin-right: 1em; } - + - puor + puor - 1 + 1 - 2 + 2 3 @@ -2680,23 +2680,23 @@ align-items: center; margin-right: 1em; } - + - puor + puor - 1 + 1 - 2 + 2 - 3 + 3 - 4 + 4 - 5 + 5 - 6 + 6 - 7 + 7 8 @@ -2725,35 +2725,35 @@ align-items: center; margin-right: 1em; } - + - puor + puor - 1 + 1 - 2 + 2 - 3 + 3 - 4 + 4 - 5 + 5 - 6 + 6 - 7 + 7 - 8 + 8 - 9 + 9 - 0 + 0 - A + A - B + B - C + C D @@ -2782,7 +2782,7 @@ align-items: center; margin-right: 1em; } - + rdbu @@ -2811,9 +2811,9 @@ align-items: center; margin-right: 1em; } - + - rdbu + rdbu 1 @@ -2842,13 +2842,13 @@ align-items: center; margin-right: 1em; } - + - rdbu + rdbu - 1 + 1 - 2 + 2 3 @@ -2877,23 +2877,23 @@ align-items: center; margin-right: 1em; } - + - rdbu + rdbu - 1 + 1 - 2 + 2 - 3 + 3 - 4 + 4 - 5 + 5 - 6 + 6 - 7 + 7 8 @@ -2922,35 +2922,35 @@ align-items: center; margin-right: 1em; } - + - rdbu + rdbu - 1 + 1 - 2 + 2 - 3 + 3 - 4 + 4 - 5 + 5 - 6 + 6 - 7 + 7 - 8 + 8 - 9 + 9 - 0 + 0 - A + A - B + B - C + C D @@ -2979,7 +2979,7 @@ align-items: center; margin-right: 1em; } - + rdgy @@ -3008,9 +3008,9 @@ align-items: center; margin-right: 1em; } - + - rdgy + rdgy 1 @@ -3039,13 +3039,13 @@ align-items: center; margin-right: 1em; } - + - rdgy + rdgy - 1 + 1 - 2 + 2 3 @@ -3074,23 +3074,23 @@ align-items: center; margin-right: 1em; } - + - rdgy + rdgy - 1 + 1 - 2 + 2 - 3 + 3 - 4 + 4 - 5 + 5 - 6 + 6 - 7 + 7 8 @@ -3119,35 +3119,35 @@ align-items: center; margin-right: 1em; } - + - rdgy + rdgy - 1 + 1 - 2 + 2 - 3 + 3 - 4 + 4 - 5 + 5 - 6 + 6 - 7 + 7 - 8 + 8 - 9 + 9 - 0 + 0 - A + A - B + B - C + C D @@ -3176,7 +3176,7 @@ align-items: center; margin-right: 1em; } - + rdylbu @@ -3205,9 +3205,9 @@ align-items: center; margin-right: 1em; } - + - rdylbu + rdylbu 1 @@ -3236,13 +3236,13 @@ align-items: center; margin-right: 1em; } - + - rdylbu + rdylbu - 1 + 1 - 2 + 2 3 @@ -3271,23 +3271,23 @@ align-items: center; margin-right: 1em; } - + - rdylbu + rdylbu - 1 + 1 - 2 + 2 - 3 + 3 - 4 + 4 - 5 + 5 - 6 + 6 - 7 + 7 8 @@ -3316,35 +3316,35 @@ align-items: center; margin-right: 1em; } - + - rdylbu + rdylbu - 1 + 1 - 2 + 2 - 3 + 3 - 4 + 4 - 5 + 5 - 6 + 6 - 7 + 7 - 8 + 8 - 9 + 9 - 0 + 0 - A + A - B + B - C + C D @@ -3373,7 +3373,7 @@ align-items: center; margin-right: 1em; } - + rdylgn @@ -3402,9 +3402,9 @@ align-items: center; margin-right: 1em; } - + - rdylgn + rdylgn 1 @@ -3433,13 +3433,13 @@ align-items: center; margin-right: 1em; } - + - rdylgn + rdylgn - 1 + 1 - 2 + 2 3 @@ -3468,23 +3468,23 @@ align-items: center; margin-right: 1em; } - + - rdylgn + rdylgn - 1 + 1 - 2 + 2 - 3 + 3 - 4 + 4 - 5 + 5 - 6 + 6 - 7 + 7 8 @@ -3513,35 +3513,35 @@ align-items: center; margin-right: 1em; } - + - rdylgn + rdylgn - 1 + 1 - 2 + 2 - 3 + 3 - 4 + 4 - 5 + 5 - 6 + 6 - 7 + 7 - 8 + 8 - 9 + 9 - 0 + 0 - A + A - B + B - C + C D @@ -3570,7 +3570,7 @@ align-items: center; margin-right: 1em; } - + spectral @@ -3599,9 +3599,9 @@ align-items: center; margin-right: 1em; } - + - spectral + spectral 1 @@ -3630,13 +3630,13 @@ align-items: center; margin-right: 1em; } - + - spectral + spectral - 1 + 1 - 2 + 2 3 @@ -3665,23 +3665,23 @@ align-items: center; margin-right: 1em; } - + - spectral + spectral - 1 + 1 - 2 + 2 - 3 + 3 - 4 + 4 - 5 + 5 - 6 + 6 - 7 + 7 8 @@ -3710,35 +3710,35 @@ align-items: center; margin-right: 1em; } - + - spectral + spectral - 1 + 1 - 2 + 2 - 3 + 3 - 4 + 4 - 5 + 5 - 6 + 6 - 7 + 7 - 8 + 8 - 9 + 9 - 0 + 0 - A + A - B + B - C + C D @@ -3767,7 +3767,7 @@ align-items: center; margin-right: 1em; } - + burd @@ -3796,9 +3796,9 @@ align-items: center; margin-right: 1em; } - + - burd + burd 1 @@ -3827,13 +3827,13 @@ align-items: center; margin-right: 1em; } - + - burd + burd - 1 + 1 - 2 + 2 3 @@ -3862,23 +3862,23 @@ align-items: center; margin-right: 1em; } - + - burd + burd - 1 + 1 - 2 + 2 - 3 + 3 - 4 + 4 - 5 + 5 - 6 + 6 - 7 + 7 8 @@ -3907,35 +3907,35 @@ align-items: center; margin-right: 1em; } - + - burd + burd - 1 + 1 - 2 + 2 - 3 + 3 - 4 + 4 - 5 + 5 - 6 + 6 - 7 + 7 - 8 + 8 - 9 + 9 - 0 + 0 - A + A - B + B - C + C D @@ -3964,7 +3964,7 @@ align-items: center; margin-right: 1em; } - + buylrd @@ -3993,9 +3993,9 @@ align-items: center; margin-right: 1em; } - + - buylrd + buylrd 1 @@ -4024,13 +4024,13 @@ align-items: center; margin-right: 1em; } - + - buylrd + buylrd - 1 + 1 - 2 + 2 3 @@ -4059,23 +4059,23 @@ align-items: center; margin-right: 1em; } - + - buylrd + buylrd - 1 + 1 - 2 + 2 - 3 + 3 - 4 + 4 - 5 + 5 - 6 + 6 - 7 + 7 8 @@ -4104,35 +4104,35 @@ align-items: center; margin-right: 1em; } - + - buylrd + buylrd - 1 + 1 - 2 + 2 - 3 + 3 - 4 + 4 - 5 + 5 - 6 + 6 - 7 + 7 - 8 + 8 - 9 + 9 - 0 + 0 - A + A - B + B - C + C D @@ -4161,7 +4161,7 @@ align-items: center; margin-right: 1em; } - + blues @@ -4190,9 +4190,9 @@ align-items: center; margin-right: 1em; } - + - blues + blues 1 @@ -4221,13 +4221,13 @@ align-items: center; margin-right: 1em; } - + - blues + blues - 1 + 1 - 2 + 2 3 @@ -4256,23 +4256,23 @@ align-items: center; margin-right: 1em; } - + - blues + blues - 1 + 1 - 2 + 2 - 3 + 3 - 4 + 4 - 5 + 5 - 6 + 6 - 7 + 7 8 @@ -4301,35 +4301,35 @@ align-items: center; margin-right: 1em; } - + - blues + blues - 1 + 1 - 2 + 2 - 3 + 3 - 4 + 4 - 5 + 5 - 6 + 6 - 7 + 7 - 8 + 8 - 9 + 9 - 0 + 0 - A + A - B + B - C + C D @@ -4358,7 +4358,7 @@ align-items: center; margin-right: 1em; } - + greens @@ -4387,9 +4387,9 @@ align-items: center; margin-right: 1em; } - + - greens + greens 1 @@ -4418,13 +4418,13 @@ align-items: center; margin-right: 1em; } - + - greens + greens - 1 + 1 - 2 + 2 3 @@ -4453,23 +4453,23 @@ align-items: center; margin-right: 1em; } - + - greens + greens - 1 + 1 - 2 + 2 - 3 + 3 - 4 + 4 - 5 + 5 - 6 + 6 - 7 + 7 8 @@ -4498,35 +4498,35 @@ align-items: center; margin-right: 1em; } - + - greens + greens - 1 + 1 - 2 + 2 - 3 + 3 - 4 + 4 - 5 + 5 - 6 + 6 - 7 + 7 - 8 + 8 - 9 + 9 - 0 + 0 - A + A - B + B - C + C D @@ -4555,7 +4555,7 @@ align-items: center; margin-right: 1em; } - + greys @@ -4584,9 +4584,9 @@ align-items: center; margin-right: 1em; } - + - greys + greys 1 @@ -4615,13 +4615,13 @@ align-items: center; margin-right: 1em; } - + - greys + greys - 1 + 1 - 2 + 2 3 @@ -4650,23 +4650,23 @@ align-items: center; margin-right: 1em; } - + - greys + greys - 1 + 1 - 2 + 2 - 3 + 3 - 4 + 4 - 5 + 5 - 6 + 6 - 7 + 7 8 @@ -4695,35 +4695,35 @@ align-items: center; margin-right: 1em; } - + - greys + greys - 1 + 1 - 2 + 2 - 3 + 3 - 4 + 4 - 5 + 5 - 6 + 6 - 7 + 7 - 8 + 8 - 9 + 9 - 0 + 0 - A + A - B + B - C + C D @@ -4752,7 +4752,7 @@ align-items: center; margin-right: 1em; } - + oranges @@ -4781,9 +4781,9 @@ align-items: center; margin-right: 1em; } - + - oranges + oranges 1 @@ -4812,13 +4812,13 @@ align-items: center; margin-right: 1em; } - + - oranges + oranges - 1 + 1 - 2 + 2 3 @@ -4847,23 +4847,23 @@ align-items: center; margin-right: 1em; } - + - oranges + oranges - 1 + 1 - 2 + 2 - 3 + 3 - 4 + 4 - 5 + 5 - 6 + 6 - 7 + 7 8 @@ -4892,35 +4892,35 @@ align-items: center; margin-right: 1em; } - + - oranges + oranges - 1 + 1 - 2 + 2 - 3 + 3 - 4 + 4 - 5 + 5 - 6 + 6 - 7 + 7 - 8 + 8 - 9 + 9 - 0 + 0 - A + A - B + B - C + C D @@ -4949,7 +4949,7 @@ align-items: center; margin-right: 1em; } - + purples @@ -4978,9 +4978,9 @@ align-items: center; margin-right: 1em; } - + - purples + purples 1 @@ -5009,13 +5009,13 @@ align-items: center; margin-right: 1em; } - + - purples + purples - 1 + 1 - 2 + 2 3 @@ -5044,23 +5044,23 @@ align-items: center; margin-right: 1em; } - + - purples + purples - 1 + 1 - 2 + 2 - 3 + 3 - 4 + 4 - 5 + 5 - 6 + 6 - 7 + 7 8 @@ -5089,35 +5089,35 @@ align-items: center; margin-right: 1em; } - + - purples + purples - 1 + 1 - 2 + 2 - 3 + 3 - 4 + 4 - 5 + 5 - 6 + 6 - 7 + 7 - 8 + 8 - 9 + 9 - 0 + 0 - A + A - B + B - C + C D @@ -5146,7 +5146,7 @@ align-items: center; margin-right: 1em; } - + reds @@ -5175,9 +5175,9 @@ align-items: center; margin-right: 1em; } - + - reds + reds 1 @@ -5206,13 +5206,13 @@ align-items: center; margin-right: 1em; } - + - reds + reds - 1 + 1 - 2 + 2 3 @@ -5241,23 +5241,23 @@ align-items: center; margin-right: 1em; } - + - reds + reds - 1 + 1 - 2 + 2 - 3 + 3 - 4 + 4 - 5 + 5 - 6 + 6 - 7 + 7 8 @@ -5286,35 +5286,35 @@ align-items: center; margin-right: 1em; } - + - reds + reds - 1 + 1 - 2 + 2 - 3 + 3 - 4 + 4 - 5 + 5 - 6 + 6 - 7 + 7 - 8 + 8 - 9 + 9 - 0 + 0 - A + A - B + B - C + C D @@ -5343,7 +5343,7 @@ align-items: center; margin-right: 1em; } - + turbo @@ -5372,9 +5372,9 @@ align-items: center; margin-right: 1em; } - + - turbo + turbo 1 @@ -5403,13 +5403,13 @@ align-items: center; margin-right: 1em; } - + - turbo + turbo - 1 + 1 - 2 + 2 3 @@ -5438,23 +5438,23 @@ align-items: center; margin-right: 1em; } - + - turbo + turbo - 1 + 1 - 2 + 2 - 3 + 3 - 4 + 4 - 5 + 5 - 6 + 6 - 7 + 7 8 @@ -5483,35 +5483,35 @@ align-items: center; margin-right: 1em; } - + - turbo + turbo - 1 + 1 - 2 + 2 - 3 + 3 - 4 + 4 - 5 + 5 - 6 + 6 - 7 + 7 - 8 + 8 - 9 + 9 - 0 + 0 - A + A - B + B - C + C D @@ -5540,7 +5540,7 @@ align-items: center; margin-right: 1em; } - + viridis @@ -5569,9 +5569,9 @@ align-items: center; margin-right: 1em; } - + - viridis + viridis 1 @@ -5600,13 +5600,13 @@ align-items: center; margin-right: 1em; } - + - viridis + viridis - 1 + 1 - 2 + 2 3 @@ -5635,23 +5635,23 @@ align-items: center; margin-right: 1em; } - + - viridis + viridis - 1 + 1 - 2 + 2 - 3 + 3 - 4 + 4 - 5 + 5 - 6 + 6 - 7 + 7 8 @@ -5680,35 +5680,35 @@ align-items: center; margin-right: 1em; } - + - viridis + viridis - 1 + 1 - 2 + 2 - 3 + 3 - 4 + 4 - 5 + 5 - 6 + 6 - 7 + 7 - 8 + 8 - 9 + 9 - 0 + 0 - A + A - B + B - C + C D @@ -5737,7 +5737,7 @@ align-items: center; margin-right: 1em; } - + magma @@ -5766,9 +5766,9 @@ align-items: center; margin-right: 1em; } - + - magma + magma 1 @@ -5797,13 +5797,13 @@ align-items: center; margin-right: 1em; } - + - magma + magma - 1 + 1 - 2 + 2 3 @@ -5832,23 +5832,23 @@ align-items: center; margin-right: 1em; } - + - magma + magma - 1 + 1 - 2 + 2 - 3 + 3 - 4 + 4 - 5 + 5 - 6 + 6 - 7 + 7 8 @@ -5877,35 +5877,35 @@ align-items: center; margin-right: 1em; } - + - magma + magma - 1 + 1 - 2 + 2 - 3 + 3 - 4 + 4 - 5 + 5 - 6 + 6 - 7 + 7 - 8 + 8 - 9 + 9 - 0 + 0 - A + A - B + B - C + C D @@ -5934,7 +5934,7 @@ align-items: center; margin-right: 1em; } - + inferno @@ -5963,9 +5963,9 @@ align-items: center; margin-right: 1em; } - + - inferno + inferno 1 @@ -5994,13 +5994,13 @@ align-items: center; margin-right: 1em; } - + - inferno + inferno - 1 + 1 - 2 + 2 3 @@ -6029,23 +6029,23 @@ align-items: center; margin-right: 1em; } - + - inferno + inferno - 1 + 1 - 2 + 2 - 3 + 3 - 4 + 4 - 5 + 5 - 6 + 6 - 7 + 7 8 @@ -6074,35 +6074,35 @@ align-items: center; margin-right: 1em; } - + - inferno + inferno - 1 + 1 - 2 + 2 - 3 + 3 - 4 + 4 - 5 + 5 - 6 + 6 - 7 + 7 - 8 + 8 - 9 + 9 - 0 + 0 - A + A - B + B - C + C D @@ -6131,7 +6131,7 @@ align-items: center; margin-right: 1em; } - + plasma @@ -6160,9 +6160,9 @@ align-items: center; margin-right: 1em; } - + - plasma + plasma 1 @@ -6191,13 +6191,13 @@ align-items: center; margin-right: 1em; } - + - plasma + plasma - 1 + 1 - 2 + 2 3 @@ -6226,23 +6226,23 @@ align-items: center; margin-right: 1em; } - + - plasma + plasma - 1 + 1 - 2 + 2 - 3 + 3 - 4 + 4 - 5 + 5 - 6 + 6 - 7 + 7 8 @@ -6271,35 +6271,35 @@ align-items: center; margin-right: 1em; } - + - plasma + plasma - 1 + 1 - 2 + 2 - 3 + 3 - 4 + 4 - 5 + 5 - 6 + 6 - 7 + 7 - 8 + 8 - 9 + 9 - 0 + 0 - A + A - B + B - C + C D @@ -6328,7 +6328,7 @@ align-items: center; margin-right: 1em; } - + cividis @@ -6357,9 +6357,9 @@ align-items: center; margin-right: 1em; } - + - cividis + cividis 1 @@ -6388,13 +6388,13 @@ align-items: center; margin-right: 1em; } - + - cividis + cividis - 1 + 1 - 2 + 2 3 @@ -6423,23 +6423,23 @@ align-items: center; margin-right: 1em; } - + - cividis + cividis - 1 + 1 - 2 + 2 - 3 + 3 - 4 + 4 - 5 + 5 - 6 + 6 - 7 + 7 8 @@ -6468,35 +6468,35 @@ align-items: center; margin-right: 1em; } - + - cividis + cividis - 1 + 1 - 2 + 2 - 3 + 3 - 4 + 4 - 5 + 5 - 6 + 6 - 7 + 7 - 8 + 8 - 9 + 9 - 0 + 0 - A + A - B + B - C + C D @@ -6525,7 +6525,7 @@ align-items: center; margin-right: 1em; } - + cubehelix @@ -6554,9 +6554,9 @@ align-items: center; margin-right: 1em; } - + - cubehelix + cubehelix 1 @@ -6585,13 +6585,13 @@ align-items: center; margin-right: 1em; } - + - cubehelix + cubehelix - 1 + 1 - 2 + 2 3 @@ -6620,23 +6620,23 @@ align-items: center; margin-right: 1em; } - + - cubehelix + cubehelix - 1 + 1 - 2 + 2 - 3 + 3 - 4 + 4 - 5 + 5 - 6 + 6 - 7 + 7 8 @@ -6665,35 +6665,35 @@ align-items: center; margin-right: 1em; } - + - cubehelix + cubehelix - 1 + 1 - 2 + 2 - 3 + 3 - 4 + 4 - 5 + 5 - 6 + 6 - 7 + 7 - 8 + 8 - 9 + 9 - 0 + 0 - A + A - B + B - C + C D @@ -6722,7 +6722,7 @@ align-items: center; margin-right: 1em; } - + warm @@ -6751,9 +6751,9 @@ align-items: center; margin-right: 1em; } - + - warm + warm 1 @@ -6782,13 +6782,13 @@ align-items: center; margin-right: 1em; } - + - warm + warm - 1 + 1 - 2 + 2 3 @@ -6817,23 +6817,23 @@ align-items: center; margin-right: 1em; } - + - warm + warm - 1 + 1 - 2 + 2 - 3 + 3 - 4 + 4 - 5 + 5 - 6 + 6 - 7 + 7 8 @@ -6862,35 +6862,35 @@ align-items: center; margin-right: 1em; } - + - warm + warm - 1 + 1 - 2 + 2 - 3 + 3 - 4 + 4 - 5 + 5 - 6 + 6 - 7 + 7 - 8 + 8 - 9 + 9 - 0 + 0 - A + A - B + B - C + C D @@ -6919,7 +6919,7 @@ align-items: center; margin-right: 1em; } - + cool @@ -6948,9 +6948,9 @@ align-items: center; margin-right: 1em; } - + - cool + cool 1 @@ -6979,13 +6979,13 @@ align-items: center; margin-right: 1em; } - + - cool + cool - 1 + 1 - 2 + 2 3 @@ -7014,23 +7014,23 @@ align-items: center; margin-right: 1em; } - + - cool + cool - 1 + 1 - 2 + 2 - 3 + 3 - 4 + 4 - 5 + 5 - 6 + 6 - 7 + 7 8 @@ -7059,35 +7059,35 @@ align-items: center; margin-right: 1em; } - + - cool + cool - 1 + 1 - 2 + 2 - 3 + 3 - 4 + 4 - 5 + 5 - 6 + 6 - 7 + 7 - 8 + 8 - 9 + 9 - 0 + 0 - A + A - B + B - C + C D @@ -7116,7 +7116,7 @@ align-items: center; margin-right: 1em; } - + bugn @@ -7145,9 +7145,9 @@ align-items: center; margin-right: 1em; } - + - bugn + bugn 1 @@ -7176,13 +7176,13 @@ align-items: center; margin-right: 1em; } - + - bugn + bugn - 1 + 1 - 2 + 2 3 @@ -7211,23 +7211,23 @@ align-items: center; margin-right: 1em; } - + - bugn + bugn - 1 + 1 - 2 + 2 - 3 + 3 - 4 + 4 - 5 + 5 - 6 + 6 - 7 + 7 8 @@ -7256,35 +7256,35 @@ align-items: center; margin-right: 1em; } - + - bugn + bugn - 1 + 1 - 2 + 2 - 3 + 3 - 4 + 4 - 5 + 5 - 6 + 6 - 7 + 7 - 8 + 8 - 9 + 9 - 0 + 0 - A + A - B + B - C + C D @@ -7313,7 +7313,7 @@ align-items: center; margin-right: 1em; } - + bupu @@ -7342,9 +7342,9 @@ align-items: center; margin-right: 1em; } - + - bupu + bupu 1 @@ -7373,13 +7373,13 @@ align-items: center; margin-right: 1em; } - + - bupu + bupu - 1 + 1 - 2 + 2 3 @@ -7408,23 +7408,23 @@ align-items: center; margin-right: 1em; } - + - bupu + bupu - 1 + 1 - 2 + 2 - 3 + 3 - 4 + 4 - 5 + 5 - 6 + 6 - 7 + 7 8 @@ -7453,35 +7453,35 @@ align-items: center; margin-right: 1em; } - + - bupu + bupu - 1 + 1 - 2 + 2 - 3 + 3 - 4 + 4 - 5 + 5 - 6 + 6 - 7 + 7 - 8 + 8 - 9 + 9 - 0 + 0 - A + A - B + B - C + C D @@ -7510,7 +7510,7 @@ align-items: center; margin-right: 1em; } - + gnbu @@ -7539,9 +7539,9 @@ align-items: center; margin-right: 1em; } - + - gnbu + gnbu 1 @@ -7570,13 +7570,13 @@ align-items: center; margin-right: 1em; } - + - gnbu + gnbu - 1 + 1 - 2 + 2 3 @@ -7605,23 +7605,23 @@ align-items: center; margin-right: 1em; } - + - gnbu + gnbu - 1 + 1 - 2 + 2 - 3 + 3 - 4 + 4 - 5 + 5 - 6 + 6 - 7 + 7 8 @@ -7650,35 +7650,35 @@ align-items: center; margin-right: 1em; } - + - gnbu + gnbu - 1 + 1 - 2 + 2 - 3 + 3 - 4 + 4 - 5 + 5 - 6 + 6 - 7 + 7 - 8 + 8 - 9 + 9 - 0 + 0 - A + A - B + B - C + C D @@ -7707,7 +7707,7 @@ align-items: center; margin-right: 1em; } - + orrd @@ -7736,9 +7736,9 @@ align-items: center; margin-right: 1em; } - + - orrd + orrd 1 @@ -7767,13 +7767,13 @@ align-items: center; margin-right: 1em; } - + - orrd + orrd - 1 + 1 - 2 + 2 3 @@ -7802,23 +7802,23 @@ align-items: center; margin-right: 1em; } - + - orrd + orrd - 1 + 1 - 2 + 2 - 3 + 3 - 4 + 4 - 5 + 5 - 6 + 6 - 7 + 7 8 @@ -7847,35 +7847,35 @@ align-items: center; margin-right: 1em; } - + - orrd + orrd - 1 + 1 - 2 + 2 - 3 + 3 - 4 + 4 - 5 + 5 - 6 + 6 - 7 + 7 - 8 + 8 - 9 + 9 - 0 + 0 - A + A - B + B - C + C D @@ -7904,7 +7904,7 @@ align-items: center; margin-right: 1em; } - + pubu @@ -7933,9 +7933,9 @@ align-items: center; margin-right: 1em; } - + - pubu + pubu 1 @@ -7964,13 +7964,13 @@ align-items: center; margin-right: 1em; } - + - pubu + pubu - 1 + 1 - 2 + 2 3 @@ -7999,23 +7999,23 @@ align-items: center; margin-right: 1em; } - + - pubu + pubu - 1 + 1 - 2 + 2 - 3 + 3 - 4 + 4 - 5 + 5 - 6 + 6 - 7 + 7 8 @@ -8044,35 +8044,35 @@ align-items: center; margin-right: 1em; } - + - pubu + pubu - 1 + 1 - 2 + 2 - 3 + 3 - 4 + 4 - 5 + 5 - 6 + 6 - 7 + 7 - 8 + 8 - 9 + 9 - 0 + 0 - A + A - B + B - C + C D @@ -8101,7 +8101,7 @@ align-items: center; margin-right: 1em; } - + pubugn @@ -8130,9 +8130,9 @@ align-items: center; margin-right: 1em; } - + - pubugn + pubugn 1 @@ -8161,13 +8161,13 @@ align-items: center; margin-right: 1em; } - + - pubugn + pubugn - 1 + 1 - 2 + 2 3 @@ -8196,23 +8196,23 @@ align-items: center; margin-right: 1em; } - + - pubugn + pubugn - 1 + 1 - 2 + 2 - 3 + 3 - 4 + 4 - 5 + 5 - 6 + 6 - 7 + 7 8 @@ -8241,35 +8241,35 @@ align-items: center; margin-right: 1em; } - + - pubugn + pubugn - 1 + 1 - 2 + 2 - 3 + 3 - 4 + 4 - 5 + 5 - 6 + 6 - 7 + 7 - 8 + 8 - 9 + 9 - 0 + 0 - A + A - B + B - C + C D @@ -8298,7 +8298,7 @@ align-items: center; margin-right: 1em; } - + purd @@ -8327,9 +8327,9 @@ align-items: center; margin-right: 1em; } - + - purd + purd 1 @@ -8358,13 +8358,13 @@ align-items: center; margin-right: 1em; } - + - purd + purd - 1 + 1 - 2 + 2 3 @@ -8393,23 +8393,23 @@ align-items: center; margin-right: 1em; } - + - purd + purd - 1 + 1 - 2 + 2 - 3 + 3 - 4 + 4 - 5 + 5 - 6 + 6 - 7 + 7 8 @@ -8438,35 +8438,35 @@ align-items: center; margin-right: 1em; } - + - purd + purd - 1 + 1 - 2 + 2 - 3 + 3 - 4 + 4 - 5 + 5 - 6 + 6 - 7 + 7 - 8 + 8 - 9 + 9 - 0 + 0 - A + A - B + B - C + C D @@ -8495,7 +8495,7 @@ align-items: center; margin-right: 1em; } - + rdpu @@ -8524,9 +8524,9 @@ align-items: center; margin-right: 1em; } - + - rdpu + rdpu 1 @@ -8555,13 +8555,13 @@ align-items: center; margin-right: 1em; } - + - rdpu + rdpu - 1 + 1 - 2 + 2 3 @@ -8590,23 +8590,23 @@ align-items: center; margin-right: 1em; } - + - rdpu + rdpu - 1 + 1 - 2 + 2 - 3 + 3 - 4 + 4 - 5 + 5 - 6 + 6 - 7 + 7 8 @@ -8635,35 +8635,35 @@ align-items: center; margin-right: 1em; } - + - rdpu + rdpu - 1 + 1 - 2 + 2 - 3 + 3 - 4 + 4 - 5 + 5 - 6 + 6 - 7 + 7 - 8 + 8 - 9 + 9 - 0 + 0 - A + A - B + B - C + C D @@ -8692,7 +8692,7 @@ align-items: center; margin-right: 1em; } - + ylgn @@ -8721,9 +8721,9 @@ align-items: center; margin-right: 1em; } - + - ylgn + ylgn 1 @@ -8752,13 +8752,13 @@ align-items: center; margin-right: 1em; } - + - ylgn + ylgn - 1 + 1 - 2 + 2 3 @@ -8787,23 +8787,23 @@ align-items: center; margin-right: 1em; } - + - ylgn + ylgn - 1 + 1 - 2 + 2 - 3 + 3 - 4 + 4 - 5 + 5 - 6 + 6 - 7 + 7 8 @@ -8832,35 +8832,35 @@ align-items: center; margin-right: 1em; } - + - ylgn + ylgn - 1 + 1 - 2 + 2 - 3 + 3 - 4 + 4 - 5 + 5 - 6 + 6 - 7 + 7 - 8 + 8 - 9 + 9 - 0 + 0 - A + A - B + B - C + C D @@ -8889,7 +8889,7 @@ align-items: center; margin-right: 1em; } - + ylgnbu @@ -8918,9 +8918,9 @@ align-items: center; margin-right: 1em; } - + - ylgnbu + ylgnbu 1 @@ -8949,13 +8949,13 @@ align-items: center; margin-right: 1em; } - + - ylgnbu + ylgnbu - 1 + 1 - 2 + 2 3 @@ -8984,23 +8984,23 @@ align-items: center; margin-right: 1em; } - + - ylgnbu + ylgnbu - 1 + 1 - 2 + 2 - 3 + 3 - 4 + 4 - 5 + 5 - 6 + 6 - 7 + 7 8 @@ -9029,35 +9029,35 @@ align-items: center; margin-right: 1em; } - + - ylgnbu + ylgnbu - 1 + 1 - 2 + 2 - 3 + 3 - 4 + 4 - 5 + 5 - 6 + 6 - 7 + 7 - 8 + 8 - 9 + 9 - 0 + 0 - A + A - B + B - C + C D @@ -9086,7 +9086,7 @@ align-items: center; margin-right: 1em; } - + ylorbr @@ -9115,9 +9115,9 @@ align-items: center; margin-right: 1em; } - + - ylorbr + ylorbr 1 @@ -9146,13 +9146,13 @@ align-items: center; margin-right: 1em; } - + - ylorbr + ylorbr - 1 + 1 - 2 + 2 3 @@ -9181,23 +9181,23 @@ align-items: center; margin-right: 1em; } - + - ylorbr + ylorbr - 1 + 1 - 2 + 2 - 3 + 3 - 4 + 4 - 5 + 5 - 6 + 6 - 7 + 7 8 @@ -9226,35 +9226,35 @@ align-items: center; margin-right: 1em; } - + - ylorbr + ylorbr - 1 + 1 - 2 + 2 - 3 + 3 - 4 + 4 - 5 + 5 - 6 + 6 - 7 + 7 - 8 + 8 - 9 + 9 - 0 + 0 - A + A - B + B - C + C D @@ -9283,7 +9283,7 @@ align-items: center; margin-right: 1em; } - + ylorrd @@ -9312,9 +9312,9 @@ align-items: center; margin-right: 1em; } - + - ylorrd + ylorrd 1 @@ -9343,13 +9343,13 @@ align-items: center; margin-right: 1em; } - + - ylorrd + ylorrd - 1 + 1 - 2 + 2 3 @@ -9378,23 +9378,23 @@ align-items: center; margin-right: 1em; } - + - ylorrd + ylorrd - 1 + 1 - 2 + 2 - 3 + 3 - 4 + 4 - 5 + 5 - 6 + 6 - 7 + 7 8 @@ -9423,35 +9423,35 @@ align-items: center; margin-right: 1em; } - + - ylorrd + ylorrd - 1 + 1 - 2 + 2 - 3 + 3 - 4 + 4 - 5 + 5 - 6 + 6 - 7 + 7 - 8 + 8 - 9 + 9 - 0 + 0 - A + A - B + B - C + C D @@ -9480,7 +9480,7 @@ align-items: center; margin-right: 1em; } - + rainbow @@ -9509,9 +9509,9 @@ align-items: center; margin-right: 1em; } - + - rainbow + rainbow 1 @@ -9540,13 +9540,13 @@ align-items: center; margin-right: 1em; } - + - rainbow + rainbow - 1 + 1 - 2 + 2 3 @@ -9575,23 +9575,23 @@ align-items: center; margin-right: 1em; } - + - rainbow + rainbow - 1 + 1 - 2 + 2 - 3 + 3 - 4 + 4 - 5 + 5 - 6 + 6 - 7 + 7 8 @@ -9620,35 +9620,35 @@ align-items: center; margin-right: 1em; } - + - rainbow + rainbow - 1 + 1 - 2 + 2 - 3 + 3 - 4 + 4 - 5 + 5 - 6 + 6 - 7 + 7 - 8 + 8 - 9 + 9 - 0 + 0 - A + A - B + B - C + C D @@ -9677,7 +9677,7 @@ align-items: center; margin-right: 1em; } - + sinebow @@ -9706,9 +9706,9 @@ align-items: center; margin-right: 1em; } - + - sinebow + sinebow 1 @@ -9737,13 +9737,13 @@ align-items: center; margin-right: 1em; } - + - sinebow + sinebow - 1 + 1 - 2 + 2 3 @@ -9772,23 +9772,23 @@ align-items: center; margin-right: 1em; } - + - sinebow + sinebow - 1 + 1 - 2 + 2 - 3 + 3 - 4 + 4 - 5 + 5 - 6 + 6 - 7 + 7 8 @@ -9817,35 +9817,35 @@ align-items: center; margin-right: 1em; } - + - sinebow + sinebow - 1 + 1 - 2 + 2 - 3 + 3 - 4 + 4 - 5 + 5 - 6 + 6 - 7 + 7 - 8 + 8 - 9 + 9 - 0 + 0 - A + A - B + B - C + C D diff --git a/test/output/colorSchemesQuantitative.html b/test/output/colorSchemesQuantitative.html index 72dc672f1c..9c8cfac1df 100644 --- a/test/output/colorSchemesQuantitative.html +++ b/test/output/colorSchemesQuantitative.html @@ -1,4 +1,4 @@ -
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - BLS + BLS - DDR + DDR - FRG + FRG - GBR + GBR - SOV + SOV - TCH + TCH USA -
+
-
+

-
+

-
+

-
+

-
+

-
+

-
+
+ - Fossil fuels + Fossil fuels - Renewable + Renewable Nuclear - + + - Y16-19 + Y16-19 - Y20-24 + Y20-24 Y25-29 - + + - bar + bar - baz + baz foo - + + - FEMALE + FEMALE - MALE + MALE null - + + - Adelie + Adelie - Chinstrap + Chinstrap Gentoo - + + - a + a b - + + - P + P - R + R - a + a - b + b c - + + - H1 + H1 - H2 + H2 - H3 + H3 H4 - + + - Strongly Disagree + Strongly Disagree - Disagree + Disagree - Neutral + Neutral - Agree + Agree Strongly Agree - + + - Adelie + Adelie - Chinstrap + Chinstrap Gentoo - + + - Biscoe + Biscoe - Dream + Dream Torgersen - + + - Adelie + Adelie - Chinstrap + Chinstrap Gentoo - + + - Adelie + Adelie - Chinstrap + Chinstrap Gentoo - + + - Adelie + Adelie - Chinstrap + Chinstrap Gentoo - +

Penguins

+

Penguins

+ - female + female male - + + - female + female male - + + - female + female male - + + - A + A - B + B - C + C - D + D - E + E - F + F - G + G - H + H - I + I J @@ -78,25 +78,25 @@ align-items: center; margin-right: 1em; } - + - A + A - B + B - C + C - D + D - E + E - F + F - G + G - H + H - I + I J diff --git a/test/output/symbolLegendBasic.html b/test/output/symbolLegendBasic.html index 869f357093..82b031610f 100644 --- a/test/output/symbolLegendBasic.html +++ b/test/output/symbolLegendBasic.html @@ -23,17 +23,17 @@ align-items: center; margin-right: 1em; } - + - A + A - B + B - C + C - D + D - E + E F \ No newline at end of file diff --git a/test/output/symbolLegendColorFill.html b/test/output/symbolLegendColorFill.html index a320ea8e60..9235d9381e 100644 --- a/test/output/symbolLegendColorFill.html +++ b/test/output/symbolLegendColorFill.html @@ -23,17 +23,17 @@ align-items: center; margin-right: 1em; } - + - A + A - B + B - C + C - D + D - E + E F \ No newline at end of file diff --git a/test/output/symbolLegendColorStroke.html b/test/output/symbolLegendColorStroke.html index e0fd03b6f0..c1d7dbca8f 100644 --- a/test/output/symbolLegendColorStroke.html +++ b/test/output/symbolLegendColorStroke.html @@ -23,17 +23,17 @@ align-items: center; margin-right: 1em; } - + - A + A - B + B - C + C - D + D - E + E F \ No newline at end of file diff --git a/test/output/symbolLegendDifferentColor.html b/test/output/symbolLegendDifferentColor.html index 7b7edf6726..83c82adf76 100644 --- a/test/output/symbolLegendDifferentColor.html +++ b/test/output/symbolLegendDifferentColor.html @@ -23,17 +23,17 @@ align-items: center; margin-right: 1em; } - + - A + A - B + B - C + C - D + D - E + E F \ No newline at end of file diff --git a/test/output/symbolLegendExplicitColor.html b/test/output/symbolLegendExplicitColor.html index a320ea8e60..9235d9381e 100644 --- a/test/output/symbolLegendExplicitColor.html +++ b/test/output/symbolLegendExplicitColor.html @@ -23,17 +23,17 @@ align-items: center; margin-right: 1em; } - + - A + A - B + B - C + C - D + D - E + E F \ No newline at end of file diff --git a/test/output/symbolLegendFill.html b/test/output/symbolLegendFill.html index 29487d1f65..bb34ee7352 100644 --- a/test/output/symbolLegendFill.html +++ b/test/output/symbolLegendFill.html @@ -23,17 +23,17 @@ align-items: center; margin-right: 1em; } - + - A + A - B + B - C + C - D + D - E + E F \ No newline at end of file diff --git a/test/output/symbolLegendImplicitRange.html b/test/output/symbolLegendImplicitRange.html index a320ea8e60..9235d9381e 100644 --- a/test/output/symbolLegendImplicitRange.html +++ b/test/output/symbolLegendImplicitRange.html @@ -23,17 +23,17 @@ align-items: center; margin-right: 1em; } - + - A + A - B + B - C + C - D + D - E + E F \ No newline at end of file diff --git a/test/output/symbolLegendOpacityColor.html b/test/output/symbolLegendOpacityColor.html index 3bd3b49aef..b748623266 100644 --- a/test/output/symbolLegendOpacityColor.html +++ b/test/output/symbolLegendOpacityColor.html @@ -23,17 +23,17 @@ align-items: center; margin-right: 1em; } - + - A + A - B + B - C + C - D + D - E + E F \ No newline at end of file diff --git a/test/output/symbolLegendOpacityFill.html b/test/output/symbolLegendOpacityFill.html index 538d278b9c..6ebfff6a52 100644 --- a/test/output/symbolLegendOpacityFill.html +++ b/test/output/symbolLegendOpacityFill.html @@ -23,11 +23,11 @@ align-items: center; margin-right: 1em; } - + - Dream + Dream - Torgersen + Torgersen Biscoe \ No newline at end of file diff --git a/test/output/symbolLegendOpacityStroke.html b/test/output/symbolLegendOpacityStroke.html index 65d83d7a86..5d07bd6904 100644 --- a/test/output/symbolLegendOpacityStroke.html +++ b/test/output/symbolLegendOpacityStroke.html @@ -23,11 +23,11 @@ align-items: center; margin-right: 1em; } - + - Dream + Dream - Torgersen + Torgersen Biscoe \ No newline at end of file diff --git a/test/output/symbolLegendStroke.html b/test/output/symbolLegendStroke.html index 5c6de775bb..f96edabadf 100644 --- a/test/output/symbolLegendStroke.html +++ b/test/output/symbolLegendStroke.html @@ -23,17 +23,17 @@ align-items: center; margin-right: 1em; } - + - A + A - B + B - C + C - D + D - E + E F \ No newline at end of file diff --git a/test/output/symbolSetFill.svg b/test/output/symbolSetFill.svg index 716e06d785..4d5b2a86b1 100644 --- a/test/output/symbolSetFill.svg +++ b/test/output/symbolSetFill.svg @@ -1,4 +1,4 @@ - + + - 0 + 0 - 1 + 1 - 2 + 2 - 3 + 3 - 4 + 4 - 5 + 5 6 - + + - 0 + 0 - 1 + 1 - 2 + 2 - 3 + 3 - 4 + 4 - 5 + 5 6 - +

A subtitle about body_mass_g

align-items: center; margin-right: 1em; } - + - Adelie + Adelie - Chinstrap + Chinstrap Gentoo - +

A fancy title about penguins

- A fancy subtitle + A fancy subtitle + - ≥0 + ≥0 - ≥2,000 + ≥2,000 - ≥4,000 + ≥4,000 - ≥6,000 + ≥6,000 ≥8,000 - + + - Infants <1 + Infants <1 - Children <11 + Children <11 - Teens 12-17 + Teens 12-17 - Adults 18+ + Adults 18+ Elderly 65+ - +

…by age and sex. Data: Eurostat

align-items: center; margin-right: 1em; } - + - Y16-19 + Y16-19 - Y20-24 + Y20-24 Y25-29 - +