diff --git a/build.gradle.kts b/build.gradle.kts index 5432b721b..a8415e519 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -44,7 +44,8 @@ val published = listOf( "kandy-echarts", "kandy-lets-plot", "kandy-geo", - "kandy-util" + "kandy-util", + "kandy-samples-utils" ) configure(subprojects.filter { it.name in published }) { diff --git a/docs/cfg/buildprofiles.xml b/docs/cfg/buildprofiles.xml index be4c72f16..76ca1de19 100644 --- a/docs/cfg/buildprofiles.xml +++ b/docs/cfg/buildprofiles.xml @@ -7,7 +7,7 @@ true https://github.com/Kotlin/kandy/edit/main/docs/ - + include-head.html https://kotlin.github.io/kandy/ false webmaster@jetbrains.com diff --git a/docs/cfg/include-head.html b/docs/cfg/include-head.html new file mode 100644 index 000000000..c5c5b3039 --- /dev/null +++ b/docs/cfg/include-head.html @@ -0,0 +1 @@ + diff --git a/docs/cfg/static/custom.js b/docs/cfg/static/custom.js new file mode 100644 index 000000000..5de1a722f --- /dev/null +++ b/docs/cfg/static/custom.js @@ -0,0 +1,67 @@ +window.addEventListener('load', () => { + function updateIframeThemes(theme) { + const iframes = document.querySelectorAll('iframe'); + + iframes.forEach((iframe) => { + if (iframe.contentWindow && iframe.contentWindow.document) { + iframe.contentWindow.document.documentElement.setAttribute('theme', theme); + } + }); + } + + function observeHtmlClassChanges() { + const htmlElement = document.documentElement; + + const observer = new MutationObserver((mutations) => { + mutations.forEach((mutation) => { + if (mutation.type === 'attributes' && mutation.attributeName === 'class') { + const theme = htmlElement.classList.contains('theme-light') ? 'light' : 'dark'; + updateIframeThemes(theme); + } + }); + }); + + observer.observe(htmlElement, { attributes: true }); + } + + window.addEventListener('message', (event) => { + if (event.data.type === 'iframeHeight') { + document.querySelectorAll('iframe').forEach((iframe) => { + if (iframe.contentWindow === event.source) { + iframe.style.height = event.data.height + 'px'; + } + }); + } + }); + + function observeIframe(iframe) { + const theme = document.documentElement.classList.contains('theme-light') ? 'light' : 'dark'; + + function sendTheme() { + iframe.contentDocument.documentElement.setAttribute('theme', theme); + } + + iframe.addEventListener('load', sendTheme); + if (iframe.contentDocument.readyState === 'complete') sendTheme(); + } + + document.querySelectorAll('iframe').forEach(observeIframe); + + const bodyObserver = new MutationObserver((mutations) => { + mutations.forEach((mutation) => { + mutation.addedNodes.forEach((node) => { + if (node.tagName === 'IFRAME') observeIframe(node); + else if (node.querySelectorAll) { + node.querySelectorAll('iframe').forEach(observeIframe); + } + }); + }); + }); + + bodyObserver.observe(document.body, { childList: true, subtree: true }); + + observeHtmlClassChanges(); + + const initialTheme = document.documentElement.classList.contains('theme-light') ? 'light' : 'dark'; + updateIframeThemes(initialTheme); +}); diff --git a/docs/images/guides/geoGuide/electionResultsPlotByParty.svg b/docs/images/guides/geoGuide/electionResultsPlotByParty.svg index c1459f5ed..86f7fecea 100644 --- a/docs/images/guides/geoGuide/electionResultsPlotByParty.svg +++ b/docs/images/guides/geoGuide/electionResultsPlotByParty.svg @@ -10,117 +10,117 @@ text { text-rendering: optimizeLegibility; } -#xXxprefixXx0 .plot-title { +#_sample_helper_static_id_prefix_0 .plot-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-x { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-x { fill: #ffffff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-y { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-y { fill: #ffffff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-text { +#_sample_helper_static_id_prefix_2 .tooltip-text { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-title { +#_sample_helper_static_id_prefix_2 .tooltip-title { fill: #474747; font-weight: bold; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-label { +#_sample_helper_static_id_prefix_2 .tooltip-label { fill: #474747; font-weight: bold; font-style: normal;font-family: sans-serif; @@ -129,7 +129,7 @@ font-size: 13.0px; } - + @@ -147,7 +147,7 @@ font-size: 13.0px; - + @@ -355,7 +355,7 @@ font-size: 13.0px; - + @@ -415,6 +415,6 @@ font-size: 13.0px; - + \ No newline at end of file diff --git a/docs/images/guides/geoGuide/electionResultsPlotByParty_dark.svg b/docs/images/guides/geoGuide/electionResultsPlotByParty_dark.svg index 9aea8f426..aa2ba42cd 100644 --- a/docs/images/guides/geoGuide/electionResultsPlotByParty_dark.svg +++ b/docs/images/guides/geoGuide/electionResultsPlotByParty_dark.svg @@ -10,117 +10,117 @@ text { text-rendering: optimizeLegibility; } -#xXxprefixXx0 .plot-title { +#_sample_helper_static_id_prefix_0 .plot-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-x { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-x { fill: #303030; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-y { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-y { fill: #303030; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-text { +#_sample_helper_static_id_prefix_2 .tooltip-text { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-title { +#_sample_helper_static_id_prefix_2 .tooltip-title { fill: #bbbbbb; font-weight: bold; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-label { +#_sample_helper_static_id_prefix_2 .tooltip-label { fill: #bbbbbb; font-weight: bold; font-style: normal;font-family: sans-serif; @@ -129,7 +129,7 @@ font-size: 13.0px; } - + @@ -147,7 +147,7 @@ font-size: 13.0px; - + @@ -355,7 +355,7 @@ font-size: 13.0px; - + @@ -415,6 +415,6 @@ font-size: 13.0px; - + \ No newline at end of file diff --git a/docs/images/guides/geoGuide/usaStatesAdjusted.svg b/docs/images/guides/geoGuide/usaStatesAdjusted.svg index e2aaec230..395ef5d12 100644 --- a/docs/images/guides/geoGuide/usaStatesAdjusted.svg +++ b/docs/images/guides/geoGuide/usaStatesAdjusted.svg @@ -10,117 +10,117 @@ text { text-rendering: optimizeLegibility; } -#xXxprefixXx0 .plot-title { +#_sample_helper_static_id_prefix_0 .plot-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-x { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-x { fill: #ffffff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-y { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-y { fill: #ffffff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-text { +#_sample_helper_static_id_prefix_2 .tooltip-text { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-title { +#_sample_helper_static_id_prefix_2 .tooltip-title { fill: #474747; font-weight: bold; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-label { +#_sample_helper_static_id_prefix_2 .tooltip-label { fill: #474747; font-weight: bold; font-style: normal;font-family: sans-serif; @@ -129,7 +129,7 @@ font-size: 13.0px; } - + @@ -171,7 +171,7 @@ font-size: 13.0px; - + @@ -387,7 +387,7 @@ font-size: 13.0px; - + @@ -527,6 +527,6 @@ font-size: 13.0px; - + \ No newline at end of file diff --git a/docs/images/guides/geoGuide/usaStatesAdjusted_dark.svg b/docs/images/guides/geoGuide/usaStatesAdjusted_dark.svg index 3f0c3fedb..2e2952037 100644 --- a/docs/images/guides/geoGuide/usaStatesAdjusted_dark.svg +++ b/docs/images/guides/geoGuide/usaStatesAdjusted_dark.svg @@ -10,117 +10,117 @@ text { text-rendering: optimizeLegibility; } -#xXxprefixXx0 .plot-title { +#_sample_helper_static_id_prefix_0 .plot-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-x { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-x { fill: #303030; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-y { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-y { fill: #303030; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-text { +#_sample_helper_static_id_prefix_2 .tooltip-text { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-title { +#_sample_helper_static_id_prefix_2 .tooltip-title { fill: #bbbbbb; font-weight: bold; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-label { +#_sample_helper_static_id_prefix_2 .tooltip-label { fill: #bbbbbb; font-weight: bold; font-style: normal;font-family: sans-serif; @@ -129,7 +129,7 @@ font-size: 13.0px; } - + @@ -289,7 +289,7 @@ font-size: 13.0px; - + @@ -505,7 +505,7 @@ font-size: 13.0px; - + @@ -527,6 +527,6 @@ font-size: 13.0px; - + \ No newline at end of file diff --git a/docs/images/guides/geoGuide/usaStatesFilterContiguous.svg b/docs/images/guides/geoGuide/usaStatesFilterContiguous.svg index 7a2b670ae..7ea603650 100644 --- a/docs/images/guides/geoGuide/usaStatesFilterContiguous.svg +++ b/docs/images/guides/geoGuide/usaStatesFilterContiguous.svg @@ -10,117 +10,117 @@ text { text-rendering: optimizeLegibility; } -#xXxprefixXx0 .plot-title { +#_sample_helper_static_id_prefix_0 .plot-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-x { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-x { fill: #ffffff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-y { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-y { fill: #ffffff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-text { +#_sample_helper_static_id_prefix_2 .tooltip-text { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-title { +#_sample_helper_static_id_prefix_2 .tooltip-title { fill: #474747; font-weight: bold; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-label { +#_sample_helper_static_id_prefix_2 .tooltip-label { fill: #474747; font-weight: bold; font-style: normal;font-family: sans-serif; @@ -129,7 +129,7 @@ font-size: 13.0px; } - + @@ -167,7 +167,7 @@ font-size: 13.0px; - + @@ -371,7 +371,7 @@ font-size: 13.0px; - + @@ -495,6 +495,6 @@ font-size: 13.0px; - + \ No newline at end of file diff --git a/docs/images/guides/geoGuide/usaStatesFilterContiguous_dark.svg b/docs/images/guides/geoGuide/usaStatesFilterContiguous_dark.svg index 2d3ccdd57..393f09b46 100644 --- a/docs/images/guides/geoGuide/usaStatesFilterContiguous_dark.svg +++ b/docs/images/guides/geoGuide/usaStatesFilterContiguous_dark.svg @@ -10,117 +10,117 @@ text { text-rendering: optimizeLegibility; } -#xXxprefixXx0 .plot-title { +#_sample_helper_static_id_prefix_0 .plot-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-x { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-x { fill: #303030; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-y { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-y { fill: #303030; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-text { +#_sample_helper_static_id_prefix_2 .tooltip-text { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-title { +#_sample_helper_static_id_prefix_2 .tooltip-title { fill: #bbbbbb; font-weight: bold; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-label { +#_sample_helper_static_id_prefix_2 .tooltip-label { fill: #bbbbbb; font-weight: bold; font-style: normal;font-family: sans-serif; @@ -129,7 +129,7 @@ font-size: 13.0px; } - + @@ -269,7 +269,7 @@ font-size: 13.0px; - + @@ -473,7 +473,7 @@ font-size: 13.0px; - + @@ -495,6 +495,6 @@ font-size: 13.0px; - + \ No newline at end of file diff --git a/docs/images/guides/geoGuide/usaStatesGeoPolygonPlotCustomized.svg b/docs/images/guides/geoGuide/usaStatesGeoPolygonPlotCustomized.svg index 8882c1c24..0983b358e 100644 --- a/docs/images/guides/geoGuide/usaStatesGeoPolygonPlotCustomized.svg +++ b/docs/images/guides/geoGuide/usaStatesGeoPolygonPlotCustomized.svg @@ -10,117 +10,117 @@ text { text-rendering: optimizeLegibility; } -#xXxprefixXx0 .plot-title { +#_sample_helper_static_id_prefix_0 .plot-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-x { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-x { fill: #ffffff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-y { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-y { fill: #ffffff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-text { +#_sample_helper_static_id_prefix_2 .tooltip-text { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-title { +#_sample_helper_static_id_prefix_2 .tooltip-title { fill: #474747; font-weight: bold; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-label { +#_sample_helper_static_id_prefix_2 .tooltip-label { fill: #474747; font-weight: bold; font-style: normal;font-family: sans-serif; @@ -129,7 +129,7 @@ font-size: 13.0px; } - + @@ -179,7 +179,7 @@ font-size: 13.0px; - + @@ -395,7 +395,7 @@ font-size: 13.0px; - + @@ -563,6 +563,6 @@ font-size: 13.0px; - + \ No newline at end of file diff --git a/docs/images/guides/geoGuide/usaStatesGeoPolygonPlotCustomized_dark.svg b/docs/images/guides/geoGuide/usaStatesGeoPolygonPlotCustomized_dark.svg index b7f412bf5..39f8019cb 100644 --- a/docs/images/guides/geoGuide/usaStatesGeoPolygonPlotCustomized_dark.svg +++ b/docs/images/guides/geoGuide/usaStatesGeoPolygonPlotCustomized_dark.svg @@ -10,117 +10,117 @@ text { text-rendering: optimizeLegibility; } -#xXxprefixXx0 .plot-title { +#_sample_helper_static_id_prefix_0 .plot-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-x { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-x { fill: #303030; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-y { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-y { fill: #303030; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-text { +#_sample_helper_static_id_prefix_2 .tooltip-text { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-title { +#_sample_helper_static_id_prefix_2 .tooltip-title { fill: #bbbbbb; font-weight: bold; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-label { +#_sample_helper_static_id_prefix_2 .tooltip-label { fill: #bbbbbb; font-weight: bold; font-style: normal;font-family: sans-serif; @@ -129,7 +129,7 @@ font-size: 13.0px; } - + @@ -325,7 +325,7 @@ font-size: 13.0px; - + @@ -541,7 +541,7 @@ font-size: 13.0px; - + @@ -563,6 +563,6 @@ font-size: 13.0px; - + \ No newline at end of file diff --git a/docs/images/guides/geoGuide/usaStatesPlotGeoMap.svg b/docs/images/guides/geoGuide/usaStatesPlotGeoMap.svg index 07fa30579..a0475e14f 100644 --- a/docs/images/guides/geoGuide/usaStatesPlotGeoMap.svg +++ b/docs/images/guides/geoGuide/usaStatesPlotGeoMap.svg @@ -10,117 +10,117 @@ text { text-rendering: optimizeLegibility; } -#xXxprefixXx0 .plot-title { +#_sample_helper_static_id_prefix_0 .plot-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-x { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-x { fill: #ffffff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-y { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-y { fill: #ffffff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-text { +#_sample_helper_static_id_prefix_2 .tooltip-text { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-title { +#_sample_helper_static_id_prefix_2 .tooltip-title { fill: #474747; font-weight: bold; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-label { +#_sample_helper_static_id_prefix_2 .tooltip-label { fill: #474747; font-weight: bold; font-style: normal;font-family: sans-serif; @@ -129,7 +129,7 @@ font-size: 13.0px; } - + @@ -179,7 +179,7 @@ font-size: 13.0px; - + @@ -395,7 +395,7 @@ font-size: 13.0px; - + @@ -563,6 +563,6 @@ font-size: 13.0px; - + \ No newline at end of file diff --git a/docs/images/guides/geoGuide/usaStatesPlotGeoMap_dark.svg b/docs/images/guides/geoGuide/usaStatesPlotGeoMap_dark.svg index 3e8187d38..2cfdbfca1 100644 --- a/docs/images/guides/geoGuide/usaStatesPlotGeoMap_dark.svg +++ b/docs/images/guides/geoGuide/usaStatesPlotGeoMap_dark.svg @@ -10,117 +10,117 @@ text { text-rendering: optimizeLegibility; } -#xXxprefixXx0 .plot-title { +#_sample_helper_static_id_prefix_0 .plot-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-x { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-x { fill: #303030; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-y { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-y { fill: #303030; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-text { +#_sample_helper_static_id_prefix_2 .tooltip-text { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-title { +#_sample_helper_static_id_prefix_2 .tooltip-title { fill: #bbbbbb; font-weight: bold; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-label { +#_sample_helper_static_id_prefix_2 .tooltip-label { fill: #bbbbbb; font-weight: bold; font-style: normal;font-family: sans-serif; @@ -129,7 +129,7 @@ font-size: 13.0px; } - + @@ -325,7 +325,7 @@ font-size: 13.0px; - + @@ -541,7 +541,7 @@ font-size: 13.0px; - + @@ -563,6 +563,6 @@ font-size: 13.0px; - + \ No newline at end of file diff --git a/docs/images/guides/geoGuide/usaStatesPlotGeoPolygon.svg b/docs/images/guides/geoGuide/usaStatesPlotGeoPolygon.svg index 448433e29..c9b8e9272 100644 --- a/docs/images/guides/geoGuide/usaStatesPlotGeoPolygon.svg +++ b/docs/images/guides/geoGuide/usaStatesPlotGeoPolygon.svg @@ -10,117 +10,117 @@ text { text-rendering: optimizeLegibility; } -#xXxprefixXx0 .plot-title { +#_sample_helper_static_id_prefix_0 .plot-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-x { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-x { fill: #ffffff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-y { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-y { fill: #ffffff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-text { +#_sample_helper_static_id_prefix_2 .tooltip-text { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-title { +#_sample_helper_static_id_prefix_2 .tooltip-title { fill: #474747; font-weight: bold; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-label { +#_sample_helper_static_id_prefix_2 .tooltip-label { fill: #474747; font-weight: bold; font-style: normal;font-family: sans-serif; @@ -129,7 +129,7 @@ font-size: 13.0px; } - + @@ -179,7 +179,7 @@ font-size: 13.0px; - + @@ -395,7 +395,7 @@ font-size: 13.0px; - + @@ -563,6 +563,6 @@ font-size: 13.0px; - + \ No newline at end of file diff --git a/docs/images/guides/geoGuide/usaStatesPlotGeoPolygon_dark.svg b/docs/images/guides/geoGuide/usaStatesPlotGeoPolygon_dark.svg index c2a5aa7db..3c5da09ef 100644 --- a/docs/images/guides/geoGuide/usaStatesPlotGeoPolygon_dark.svg +++ b/docs/images/guides/geoGuide/usaStatesPlotGeoPolygon_dark.svg @@ -10,117 +10,117 @@ text { text-rendering: optimizeLegibility; } -#xXxprefixXx0 .plot-title { +#_sample_helper_static_id_prefix_0 .plot-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-x { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-x { fill: #303030; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-y { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-y { fill: #303030; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-text { +#_sample_helper_static_id_prefix_2 .tooltip-text { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-title { +#_sample_helper_static_id_prefix_2 .tooltip-title { fill: #bbbbbb; font-weight: bold; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-label { +#_sample_helper_static_id_prefix_2 .tooltip-label { fill: #bbbbbb; font-weight: bold; font-style: normal;font-family: sans-serif; @@ -129,7 +129,7 @@ font-size: 13.0px; } - + @@ -325,7 +325,7 @@ font-size: 13.0px; - + @@ -541,7 +541,7 @@ font-size: 13.0px; - + @@ -563,6 +563,6 @@ font-size: 13.0px; - + \ No newline at end of file diff --git a/docs/images/guides/geoGuide/usaStatesPlotMergedPolygon.svg b/docs/images/guides/geoGuide/usaStatesPlotMergedPolygon.svg index ffd572b9d..98c5f379a 100644 --- a/docs/images/guides/geoGuide/usaStatesPlotMergedPolygon.svg +++ b/docs/images/guides/geoGuide/usaStatesPlotMergedPolygon.svg @@ -10,117 +10,117 @@ text { text-rendering: optimizeLegibility; } -#xXxprefixXx0 .plot-title { +#_sample_helper_static_id_prefix_0 .plot-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-x { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-x { fill: #ffffff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-y { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-y { fill: #ffffff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-text { +#_sample_helper_static_id_prefix_2 .tooltip-text { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-title { +#_sample_helper_static_id_prefix_2 .tooltip-title { fill: #474747; font-weight: bold; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-label { +#_sample_helper_static_id_prefix_2 .tooltip-label { fill: #474747; font-weight: bold; font-style: normal;font-family: sans-serif; @@ -129,7 +129,7 @@ font-size: 13.0px; } - + @@ -179,7 +179,7 @@ font-size: 13.0px; - + @@ -191,7 +191,7 @@ font-size: 13.0px; - + @@ -359,6 +359,6 @@ font-size: 13.0px; - + \ No newline at end of file diff --git a/docs/images/guides/geoGuide/usaStatesPlotMergedPolygon_dark.svg b/docs/images/guides/geoGuide/usaStatesPlotMergedPolygon_dark.svg index c005d0ebe..16bb9d3c9 100644 --- a/docs/images/guides/geoGuide/usaStatesPlotMergedPolygon_dark.svg +++ b/docs/images/guides/geoGuide/usaStatesPlotMergedPolygon_dark.svg @@ -10,117 +10,117 @@ text { text-rendering: optimizeLegibility; } -#xXxprefixXx0 .plot-title { +#_sample_helper_static_id_prefix_0 .plot-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-x { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-x { fill: #303030; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-y { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-y { fill: #303030; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-text { +#_sample_helper_static_id_prefix_2 .tooltip-text { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-title { +#_sample_helper_static_id_prefix_2 .tooltip-title { fill: #bbbbbb; font-weight: bold; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-label { +#_sample_helper_static_id_prefix_2 .tooltip-label { fill: #bbbbbb; font-weight: bold; font-style: normal;font-family: sans-serif; @@ -129,7 +129,7 @@ font-size: 13.0px; } - + @@ -325,7 +325,7 @@ font-size: 13.0px; - + @@ -337,7 +337,7 @@ font-size: 13.0px; - + @@ -359,6 +359,6 @@ font-size: 13.0px; - + \ No newline at end of file diff --git a/docs/images/guides/geoGuide/usaStatesPlotWithAlbersCrs.svg b/docs/images/guides/geoGuide/usaStatesPlotWithAlbersCrs.svg index 26a265952..355228319 100644 --- a/docs/images/guides/geoGuide/usaStatesPlotWithAlbersCrs.svg +++ b/docs/images/guides/geoGuide/usaStatesPlotWithAlbersCrs.svg @@ -10,117 +10,117 @@ text { text-rendering: optimizeLegibility; } -#xXxprefixXx0 .plot-title { +#_sample_helper_static_id_prefix_0 .plot-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-x { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-x { fill: #ffffff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-y { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-y { fill: #ffffff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-text { +#_sample_helper_static_id_prefix_2 .tooltip-text { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-title { +#_sample_helper_static_id_prefix_2 .tooltip-title { fill: #474747; font-weight: bold; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-label { +#_sample_helper_static_id_prefix_2 .tooltip-label { fill: #474747; font-weight: bold; font-style: normal;font-family: sans-serif; @@ -129,7 +129,7 @@ font-size: 13.0px; } - + @@ -175,7 +175,7 @@ font-size: 13.0px; - + @@ -379,7 +379,7 @@ font-size: 13.0px; - + @@ -539,6 +539,6 @@ font-size: 13.0px; - + \ No newline at end of file diff --git a/docs/images/guides/geoGuide/usaStatesPlotWithAlbersCrs_dark.svg b/docs/images/guides/geoGuide/usaStatesPlotWithAlbersCrs_dark.svg index d8aca878b..008cbfbb8 100644 --- a/docs/images/guides/geoGuide/usaStatesPlotWithAlbersCrs_dark.svg +++ b/docs/images/guides/geoGuide/usaStatesPlotWithAlbersCrs_dark.svg @@ -10,117 +10,117 @@ text { text-rendering: optimizeLegibility; } -#xXxprefixXx0 .plot-title { +#_sample_helper_static_id_prefix_0 .plot-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-x { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-x { fill: #303030; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-y { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-y { fill: #303030; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-text { +#_sample_helper_static_id_prefix_2 .tooltip-text { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-title { +#_sample_helper_static_id_prefix_2 .tooltip-title { fill: #bbbbbb; font-weight: bold; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-label { +#_sample_helper_static_id_prefix_2 .tooltip-label { fill: #bbbbbb; font-weight: bold; font-style: normal;font-family: sans-serif; @@ -129,7 +129,7 @@ font-size: 13.0px; } - + @@ -313,7 +313,7 @@ font-size: 13.0px; - + @@ -517,7 +517,7 @@ font-size: 13.0px; - + @@ -539,6 +539,6 @@ font-size: 13.0px; - + \ No newline at end of file diff --git a/docs/images/guides/geoGuide/usaStatesPlotWithAxisLimits.svg b/docs/images/guides/geoGuide/usaStatesPlotWithAxisLimits.svg index 16356213c..a2f3ad04d 100644 --- a/docs/images/guides/geoGuide/usaStatesPlotWithAxisLimits.svg +++ b/docs/images/guides/geoGuide/usaStatesPlotWithAxisLimits.svg @@ -10,117 +10,117 @@ text { text-rendering: optimizeLegibility; } -#xXxprefixXx0 .plot-title { +#_sample_helper_static_id_prefix_0 .plot-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-x { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-x { fill: #ffffff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-y { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-y { fill: #ffffff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-text { +#_sample_helper_static_id_prefix_2 .tooltip-text { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-title { +#_sample_helper_static_id_prefix_2 .tooltip-title { fill: #474747; font-weight: bold; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-label { +#_sample_helper_static_id_prefix_2 .tooltip-label { fill: #474747; font-weight: bold; font-style: normal;font-family: sans-serif; @@ -129,7 +129,7 @@ font-size: 13.0px; } - + @@ -167,7 +167,7 @@ font-size: 13.0px; - + @@ -383,7 +383,7 @@ font-size: 13.0px; - + @@ -507,6 +507,6 @@ font-size: 13.0px; - + \ No newline at end of file diff --git a/docs/images/guides/geoGuide/usaStatesPlotWithAxisLimits_dark.svg b/docs/images/guides/geoGuide/usaStatesPlotWithAxisLimits_dark.svg index c9dfe940b..bdd669a95 100644 --- a/docs/images/guides/geoGuide/usaStatesPlotWithAxisLimits_dark.svg +++ b/docs/images/guides/geoGuide/usaStatesPlotWithAxisLimits_dark.svg @@ -10,117 +10,117 @@ text { text-rendering: optimizeLegibility; } -#xXxprefixXx0 .plot-title { +#_sample_helper_static_id_prefix_0 .plot-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-x { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-x { fill: #303030; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-y { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-y { fill: #303030; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-text { +#_sample_helper_static_id_prefix_2 .tooltip-text { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-title { +#_sample_helper_static_id_prefix_2 .tooltip-title { fill: #bbbbbb; font-weight: bold; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-label { +#_sample_helper_static_id_prefix_2 .tooltip-label { fill: #bbbbbb; font-weight: bold; font-style: normal;font-family: sans-serif; @@ -129,7 +129,7 @@ font-size: 13.0px; } - + @@ -269,7 +269,7 @@ font-size: 13.0px; - + @@ -485,7 +485,7 @@ font-size: 13.0px; - + @@ -507,6 +507,6 @@ font-size: 13.0px; - + \ No newline at end of file diff --git a/docs/images/guides/geoGuide/usaStatesPlotWithBounds.svg b/docs/images/guides/geoGuide/usaStatesPlotWithBounds.svg index e514a972b..96046e33f 100644 --- a/docs/images/guides/geoGuide/usaStatesPlotWithBounds.svg +++ b/docs/images/guides/geoGuide/usaStatesPlotWithBounds.svg @@ -10,117 +10,117 @@ text { text-rendering: optimizeLegibility; } -#xXxprefixXx0 .plot-title { +#_sample_helper_static_id_prefix_0 .plot-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx3 .axis-tooltip-text-x { +#_sample_helper_static_id_prefix_3 .axis-tooltip-text-x { fill: #ffffff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx3 .axis-tooltip-text-y { +#_sample_helper_static_id_prefix_3 .axis-tooltip-text-y { fill: #ffffff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx3 .tooltip-text { +#_sample_helper_static_id_prefix_3 .tooltip-text { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx3 .tooltip-title { +#_sample_helper_static_id_prefix_3 .tooltip-title { fill: #474747; font-weight: bold; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx3 .tooltip-label { +#_sample_helper_static_id_prefix_3 .tooltip-label { fill: #474747; font-weight: bold; font-style: normal;font-family: sans-serif; @@ -129,7 +129,7 @@ font-size: 13.0px; } - + @@ -167,7 +167,7 @@ font-size: 13.0px; - + @@ -375,13 +375,13 @@ font-size: 13.0px; - + - + @@ -505,6 +505,6 @@ font-size: 13.0px; - + \ No newline at end of file diff --git a/docs/images/guides/geoGuide/usaStatesPlotWithBounds_dark.svg b/docs/images/guides/geoGuide/usaStatesPlotWithBounds_dark.svg index 194dce0c8..652990515 100644 --- a/docs/images/guides/geoGuide/usaStatesPlotWithBounds_dark.svg +++ b/docs/images/guides/geoGuide/usaStatesPlotWithBounds_dark.svg @@ -10,117 +10,117 @@ text { text-rendering: optimizeLegibility; } -#xXxprefixXx0 .plot-title { +#_sample_helper_static_id_prefix_0 .plot-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx3 .axis-tooltip-text-x { +#_sample_helper_static_id_prefix_3 .axis-tooltip-text-x { fill: #303030; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx3 .axis-tooltip-text-y { +#_sample_helper_static_id_prefix_3 .axis-tooltip-text-y { fill: #303030; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx3 .tooltip-text { +#_sample_helper_static_id_prefix_3 .tooltip-text { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx3 .tooltip-title { +#_sample_helper_static_id_prefix_3 .tooltip-title { fill: #bbbbbb; font-weight: bold; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx3 .tooltip-label { +#_sample_helper_static_id_prefix_3 .tooltip-label { fill: #bbbbbb; font-weight: bold; font-style: normal;font-family: sans-serif; @@ -129,7 +129,7 @@ font-size: 13.0px; } - + @@ -269,7 +269,7 @@ font-size: 13.0px; - + @@ -477,13 +477,13 @@ font-size: 13.0px; - + - + @@ -505,6 +505,6 @@ font-size: 13.0px; - + \ No newline at end of file diff --git a/docs/images/guides/geoGuide/usaStatesPlotWithCentroids.svg b/docs/images/guides/geoGuide/usaStatesPlotWithCentroids.svg index 21b3ac7ed..f3b3ad516 100644 --- a/docs/images/guides/geoGuide/usaStatesPlotWithCentroids.svg +++ b/docs/images/guides/geoGuide/usaStatesPlotWithCentroids.svg @@ -10,117 +10,117 @@ text { text-rendering: optimizeLegibility; } -#xXxprefixXx0 .plot-title { +#_sample_helper_static_id_prefix_0 .plot-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx3 .axis-tooltip-text-x { +#_sample_helper_static_id_prefix_3 .axis-tooltip-text-x { fill: #ffffff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx3 .axis-tooltip-text-y { +#_sample_helper_static_id_prefix_3 .axis-tooltip-text-y { fill: #ffffff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx3 .tooltip-text { +#_sample_helper_static_id_prefix_3 .tooltip-text { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx3 .tooltip-title { +#_sample_helper_static_id_prefix_3 .tooltip-title { fill: #474747; font-weight: bold; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx3 .tooltip-label { +#_sample_helper_static_id_prefix_3 .tooltip-label { fill: #474747; font-weight: bold; font-style: normal;font-family: sans-serif; @@ -129,7 +129,7 @@ font-size: 13.0px; } - + @@ -167,7 +167,7 @@ font-size: 13.0px; - + @@ -426,13 +426,13 @@ font-size: 13.0px; - + - + @@ -556,6 +556,6 @@ font-size: 13.0px; - + \ No newline at end of file diff --git a/docs/images/guides/geoGuide/usaStatesPlotWithCentroids_dark.svg b/docs/images/guides/geoGuide/usaStatesPlotWithCentroids_dark.svg index d676949dd..05f1c779a 100644 --- a/docs/images/guides/geoGuide/usaStatesPlotWithCentroids_dark.svg +++ b/docs/images/guides/geoGuide/usaStatesPlotWithCentroids_dark.svg @@ -10,117 +10,117 @@ text { text-rendering: optimizeLegibility; } -#xXxprefixXx0 .plot-title { +#_sample_helper_static_id_prefix_0 .plot-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx3 .axis-tooltip-text-x { +#_sample_helper_static_id_prefix_3 .axis-tooltip-text-x { fill: #303030; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx3 .axis-tooltip-text-y { +#_sample_helper_static_id_prefix_3 .axis-tooltip-text-y { fill: #303030; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx3 .tooltip-text { +#_sample_helper_static_id_prefix_3 .tooltip-text { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx3 .tooltip-title { +#_sample_helper_static_id_prefix_3 .tooltip-title { fill: #bbbbbb; font-weight: bold; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx3 .tooltip-label { +#_sample_helper_static_id_prefix_3 .tooltip-label { fill: #bbbbbb; font-weight: bold; font-style: normal;font-family: sans-serif; @@ -129,7 +129,7 @@ font-size: 13.0px; } - + @@ -269,7 +269,7 @@ font-size: 13.0px; - + @@ -528,13 +528,13 @@ font-size: 13.0px; - + - + @@ -556,6 +556,6 @@ font-size: 13.0px; - + \ No newline at end of file diff --git a/docs/images/guides/geoGuide/usaStatesPlotWithDefaultBounds.svg b/docs/images/guides/geoGuide/usaStatesPlotWithDefaultBounds.svg index b5a4f1e8e..277d0c28a 100644 --- a/docs/images/guides/geoGuide/usaStatesPlotWithDefaultBounds.svg +++ b/docs/images/guides/geoGuide/usaStatesPlotWithDefaultBounds.svg @@ -10,117 +10,117 @@ text { text-rendering: optimizeLegibility; } -#xXxprefixXx0 .plot-title { +#_sample_helper_static_id_prefix_0 .plot-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx3 .axis-tooltip-text-x { +#_sample_helper_static_id_prefix_3 .axis-tooltip-text-x { fill: #ffffff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx3 .axis-tooltip-text-y { +#_sample_helper_static_id_prefix_3 .axis-tooltip-text-y { fill: #ffffff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx3 .tooltip-text { +#_sample_helper_static_id_prefix_3 .tooltip-text { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx3 .tooltip-title { +#_sample_helper_static_id_prefix_3 .tooltip-title { fill: #474747; font-weight: bold; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx3 .tooltip-label { +#_sample_helper_static_id_prefix_3 .tooltip-label { fill: #474747; font-weight: bold; font-style: normal;font-family: sans-serif; @@ -129,7 +129,7 @@ font-size: 13.0px; } - + @@ -167,7 +167,7 @@ font-size: 13.0px; - + @@ -471,13 +471,13 @@ font-size: 13.0px; - + - + @@ -601,6 +601,6 @@ font-size: 13.0px; - + \ No newline at end of file diff --git a/docs/images/guides/geoGuide/usaStatesPlotWithDefaultBounds_dark.svg b/docs/images/guides/geoGuide/usaStatesPlotWithDefaultBounds_dark.svg index a02a6e6af..510fe8f39 100644 --- a/docs/images/guides/geoGuide/usaStatesPlotWithDefaultBounds_dark.svg +++ b/docs/images/guides/geoGuide/usaStatesPlotWithDefaultBounds_dark.svg @@ -10,117 +10,117 @@ text { text-rendering: optimizeLegibility; } -#xXxprefixXx0 .plot-title { +#_sample_helper_static_id_prefix_0 .plot-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx3 .axis-tooltip-text-x { +#_sample_helper_static_id_prefix_3 .axis-tooltip-text-x { fill: #303030; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx3 .axis-tooltip-text-y { +#_sample_helper_static_id_prefix_3 .axis-tooltip-text-y { fill: #303030; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx3 .tooltip-text { +#_sample_helper_static_id_prefix_3 .tooltip-text { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx3 .tooltip-title { +#_sample_helper_static_id_prefix_3 .tooltip-title { fill: #bbbbbb; font-weight: bold; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx3 .tooltip-label { +#_sample_helper_static_id_prefix_3 .tooltip-label { fill: #bbbbbb; font-weight: bold; font-style: normal;font-family: sans-serif; @@ -129,7 +129,7 @@ font-size: 13.0px; } - + @@ -269,7 +269,7 @@ font-size: 13.0px; - + @@ -573,13 +573,13 @@ font-size: 13.0px; - + - + @@ -601,6 +601,6 @@ font-size: 13.0px; - + \ No newline at end of file diff --git a/docs/images/guides/geoGuide/usaStatesPlotWithGreatCircle.svg b/docs/images/guides/geoGuide/usaStatesPlotWithGreatCircle.svg index e4175b457..fbc9cd61b 100644 --- a/docs/images/guides/geoGuide/usaStatesPlotWithGreatCircle.svg +++ b/docs/images/guides/geoGuide/usaStatesPlotWithGreatCircle.svg @@ -10,117 +10,117 @@ text { text-rendering: optimizeLegibility; } -#xXxprefixXx0 .plot-title { +#_sample_helper_static_id_prefix_0 .plot-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx4 .axis-tooltip-text-x { +#_sample_helper_static_id_prefix_4 .axis-tooltip-text-x { fill: #ffffff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx4 .axis-tooltip-text-y { +#_sample_helper_static_id_prefix_4 .axis-tooltip-text-y { fill: #ffffff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx4 .tooltip-text { +#_sample_helper_static_id_prefix_4 .tooltip-text { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx4 .tooltip-title { +#_sample_helper_static_id_prefix_4 .tooltip-title { fill: #474747; font-weight: bold; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx4 .tooltip-label { +#_sample_helper_static_id_prefix_4 .tooltip-label { fill: #474747; font-weight: bold; font-style: normal;font-family: sans-serif; @@ -129,7 +129,7 @@ font-size: 13.0px; } - + @@ -167,7 +167,7 @@ font-size: 13.0px; - + @@ -385,19 +385,19 @@ font-size: 13.0px; - + - + - + @@ -521,6 +521,6 @@ font-size: 13.0px; - + \ No newline at end of file diff --git a/docs/images/guides/geoGuide/usaStatesPlotWithGreatCircle_dark.svg b/docs/images/guides/geoGuide/usaStatesPlotWithGreatCircle_dark.svg index 1177b9dac..699e19fb2 100644 --- a/docs/images/guides/geoGuide/usaStatesPlotWithGreatCircle_dark.svg +++ b/docs/images/guides/geoGuide/usaStatesPlotWithGreatCircle_dark.svg @@ -10,117 +10,117 @@ text { text-rendering: optimizeLegibility; } -#xXxprefixXx0 .plot-title { +#_sample_helper_static_id_prefix_0 .plot-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx4 .axis-tooltip-text-x { +#_sample_helper_static_id_prefix_4 .axis-tooltip-text-x { fill: #303030; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx4 .axis-tooltip-text-y { +#_sample_helper_static_id_prefix_4 .axis-tooltip-text-y { fill: #303030; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx4 .tooltip-text { +#_sample_helper_static_id_prefix_4 .tooltip-text { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx4 .tooltip-title { +#_sample_helper_static_id_prefix_4 .tooltip-title { fill: #bbbbbb; font-weight: bold; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx4 .tooltip-label { +#_sample_helper_static_id_prefix_4 .tooltip-label { fill: #bbbbbb; font-weight: bold; font-style: normal;font-family: sans-serif; @@ -129,7 +129,7 @@ font-size: 13.0px; } - + @@ -269,7 +269,7 @@ font-size: 13.0px; - + @@ -487,19 +487,19 @@ font-size: 13.0px; - + - + - + @@ -521,6 +521,6 @@ font-size: 13.0px; - + \ No newline at end of file diff --git a/docs/images/guides/geoGuide/usaStatesPlotWithMercator.svg b/docs/images/guides/geoGuide/usaStatesPlotWithMercator.svg index 07fa30579..a0475e14f 100644 --- a/docs/images/guides/geoGuide/usaStatesPlotWithMercator.svg +++ b/docs/images/guides/geoGuide/usaStatesPlotWithMercator.svg @@ -10,117 +10,117 @@ text { text-rendering: optimizeLegibility; } -#xXxprefixXx0 .plot-title { +#_sample_helper_static_id_prefix_0 .plot-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-x { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-x { fill: #ffffff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-y { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-y { fill: #ffffff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-text { +#_sample_helper_static_id_prefix_2 .tooltip-text { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-title { +#_sample_helper_static_id_prefix_2 .tooltip-title { fill: #474747; font-weight: bold; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-label { +#_sample_helper_static_id_prefix_2 .tooltip-label { fill: #474747; font-weight: bold; font-style: normal;font-family: sans-serif; @@ -129,7 +129,7 @@ font-size: 13.0px; } - + @@ -179,7 +179,7 @@ font-size: 13.0px; - + @@ -395,7 +395,7 @@ font-size: 13.0px; - + @@ -563,6 +563,6 @@ font-size: 13.0px; - + \ No newline at end of file diff --git a/docs/images/guides/geoGuide/usaStatesPlotWithMercator_dark.svg b/docs/images/guides/geoGuide/usaStatesPlotWithMercator_dark.svg index 3e8187d38..2cfdbfca1 100644 --- a/docs/images/guides/geoGuide/usaStatesPlotWithMercator_dark.svg +++ b/docs/images/guides/geoGuide/usaStatesPlotWithMercator_dark.svg @@ -10,117 +10,117 @@ text { text-rendering: optimizeLegibility; } -#xXxprefixXx0 .plot-title { +#_sample_helper_static_id_prefix_0 .plot-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-x { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-x { fill: #303030; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-y { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-y { fill: #303030; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-text { +#_sample_helper_static_id_prefix_2 .tooltip-text { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-title { +#_sample_helper_static_id_prefix_2 .tooltip-title { fill: #bbbbbb; font-weight: bold; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-label { +#_sample_helper_static_id_prefix_2 .tooltip-label { fill: #bbbbbb; font-weight: bold; font-style: normal;font-family: sans-serif; @@ -129,7 +129,7 @@ font-size: 13.0px; } - + @@ -325,7 +325,7 @@ font-size: 13.0px; - + @@ -541,7 +541,7 @@ font-size: 13.0px; - + @@ -563,6 +563,6 @@ font-size: 13.0px; - + \ No newline at end of file diff --git a/docs/images/guides/geoGuide/usaStatesPlotWithTopCities.svg b/docs/images/guides/geoGuide/usaStatesPlotWithTopCities.svg index 4ede4b58c..914f89f15 100644 --- a/docs/images/guides/geoGuide/usaStatesPlotWithTopCities.svg +++ b/docs/images/guides/geoGuide/usaStatesPlotWithTopCities.svg @@ -10,117 +10,117 @@ text { text-rendering: optimizeLegibility; } -#xXxprefixXx0 .plot-title { +#_sample_helper_static_id_prefix_0 .plot-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx3 .axis-tooltip-text-x { +#_sample_helper_static_id_prefix_3 .axis-tooltip-text-x { fill: #ffffff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx3 .axis-tooltip-text-y { +#_sample_helper_static_id_prefix_3 .axis-tooltip-text-y { fill: #ffffff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx3 .tooltip-text { +#_sample_helper_static_id_prefix_3 .tooltip-text { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx3 .tooltip-title { +#_sample_helper_static_id_prefix_3 .tooltip-title { fill: #474747; font-weight: bold; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx3 .tooltip-label { +#_sample_helper_static_id_prefix_3 .tooltip-label { fill: #474747; font-weight: bold; font-style: normal;font-family: sans-serif; @@ -129,7 +129,7 @@ font-size: 13.0px; } - + @@ -179,7 +179,7 @@ font-size: 13.0px; - + @@ -431,13 +431,13 @@ font-size: 13.0px; - + - + @@ -605,6 +605,6 @@ font-size: 13.0px; - + \ No newline at end of file diff --git a/docs/images/guides/geoGuide/usaStatesPlotWithTopCities_dark.svg b/docs/images/guides/geoGuide/usaStatesPlotWithTopCities_dark.svg index c311d5c1e..671d57253 100644 --- a/docs/images/guides/geoGuide/usaStatesPlotWithTopCities_dark.svg +++ b/docs/images/guides/geoGuide/usaStatesPlotWithTopCities_dark.svg @@ -10,117 +10,117 @@ text { text-rendering: optimizeLegibility; } -#xXxprefixXx0 .plot-title { +#_sample_helper_static_id_prefix_0 .plot-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx3 .axis-tooltip-text-x { +#_sample_helper_static_id_prefix_3 .axis-tooltip-text-x { fill: #303030; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx3 .axis-tooltip-text-y { +#_sample_helper_static_id_prefix_3 .axis-tooltip-text-y { fill: #303030; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx3 .tooltip-text { +#_sample_helper_static_id_prefix_3 .tooltip-text { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx3 .tooltip-title { +#_sample_helper_static_id_prefix_3 .tooltip-title { fill: #bbbbbb; font-weight: bold; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx3 .tooltip-label { +#_sample_helper_static_id_prefix_3 .tooltip-label { fill: #bbbbbb; font-weight: bold; font-style: normal;font-family: sans-serif; @@ -129,7 +129,7 @@ font-size: 13.0px; } - + @@ -325,7 +325,7 @@ font-size: 13.0px; - + @@ -577,13 +577,13 @@ font-size: 13.0px; - + - + @@ -605,6 +605,6 @@ font-size: 13.0px; - + \ No newline at end of file diff --git a/docs/images/guides/geoGuide/usaStatesPlotWithWorldCities.svg b/docs/images/guides/geoGuide/usaStatesPlotWithWorldCities.svg index b4c300bb7..81add40ad 100644 --- a/docs/images/guides/geoGuide/usaStatesPlotWithWorldCities.svg +++ b/docs/images/guides/geoGuide/usaStatesPlotWithWorldCities.svg @@ -10,117 +10,117 @@ text { text-rendering: optimizeLegibility; } -#xXxprefixXx0 .plot-title { +#_sample_helper_static_id_prefix_0 .plot-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx3 .axis-tooltip-text-x { +#_sample_helper_static_id_prefix_3 .axis-tooltip-text-x { fill: #ffffff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx3 .axis-tooltip-text-y { +#_sample_helper_static_id_prefix_3 .axis-tooltip-text-y { fill: #ffffff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx3 .tooltip-text { +#_sample_helper_static_id_prefix_3 .tooltip-text { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx3 .tooltip-title { +#_sample_helper_static_id_prefix_3 .tooltip-title { fill: #474747; font-weight: bold; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx3 .tooltip-label { +#_sample_helper_static_id_prefix_3 .tooltip-label { fill: #474747; font-weight: bold; font-style: normal;font-family: sans-serif; @@ -129,7 +129,7 @@ font-size: 13.0px; } - + @@ -175,7 +175,7 @@ font-size: 13.0px; - + @@ -7739,13 +7739,13 @@ font-size: 13.0px; - + - + @@ -7899,6 +7899,6 @@ font-size: 13.0px; - + \ No newline at end of file diff --git a/docs/images/guides/geoGuide/usaStatesPlotWithWorldCities_dark.svg b/docs/images/guides/geoGuide/usaStatesPlotWithWorldCities_dark.svg index 2eb5acb68..34eefc869 100644 --- a/docs/images/guides/geoGuide/usaStatesPlotWithWorldCities_dark.svg +++ b/docs/images/guides/geoGuide/usaStatesPlotWithWorldCities_dark.svg @@ -10,117 +10,117 @@ text { text-rendering: optimizeLegibility; } -#xXxprefixXx0 .plot-title { +#_sample_helper_static_id_prefix_0 .plot-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx3 .axis-tooltip-text-x { +#_sample_helper_static_id_prefix_3 .axis-tooltip-text-x { fill: #303030; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx3 .axis-tooltip-text-y { +#_sample_helper_static_id_prefix_3 .axis-tooltip-text-y { fill: #303030; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx3 .tooltip-text { +#_sample_helper_static_id_prefix_3 .tooltip-text { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx3 .tooltip-title { +#_sample_helper_static_id_prefix_3 .tooltip-title { fill: #bbbbbb; font-weight: bold; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx3 .tooltip-label { +#_sample_helper_static_id_prefix_3 .tooltip-label { fill: #bbbbbb; font-weight: bold; font-style: normal;font-family: sans-serif; @@ -129,7 +129,7 @@ font-size: 13.0px; } - + @@ -307,7 +307,7 @@ font-size: 13.0px; - + @@ -7871,13 +7871,13 @@ font-size: 13.0px; - + - + @@ -7899,6 +7899,6 @@ font-size: 13.0px; - + \ No newline at end of file diff --git a/docs/images/guides/geoGuide/writeGeoJson2usaCitiesPlotFromGeoJson.svg b/docs/images/guides/geoGuide/writeGeoJson2usaCitiesPlotFromGeoJson.svg index ea1ad7bb1..fbbe2febc 100644 --- a/docs/images/guides/geoGuide/writeGeoJson2usaCitiesPlotFromGeoJson.svg +++ b/docs/images/guides/geoGuide/writeGeoJson2usaCitiesPlotFromGeoJson.svg @@ -10,117 +10,117 @@ text { text-rendering: optimizeLegibility; } -#xXxprefixXx0 .plot-title { +#_sample_helper_static_id_prefix_0 .plot-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-x { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-x { fill: #ffffff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-y { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-y { fill: #ffffff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-text { +#_sample_helper_static_id_prefix_2 .tooltip-text { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-title { +#_sample_helper_static_id_prefix_2 .tooltip-title { fill: #474747; font-weight: bold; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-label { +#_sample_helper_static_id_prefix_2 .tooltip-label { fill: #474747; font-weight: bold; font-style: normal;font-family: sans-serif; @@ -129,7 +129,7 @@ font-size: 13.0px; } - + @@ -187,7 +187,7 @@ font-size: 13.0px; - + @@ -229,7 +229,7 @@ font-size: 13.0px; - + @@ -435,6 +435,6 @@ font-size: 13.0px; - + \ No newline at end of file diff --git a/docs/images/guides/geoGuide/writeGeoJson2usaCitiesPlotFromGeoJson_dark.svg b/docs/images/guides/geoGuide/writeGeoJson2usaCitiesPlotFromGeoJson_dark.svg index 7b0dd07fb..aeba4c0f5 100644 --- a/docs/images/guides/geoGuide/writeGeoJson2usaCitiesPlotFromGeoJson_dark.svg +++ b/docs/images/guides/geoGuide/writeGeoJson2usaCitiesPlotFromGeoJson_dark.svg @@ -10,117 +10,117 @@ text { text-rendering: optimizeLegibility; } -#xXxprefixXx0 .plot-title { +#_sample_helper_static_id_prefix_0 .plot-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-x { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-x { fill: #303030; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-y { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-y { fill: #303030; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-text { +#_sample_helper_static_id_prefix_2 .tooltip-text { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-title { +#_sample_helper_static_id_prefix_2 .tooltip-title { fill: #bbbbbb; font-weight: bold; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-label { +#_sample_helper_static_id_prefix_2 .tooltip-label { fill: #bbbbbb; font-weight: bold; font-style: normal;font-family: sans-serif; @@ -129,7 +129,7 @@ font-size: 13.0px; } - + @@ -371,7 +371,7 @@ font-size: 13.0px; - + @@ -413,7 +413,7 @@ font-size: 13.0px; - + @@ -435,6 +435,6 @@ font-size: 13.0px; - + \ No newline at end of file diff --git a/docs/images/guides/geoGuide/writeShapefile2usaStatesPlotFromShapefile.svg b/docs/images/guides/geoGuide/writeShapefile2usaStatesPlotFromShapefile.svg index 7a2b670ae..7ea603650 100644 --- a/docs/images/guides/geoGuide/writeShapefile2usaStatesPlotFromShapefile.svg +++ b/docs/images/guides/geoGuide/writeShapefile2usaStatesPlotFromShapefile.svg @@ -10,117 +10,117 @@ text { text-rendering: optimizeLegibility; } -#xXxprefixXx0 .plot-title { +#_sample_helper_static_id_prefix_0 .plot-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-x { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-x { fill: #ffffff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-y { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-y { fill: #ffffff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-text { +#_sample_helper_static_id_prefix_2 .tooltip-text { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-title { +#_sample_helper_static_id_prefix_2 .tooltip-title { fill: #474747; font-weight: bold; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-label { +#_sample_helper_static_id_prefix_2 .tooltip-label { fill: #474747; font-weight: bold; font-style: normal;font-family: sans-serif; @@ -129,7 +129,7 @@ font-size: 13.0px; } - + @@ -167,7 +167,7 @@ font-size: 13.0px; - + @@ -371,7 +371,7 @@ font-size: 13.0px; - + @@ -495,6 +495,6 @@ font-size: 13.0px; - + \ No newline at end of file diff --git a/docs/images/guides/geoGuide/writeShapefile2usaStatesPlotFromShapefile_dark.svg b/docs/images/guides/geoGuide/writeShapefile2usaStatesPlotFromShapefile_dark.svg index 2d3ccdd57..393f09b46 100644 --- a/docs/images/guides/geoGuide/writeShapefile2usaStatesPlotFromShapefile_dark.svg +++ b/docs/images/guides/geoGuide/writeShapefile2usaStatesPlotFromShapefile_dark.svg @@ -10,117 +10,117 @@ text { text-rendering: optimizeLegibility; } -#xXxprefixXx0 .plot-title { +#_sample_helper_static_id_prefix_0 .plot-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-x { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-x { fill: #303030; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-y { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-y { fill: #303030; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-text { +#_sample_helper_static_id_prefix_2 .tooltip-text { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-title { +#_sample_helper_static_id_prefix_2 .tooltip-title { fill: #bbbbbb; font-weight: bold; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-label { +#_sample_helper_static_id_prefix_2 .tooltip-label { fill: #bbbbbb; font-weight: bold; font-style: normal;font-family: sans-serif; @@ -129,7 +129,7 @@ font-size: 13.0px; } - + @@ -269,7 +269,7 @@ font-size: 13.0px; - + @@ -473,7 +473,7 @@ font-size: 13.0px; - + @@ -495,6 +495,6 @@ font-size: 13.0px; - + \ No newline at end of file diff --git a/docs/images/guides/geoms/guideAlgebraicCurvePlot.svg b/docs/images/guides/geoms/guideAlgebraicCurvePlot.svg index 5207e3a05..925559ea8 100644 --- a/docs/images/guides/geoms/guideAlgebraicCurvePlot.svg +++ b/docs/images/guides/geoms/guideAlgebraicCurvePlot.svg @@ -10,117 +10,117 @@ text { text-rendering: optimizeLegibility; } -#xXxprefixXx0 .plot-title { +#_sample_helper_static_id_prefix_0 .plot-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-x { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-x { fill: #ffffff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-y { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-y { fill: #ffffff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-text { +#_sample_helper_static_id_prefix_2 .tooltip-text { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-title { +#_sample_helper_static_id_prefix_2 .tooltip-title { fill: #474747; font-weight: bold; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-label { +#_sample_helper_static_id_prefix_2 .tooltip-label { fill: #474747; font-weight: bold; font-style: normal;font-family: sans-serif; @@ -129,7 +129,7 @@ font-size: 13.0px; } - + @@ -147,7 +147,7 @@ font-size: 13.0px; - + @@ -157,7 +157,7 @@ font-size: 13.0px; - + @@ -179,6 +179,6 @@ font-size: 13.0px; - + \ No newline at end of file diff --git a/docs/images/guides/geoms/guideAlgebraicCurvePlot_dark.svg b/docs/images/guides/geoms/guideAlgebraicCurvePlot_dark.svg index ada0f67af..b6755db44 100644 --- a/docs/images/guides/geoms/guideAlgebraicCurvePlot_dark.svg +++ b/docs/images/guides/geoms/guideAlgebraicCurvePlot_dark.svg @@ -10,117 +10,117 @@ text { text-rendering: optimizeLegibility; } -#xXxprefixXx0 .plot-title { +#_sample_helper_static_id_prefix_0 .plot-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-x { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-x { fill: #303030; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-y { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-y { fill: #303030; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-text { +#_sample_helper_static_id_prefix_2 .tooltip-text { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-title { +#_sample_helper_static_id_prefix_2 .tooltip-title { fill: #bbbbbb; font-weight: bold; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-label { +#_sample_helper_static_id_prefix_2 .tooltip-label { fill: #bbbbbb; font-weight: bold; font-style: normal;font-family: sans-serif; @@ -129,7 +129,7 @@ font-size: 13.0px; } - + @@ -147,7 +147,7 @@ font-size: 13.0px; - + @@ -157,7 +157,7 @@ font-size: 13.0px; - + @@ -179,6 +179,6 @@ font-size: 13.0px; - + \ No newline at end of file diff --git a/docs/images/guides/geoms/guideErrorBarsConfiguredPointRanges.svg b/docs/images/guides/geoms/guideErrorBarsConfiguredPointRanges.svg index ffb07cf4a..744431d06 100644 --- a/docs/images/guides/geoms/guideErrorBarsConfiguredPointRanges.svg +++ b/docs/images/guides/geoms/guideErrorBarsConfiguredPointRanges.svg @@ -10,117 +10,117 @@ text { text-rendering: optimizeLegibility; } -#xXxprefixXx0 .plot-title { +#_sample_helper_static_id_prefix_0 .plot-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx3 .axis-tooltip-text-x { +#_sample_helper_static_id_prefix_3 .axis-tooltip-text-x { fill: #ffffff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx3 .axis-tooltip-text-y { +#_sample_helper_static_id_prefix_3 .axis-tooltip-text-y { fill: #ffffff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx3 .tooltip-text { +#_sample_helper_static_id_prefix_3 .tooltip-text { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx3 .tooltip-title { +#_sample_helper_static_id_prefix_3 .tooltip-title { fill: #474747; font-weight: bold; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx3 .tooltip-label { +#_sample_helper_static_id_prefix_3 .tooltip-label { fill: #474747; font-weight: bold; font-style: normal;font-family: sans-serif; @@ -129,7 +129,7 @@ font-size: 13.0px; } - + @@ -171,7 +171,7 @@ font-size: 13.0px; - + @@ -231,13 +231,13 @@ font-size: 13.0px; - + - + @@ -444,6 +444,6 @@ font-size: 13.0px; - + \ No newline at end of file diff --git a/docs/images/guides/geoms/guideErrorBarsConfiguredPointRanges_dark.svg b/docs/images/guides/geoms/guideErrorBarsConfiguredPointRanges_dark.svg index 32246c391..396282fd8 100644 --- a/docs/images/guides/geoms/guideErrorBarsConfiguredPointRanges_dark.svg +++ b/docs/images/guides/geoms/guideErrorBarsConfiguredPointRanges_dark.svg @@ -10,117 +10,117 @@ text { text-rendering: optimizeLegibility; } -#xXxprefixXx0 .plot-title { +#_sample_helper_static_id_prefix_0 .plot-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx3 .axis-tooltip-text-x { +#_sample_helper_static_id_prefix_3 .axis-tooltip-text-x { fill: #303030; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx3 .axis-tooltip-text-y { +#_sample_helper_static_id_prefix_3 .axis-tooltip-text-y { fill: #303030; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx3 .tooltip-text { +#_sample_helper_static_id_prefix_3 .tooltip-text { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx3 .tooltip-title { +#_sample_helper_static_id_prefix_3 .tooltip-title { fill: #bbbbbb; font-weight: bold; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx3 .tooltip-label { +#_sample_helper_static_id_prefix_3 .tooltip-label { fill: #bbbbbb; font-weight: bold; font-style: normal;font-family: sans-serif; @@ -129,7 +129,7 @@ font-size: 13.0px; } - + @@ -291,7 +291,7 @@ font-size: 13.0px; - + @@ -351,13 +351,13 @@ font-size: 13.0px; - + - + @@ -444,6 +444,6 @@ font-size: 13.0px; - + \ No newline at end of file diff --git a/docs/images/guides/geoms/guideErrorBarsCrossbars.svg b/docs/images/guides/geoms/guideErrorBarsCrossbars.svg index 38da68d4b..d3d49adaa 100644 --- a/docs/images/guides/geoms/guideErrorBarsCrossbars.svg +++ b/docs/images/guides/geoms/guideErrorBarsCrossbars.svg @@ -10,117 +10,117 @@ text { text-rendering: optimizeLegibility; } -#xXxprefixXx0 .plot-title { +#_sample_helper_static_id_prefix_0 .plot-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-x { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-x { fill: #ffffff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-y { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-y { fill: #ffffff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-text { +#_sample_helper_static_id_prefix_2 .tooltip-text { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-title { +#_sample_helper_static_id_prefix_2 .tooltip-title { fill: #474747; font-weight: bold; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-label { +#_sample_helper_static_id_prefix_2 .tooltip-label { fill: #474747; font-weight: bold; font-style: normal;font-family: sans-serif; @@ -129,7 +129,7 @@ font-size: 13.0px; } - + @@ -177,7 +177,7 @@ font-size: 13.0px; - + @@ -209,7 +209,7 @@ font-size: 13.0px; - + @@ -425,6 +425,6 @@ font-size: 13.0px; - + \ No newline at end of file diff --git a/docs/images/guides/geoms/guideErrorBarsCrossbars_dark.svg b/docs/images/guides/geoms/guideErrorBarsCrossbars_dark.svg index 299ea2d72..2eedc9edc 100644 --- a/docs/images/guides/geoms/guideErrorBarsCrossbars_dark.svg +++ b/docs/images/guides/geoms/guideErrorBarsCrossbars_dark.svg @@ -10,117 +10,117 @@ text { text-rendering: optimizeLegibility; } -#xXxprefixXx0 .plot-title { +#_sample_helper_static_id_prefix_0 .plot-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-x { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-x { fill: #303030; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-y { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-y { fill: #303030; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-text { +#_sample_helper_static_id_prefix_2 .tooltip-text { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-title { +#_sample_helper_static_id_prefix_2 .tooltip-title { fill: #bbbbbb; font-weight: bold; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-label { +#_sample_helper_static_id_prefix_2 .tooltip-label { fill: #bbbbbb; font-weight: bold; font-style: normal;font-family: sans-serif; @@ -129,7 +129,7 @@ font-size: 13.0px; } - + @@ -324,7 +324,7 @@ font-size: 13.0px; - + @@ -356,7 +356,7 @@ font-size: 13.0px; - + @@ -425,6 +425,6 @@ font-size: 13.0px; - + \ No newline at end of file diff --git a/docs/images/guides/geoms/guideErrorBarsLineRanges.svg b/docs/images/guides/geoms/guideErrorBarsLineRanges.svg index 2ff5a7155..09e083d14 100644 --- a/docs/images/guides/geoms/guideErrorBarsLineRanges.svg +++ b/docs/images/guides/geoms/guideErrorBarsLineRanges.svg @@ -10,117 +10,117 @@ text { text-rendering: optimizeLegibility; } -#xXxprefixXx0 .plot-title { +#_sample_helper_static_id_prefix_0 .plot-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx3 .axis-tooltip-text-x { +#_sample_helper_static_id_prefix_3 .axis-tooltip-text-x { fill: #ffffff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx3 .axis-tooltip-text-y { +#_sample_helper_static_id_prefix_3 .axis-tooltip-text-y { fill: #ffffff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx3 .tooltip-text { +#_sample_helper_static_id_prefix_3 .tooltip-text { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx3 .tooltip-title { +#_sample_helper_static_id_prefix_3 .tooltip-title { fill: #474747; font-weight: bold; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx3 .tooltip-label { +#_sample_helper_static_id_prefix_3 .tooltip-label { fill: #474747; font-weight: bold; font-style: normal;font-family: sans-serif; @@ -129,7 +129,7 @@ font-size: 13.0px; } - + @@ -171,7 +171,7 @@ font-size: 13.0px; - + @@ -201,13 +201,13 @@ font-size: 13.0px; - + - + @@ -400,6 +400,6 @@ font-size: 13.0px; - + \ No newline at end of file diff --git a/docs/images/guides/geoms/guideErrorBarsLineRanges_dark.svg b/docs/images/guides/geoms/guideErrorBarsLineRanges_dark.svg index 46f4c4c32..2df933bb5 100644 --- a/docs/images/guides/geoms/guideErrorBarsLineRanges_dark.svg +++ b/docs/images/guides/geoms/guideErrorBarsLineRanges_dark.svg @@ -10,117 +10,117 @@ text { text-rendering: optimizeLegibility; } -#xXxprefixXx0 .plot-title { +#_sample_helper_static_id_prefix_0 .plot-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx3 .axis-tooltip-text-x { +#_sample_helper_static_id_prefix_3 .axis-tooltip-text-x { fill: #303030; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx3 .axis-tooltip-text-y { +#_sample_helper_static_id_prefix_3 .axis-tooltip-text-y { fill: #303030; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx3 .tooltip-text { +#_sample_helper_static_id_prefix_3 .tooltip-text { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx3 .tooltip-title { +#_sample_helper_static_id_prefix_3 .tooltip-title { fill: #bbbbbb; font-weight: bold; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx3 .tooltip-label { +#_sample_helper_static_id_prefix_3 .tooltip-label { fill: #bbbbbb; font-weight: bold; font-style: normal;font-family: sans-serif; @@ -129,7 +129,7 @@ font-size: 13.0px; } - + @@ -291,7 +291,7 @@ font-size: 13.0px; - + @@ -321,13 +321,13 @@ font-size: 13.0px; - + - + @@ -400,6 +400,6 @@ font-size: 13.0px; - + \ No newline at end of file diff --git a/docs/images/guides/geoms/guideErrorBarsOnBars.svg b/docs/images/guides/geoms/guideErrorBarsOnBars.svg index 6d8df440b..2b8874388 100644 --- a/docs/images/guides/geoms/guideErrorBarsOnBars.svg +++ b/docs/images/guides/geoms/guideErrorBarsOnBars.svg @@ -10,117 +10,117 @@ text { text-rendering: optimizeLegibility; } -#xXxprefixXx0 .plot-title { +#_sample_helper_static_id_prefix_0 .plot-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx3 .axis-tooltip-text-x { +#_sample_helper_static_id_prefix_3 .axis-tooltip-text-x { fill: #ffffff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx3 .axis-tooltip-text-y { +#_sample_helper_static_id_prefix_3 .axis-tooltip-text-y { fill: #ffffff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx3 .tooltip-text { +#_sample_helper_static_id_prefix_3 .tooltip-text { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx3 .tooltip-title { +#_sample_helper_static_id_prefix_3 .tooltip-title { fill: #474747; font-weight: bold; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx3 .tooltip-label { +#_sample_helper_static_id_prefix_3 .tooltip-label { fill: #474747; font-weight: bold; font-style: normal;font-family: sans-serif; @@ -129,7 +129,7 @@ font-size: 13.0px; } - + @@ -333,7 +333,7 @@ font-size: 13.0px; - + @@ -403,13 +403,13 @@ font-size: 13.0px; - + - + @@ -474,6 +474,6 @@ font-size: 13.0px; - + \ No newline at end of file diff --git a/docs/images/guides/geoms/guideErrorBarsOnBars_dark.svg b/docs/images/guides/geoms/guideErrorBarsOnBars_dark.svg index 73199bf17..ad13a1d26 100644 --- a/docs/images/guides/geoms/guideErrorBarsOnBars_dark.svg +++ b/docs/images/guides/geoms/guideErrorBarsOnBars_dark.svg @@ -10,117 +10,117 @@ text { text-rendering: optimizeLegibility; } -#xXxprefixXx0 .plot-title { +#_sample_helper_static_id_prefix_0 .plot-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx3 .axis-tooltip-text-x { +#_sample_helper_static_id_prefix_3 .axis-tooltip-text-x { fill: #303030; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx3 .axis-tooltip-text-y { +#_sample_helper_static_id_prefix_3 .axis-tooltip-text-y { fill: #303030; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx3 .tooltip-text { +#_sample_helper_static_id_prefix_3 .tooltip-text { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx3 .tooltip-title { +#_sample_helper_static_id_prefix_3 .tooltip-title { fill: #bbbbbb; font-weight: bold; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx3 .tooltip-label { +#_sample_helper_static_id_prefix_3 .tooltip-label { fill: #bbbbbb; font-weight: bold; font-style: normal;font-family: sans-serif; @@ -129,7 +129,7 @@ font-size: 13.0px; } - + @@ -333,7 +333,7 @@ font-size: 13.0px; - + @@ -403,13 +403,13 @@ font-size: 13.0px; - + - + @@ -474,6 +474,6 @@ font-size: 13.0px; - + \ No newline at end of file diff --git a/docs/images/guides/geoms/guideErrorBarsPointRanges.svg b/docs/images/guides/geoms/guideErrorBarsPointRanges.svg index 1b00da2aa..d7e7a29bc 100644 --- a/docs/images/guides/geoms/guideErrorBarsPointRanges.svg +++ b/docs/images/guides/geoms/guideErrorBarsPointRanges.svg @@ -10,117 +10,117 @@ text { text-rendering: optimizeLegibility; } -#xXxprefixXx0 .plot-title { +#_sample_helper_static_id_prefix_0 .plot-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx3 .axis-tooltip-text-x { +#_sample_helper_static_id_prefix_3 .axis-tooltip-text-x { fill: #ffffff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx3 .axis-tooltip-text-y { +#_sample_helper_static_id_prefix_3 .axis-tooltip-text-y { fill: #ffffff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx3 .tooltip-text { +#_sample_helper_static_id_prefix_3 .tooltip-text { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx3 .tooltip-title { +#_sample_helper_static_id_prefix_3 .tooltip-title { fill: #474747; font-weight: bold; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx3 .tooltip-label { +#_sample_helper_static_id_prefix_3 .tooltip-label { fill: #474747; font-weight: bold; font-style: normal;font-family: sans-serif; @@ -129,7 +129,7 @@ font-size: 13.0px; } - + @@ -171,7 +171,7 @@ font-size: 13.0px; - + @@ -231,13 +231,13 @@ font-size: 13.0px; - + - + @@ -444,6 +444,6 @@ font-size: 13.0px; - + \ No newline at end of file diff --git a/docs/images/guides/geoms/guideErrorBarsPointRanges_dark.svg b/docs/images/guides/geoms/guideErrorBarsPointRanges_dark.svg index d71224eec..c0254ce5a 100644 --- a/docs/images/guides/geoms/guideErrorBarsPointRanges_dark.svg +++ b/docs/images/guides/geoms/guideErrorBarsPointRanges_dark.svg @@ -10,117 +10,117 @@ text { text-rendering: optimizeLegibility; } -#xXxprefixXx0 .plot-title { +#_sample_helper_static_id_prefix_0 .plot-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx3 .axis-tooltip-text-x { +#_sample_helper_static_id_prefix_3 .axis-tooltip-text-x { fill: #303030; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx3 .axis-tooltip-text-y { +#_sample_helper_static_id_prefix_3 .axis-tooltip-text-y { fill: #303030; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx3 .tooltip-text { +#_sample_helper_static_id_prefix_3 .tooltip-text { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx3 .tooltip-title { +#_sample_helper_static_id_prefix_3 .tooltip-title { fill: #bbbbbb; font-weight: bold; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx3 .tooltip-label { +#_sample_helper_static_id_prefix_3 .tooltip-label { fill: #bbbbbb; font-weight: bold; font-style: normal;font-family: sans-serif; @@ -129,7 +129,7 @@ font-size: 13.0px; } - + @@ -291,7 +291,7 @@ font-size: 13.0px; - + @@ -351,13 +351,13 @@ font-size: 13.0px; - + - + @@ -444,6 +444,6 @@ font-size: 13.0px; - + \ No newline at end of file diff --git a/docs/images/guides/geoms/guideErrorBarsWithLines.svg b/docs/images/guides/geoms/guideErrorBarsWithLines.svg index b34586a8f..78008038f 100644 --- a/docs/images/guides/geoms/guideErrorBarsWithLines.svg +++ b/docs/images/guides/geoms/guideErrorBarsWithLines.svg @@ -10,117 +10,117 @@ text { text-rendering: optimizeLegibility; } -#xXxprefixXx0 .plot-title { +#_sample_helper_static_id_prefix_0 .plot-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx4 .axis-tooltip-text-x { +#_sample_helper_static_id_prefix_4 .axis-tooltip-text-x { fill: #ffffff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx4 .axis-tooltip-text-y { +#_sample_helper_static_id_prefix_4 .axis-tooltip-text-y { fill: #ffffff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx4 .tooltip-text { +#_sample_helper_static_id_prefix_4 .tooltip-text { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx4 .tooltip-title { +#_sample_helper_static_id_prefix_4 .tooltip-title { fill: #474747; font-weight: bold; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx4 .tooltip-label { +#_sample_helper_static_id_prefix_4 .tooltip-label { fill: #474747; font-weight: bold; font-style: normal;font-family: sans-serif; @@ -129,7 +129,7 @@ font-size: 13.0px; } - + @@ -173,7 +173,7 @@ font-size: 13.0px; - + @@ -251,19 +251,19 @@ font-size: 13.0px; - + - + - + @@ -483,6 +483,6 @@ font-size: 13.0px; - + \ No newline at end of file diff --git a/docs/images/guides/geoms/guideErrorBarsWithLinesAndPosition.svg b/docs/images/guides/geoms/guideErrorBarsWithLinesAndPosition.svg index dcf64c7f9..62defa6e1 100644 --- a/docs/images/guides/geoms/guideErrorBarsWithLinesAndPosition.svg +++ b/docs/images/guides/geoms/guideErrorBarsWithLinesAndPosition.svg @@ -10,117 +10,117 @@ text { text-rendering: optimizeLegibility; } -#xXxprefixXx0 .plot-title { +#_sample_helper_static_id_prefix_0 .plot-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx4 .axis-tooltip-text-x { +#_sample_helper_static_id_prefix_4 .axis-tooltip-text-x { fill: #ffffff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx4 .axis-tooltip-text-y { +#_sample_helper_static_id_prefix_4 .axis-tooltip-text-y { fill: #ffffff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx4 .tooltip-text { +#_sample_helper_static_id_prefix_4 .tooltip-text { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx4 .tooltip-title { +#_sample_helper_static_id_prefix_4 .tooltip-title { fill: #474747; font-weight: bold; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx4 .tooltip-label { +#_sample_helper_static_id_prefix_4 .tooltip-label { fill: #474747; font-weight: bold; font-style: normal;font-family: sans-serif; @@ -129,7 +129,7 @@ font-size: 13.0px; } - + @@ -173,7 +173,7 @@ font-size: 13.0px; - + @@ -251,19 +251,19 @@ font-size: 13.0px; - + - + - + @@ -483,6 +483,6 @@ font-size: 13.0px; - + \ No newline at end of file diff --git a/docs/images/guides/geoms/guideErrorBarsWithLinesAndPosition_dark.svg b/docs/images/guides/geoms/guideErrorBarsWithLinesAndPosition_dark.svg index 0f6fdebd5..0bc514bf7 100644 --- a/docs/images/guides/geoms/guideErrorBarsWithLinesAndPosition_dark.svg +++ b/docs/images/guides/geoms/guideErrorBarsWithLinesAndPosition_dark.svg @@ -10,117 +10,117 @@ text { text-rendering: optimizeLegibility; } -#xXxprefixXx0 .plot-title { +#_sample_helper_static_id_prefix_0 .plot-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx4 .axis-tooltip-text-x { +#_sample_helper_static_id_prefix_4 .axis-tooltip-text-x { fill: #303030; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx4 .axis-tooltip-text-y { +#_sample_helper_static_id_prefix_4 .axis-tooltip-text-y { fill: #303030; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx4 .tooltip-text { +#_sample_helper_static_id_prefix_4 .tooltip-text { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx4 .tooltip-title { +#_sample_helper_static_id_prefix_4 .tooltip-title { fill: #bbbbbb; font-weight: bold; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx4 .tooltip-label { +#_sample_helper_static_id_prefix_4 .tooltip-label { fill: #bbbbbb; font-weight: bold; font-style: normal;font-family: sans-serif; @@ -129,7 +129,7 @@ font-size: 13.0px; } - + @@ -302,7 +302,7 @@ font-size: 13.0px; - + @@ -380,19 +380,19 @@ font-size: 13.0px; - + - + - + @@ -483,6 +483,6 @@ font-size: 13.0px; - + \ No newline at end of file diff --git a/docs/images/guides/geoms/guideErrorBarsWithLinesCustomColorScale.svg b/docs/images/guides/geoms/guideErrorBarsWithLinesCustomColorScale.svg index 809701a1f..bc429a104 100644 --- a/docs/images/guides/geoms/guideErrorBarsWithLinesCustomColorScale.svg +++ b/docs/images/guides/geoms/guideErrorBarsWithLinesCustomColorScale.svg @@ -10,117 +10,117 @@ text { text-rendering: optimizeLegibility; } -#xXxprefixXx0 .plot-title { +#_sample_helper_static_id_prefix_0 .plot-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx4 .axis-tooltip-text-x { +#_sample_helper_static_id_prefix_4 .axis-tooltip-text-x { fill: #ffffff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx4 .axis-tooltip-text-y { +#_sample_helper_static_id_prefix_4 .axis-tooltip-text-y { fill: #ffffff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx4 .tooltip-text { +#_sample_helper_static_id_prefix_4 .tooltip-text { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx4 .tooltip-title { +#_sample_helper_static_id_prefix_4 .tooltip-title { fill: #474747; font-weight: bold; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx4 .tooltip-label { +#_sample_helper_static_id_prefix_4 .tooltip-label { fill: #474747; font-weight: bold; font-style: normal;font-family: sans-serif; @@ -129,7 +129,7 @@ font-size: 13.0px; } - + @@ -302,7 +302,7 @@ font-size: 13.0px; - + @@ -380,19 +380,19 @@ font-size: 13.0px; - + - + - + @@ -472,6 +472,6 @@ font-size: 13.0px; - + \ No newline at end of file diff --git a/docs/images/guides/geoms/guideErrorBarsWithLinesCustomColorScale_dark.svg b/docs/images/guides/geoms/guideErrorBarsWithLinesCustomColorScale_dark.svg index 0e9ae2a31..d34073799 100644 --- a/docs/images/guides/geoms/guideErrorBarsWithLinesCustomColorScale_dark.svg +++ b/docs/images/guides/geoms/guideErrorBarsWithLinesCustomColorScale_dark.svg @@ -10,117 +10,117 @@ text { text-rendering: optimizeLegibility; } -#xXxprefixXx0 .plot-title { +#_sample_helper_static_id_prefix_0 .plot-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx4 .axis-tooltip-text-x { +#_sample_helper_static_id_prefix_4 .axis-tooltip-text-x { fill: #303030; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx4 .axis-tooltip-text-y { +#_sample_helper_static_id_prefix_4 .axis-tooltip-text-y { fill: #303030; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx4 .tooltip-text { +#_sample_helper_static_id_prefix_4 .tooltip-text { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx4 .tooltip-title { +#_sample_helper_static_id_prefix_4 .tooltip-title { fill: #bbbbbb; font-weight: bold; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx4 .tooltip-label { +#_sample_helper_static_id_prefix_4 .tooltip-label { fill: #bbbbbb; font-weight: bold; font-style: normal;font-family: sans-serif; @@ -129,7 +129,7 @@ font-size: 13.0px; } - + @@ -302,7 +302,7 @@ font-size: 13.0px; - + @@ -380,19 +380,19 @@ font-size: 13.0px; - + - + - + @@ -472,6 +472,6 @@ font-size: 13.0px; - + \ No newline at end of file diff --git a/docs/images/guides/geoms/guideErrorBarsWithLinesGrouped.svg b/docs/images/guides/geoms/guideErrorBarsWithLinesGrouped.svg index d5e05c808..51996206b 100644 --- a/docs/images/guides/geoms/guideErrorBarsWithLinesGrouped.svg +++ b/docs/images/guides/geoms/guideErrorBarsWithLinesGrouped.svg @@ -10,117 +10,117 @@ text { text-rendering: optimizeLegibility; } -#xXxprefixXx0 .plot-title { +#_sample_helper_static_id_prefix_0 .plot-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx4 .axis-tooltip-text-x { +#_sample_helper_static_id_prefix_4 .axis-tooltip-text-x { fill: #ffffff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx4 .axis-tooltip-text-y { +#_sample_helper_static_id_prefix_4 .axis-tooltip-text-y { fill: #ffffff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx4 .tooltip-text { +#_sample_helper_static_id_prefix_4 .tooltip-text { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx4 .tooltip-title { +#_sample_helper_static_id_prefix_4 .tooltip-title { fill: #474747; font-weight: bold; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx4 .tooltip-label { +#_sample_helper_static_id_prefix_4 .tooltip-label { fill: #474747; font-weight: bold; font-style: normal;font-family: sans-serif; @@ -129,7 +129,7 @@ font-size: 13.0px; } - + @@ -173,7 +173,7 @@ font-size: 13.0px; - + @@ -251,19 +251,19 @@ font-size: 13.0px; - + - + - + @@ -467,6 +467,6 @@ font-size: 13.0px; - + \ No newline at end of file diff --git a/docs/images/guides/geoms/guideErrorBarsWithLinesGrouped_dark.svg b/docs/images/guides/geoms/guideErrorBarsWithLinesGrouped_dark.svg index 0205f3c40..8775f33ec 100644 --- a/docs/images/guides/geoms/guideErrorBarsWithLinesGrouped_dark.svg +++ b/docs/images/guides/geoms/guideErrorBarsWithLinesGrouped_dark.svg @@ -10,117 +10,117 @@ text { text-rendering: optimizeLegibility; } -#xXxprefixXx0 .plot-title { +#_sample_helper_static_id_prefix_0 .plot-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx4 .axis-tooltip-text-x { +#_sample_helper_static_id_prefix_4 .axis-tooltip-text-x { fill: #303030; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx4 .axis-tooltip-text-y { +#_sample_helper_static_id_prefix_4 .axis-tooltip-text-y { fill: #303030; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx4 .tooltip-text { +#_sample_helper_static_id_prefix_4 .tooltip-text { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx4 .tooltip-title { +#_sample_helper_static_id_prefix_4 .tooltip-title { fill: #bbbbbb; font-weight: bold; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx4 .tooltip-label { +#_sample_helper_static_id_prefix_4 .tooltip-label { fill: #bbbbbb; font-weight: bold; font-style: normal;font-family: sans-serif; @@ -129,7 +129,7 @@ font-size: 13.0px; } - + @@ -302,7 +302,7 @@ font-size: 13.0px; - + @@ -380,19 +380,19 @@ font-size: 13.0px; - + - + - + @@ -467,6 +467,6 @@ font-size: 13.0px; - + \ No newline at end of file diff --git a/docs/images/guides/geoms/guideErrorBarsWithLines_dark.svg b/docs/images/guides/geoms/guideErrorBarsWithLines_dark.svg index 48765c839..6729a53a0 100644 --- a/docs/images/guides/geoms/guideErrorBarsWithLines_dark.svg +++ b/docs/images/guides/geoms/guideErrorBarsWithLines_dark.svg @@ -10,117 +10,117 @@ text { text-rendering: optimizeLegibility; } -#xXxprefixXx0 .plot-title { +#_sample_helper_static_id_prefix_0 .plot-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx4 .axis-tooltip-text-x { +#_sample_helper_static_id_prefix_4 .axis-tooltip-text-x { fill: #303030; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx4 .axis-tooltip-text-y { +#_sample_helper_static_id_prefix_4 .axis-tooltip-text-y { fill: #303030; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx4 .tooltip-text { +#_sample_helper_static_id_prefix_4 .tooltip-text { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx4 .tooltip-title { +#_sample_helper_static_id_prefix_4 .tooltip-title { fill: #bbbbbb; font-weight: bold; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx4 .tooltip-label { +#_sample_helper_static_id_prefix_4 .tooltip-label { fill: #bbbbbb; font-weight: bold; font-style: normal;font-family: sans-serif; @@ -129,7 +129,7 @@ font-size: 13.0px; } - + @@ -302,7 +302,7 @@ font-size: 13.0px; - + @@ -380,19 +380,19 @@ font-size: 13.0px; - + - + - + @@ -483,6 +483,6 @@ font-size: 13.0px; - + \ No newline at end of file diff --git a/docs/images/guides/geoms/guideJitterPointsSimplePoints.svg b/docs/images/guides/geoms/guideJitterPointsSimplePoints.svg index 27f8628e8..6af7f9610 100644 --- a/docs/images/guides/geoms/guideJitterPointsSimplePoints.svg +++ b/docs/images/guides/geoms/guideJitterPointsSimplePoints.svg @@ -10,117 +10,117 @@ text { text-rendering: optimizeLegibility; } -#xXxprefixXx0 .plot-title { +#_sample_helper_static_id_prefix_0 .plot-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-x { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-x { fill: #ffffff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-y { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-y { fill: #ffffff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-text { +#_sample_helper_static_id_prefix_2 .tooltip-text { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-title { +#_sample_helper_static_id_prefix_2 .tooltip-title { fill: #474747; font-weight: bold; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-label { +#_sample_helper_static_id_prefix_2 .tooltip-label { fill: #474747; font-weight: bold; font-style: normal;font-family: sans-serif; @@ -129,7 +129,7 @@ font-size: 13.0px; } - + @@ -163,7 +163,7 @@ font-size: 13.0px; - + @@ -409,7 +409,7 @@ font-size: 13.0px; - + @@ -574,6 +574,6 @@ font-size: 13.0px; - + \ No newline at end of file diff --git a/docs/images/guides/geoms/guideJitterPointsSimplePoints_dark.svg b/docs/images/guides/geoms/guideJitterPointsSimplePoints_dark.svg index 8426b677e..b89ff3dea 100644 --- a/docs/images/guides/geoms/guideJitterPointsSimplePoints_dark.svg +++ b/docs/images/guides/geoms/guideJitterPointsSimplePoints_dark.svg @@ -10,117 +10,117 @@ text { text-rendering: optimizeLegibility; } -#xXxprefixXx0 .plot-title { +#_sample_helper_static_id_prefix_0 .plot-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-x { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-x { fill: #303030; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-y { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-y { fill: #303030; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-text { +#_sample_helper_static_id_prefix_2 .tooltip-text { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-title { +#_sample_helper_static_id_prefix_2 .tooltip-title { fill: #bbbbbb; font-weight: bold; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-label { +#_sample_helper_static_id_prefix_2 .tooltip-label { fill: #bbbbbb; font-weight: bold; font-style: normal;font-family: sans-serif; @@ -129,7 +129,7 @@ font-size: 13.0px; } - + @@ -245,7 +245,7 @@ font-size: 13.0px; - + @@ -491,7 +491,7 @@ font-size: 13.0px; - + @@ -574,6 +574,6 @@ font-size: 13.0px; - + \ No newline at end of file diff --git a/docs/images/guides/geoms/guideLinesBrokenLinesLinePlot.svg b/docs/images/guides/geoms/guideLinesBrokenLinesLinePlot.svg index 040017e1e..8426bde3c 100644 --- a/docs/images/guides/geoms/guideLinesBrokenLinesLinePlot.svg +++ b/docs/images/guides/geoms/guideLinesBrokenLinesLinePlot.svg @@ -10,117 +10,117 @@ text { text-rendering: optimizeLegibility; } -#xXxprefixXx0 .plot-title { +#_sample_helper_static_id_prefix_0 .plot-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-x { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-x { fill: #ffffff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-y { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-y { fill: #ffffff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-text { +#_sample_helper_static_id_prefix_2 .tooltip-text { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-title { +#_sample_helper_static_id_prefix_2 .tooltip-title { fill: #474747; font-weight: bold; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-label { +#_sample_helper_static_id_prefix_2 .tooltip-label { fill: #474747; font-weight: bold; font-style: normal;font-family: sans-serif; @@ -129,7 +129,7 @@ font-size: 13.0px; } - + @@ -171,7 +171,7 @@ font-size: 13.0px; - + @@ -183,7 +183,7 @@ font-size: 13.0px; - + @@ -323,6 +323,6 @@ font-size: 13.0px; - + \ No newline at end of file diff --git a/docs/images/guides/geoms/guideLinesBrokenLinesLinePlot_dark.svg b/docs/images/guides/geoms/guideLinesBrokenLinesLinePlot_dark.svg index fe3b71065..326b1c7ce 100644 --- a/docs/images/guides/geoms/guideLinesBrokenLinesLinePlot_dark.svg +++ b/docs/images/guides/geoms/guideLinesBrokenLinesLinePlot_dark.svg @@ -10,117 +10,117 @@ text { text-rendering: optimizeLegibility; } -#xXxprefixXx0 .plot-title { +#_sample_helper_static_id_prefix_0 .plot-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-x { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-x { fill: #303030; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-y { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-y { fill: #303030; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-text { +#_sample_helper_static_id_prefix_2 .tooltip-text { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-title { +#_sample_helper_static_id_prefix_2 .tooltip-title { fill: #bbbbbb; font-weight: bold; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-label { +#_sample_helper_static_id_prefix_2 .tooltip-label { fill: #bbbbbb; font-weight: bold; font-style: normal;font-family: sans-serif; @@ -129,7 +129,7 @@ font-size: 13.0px; } - + @@ -289,7 +289,7 @@ font-size: 13.0px; - + @@ -301,7 +301,7 @@ font-size: 13.0px; - + @@ -323,6 +323,6 @@ font-size: 13.0px; - + \ No newline at end of file diff --git a/docs/images/guides/geoms/guideLinesBrokenLinesPathPlot.svg b/docs/images/guides/geoms/guideLinesBrokenLinesPathPlot.svg index 040017e1e..8426bde3c 100644 --- a/docs/images/guides/geoms/guideLinesBrokenLinesPathPlot.svg +++ b/docs/images/guides/geoms/guideLinesBrokenLinesPathPlot.svg @@ -10,117 +10,117 @@ text { text-rendering: optimizeLegibility; } -#xXxprefixXx0 .plot-title { +#_sample_helper_static_id_prefix_0 .plot-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-x { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-x { fill: #ffffff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-y { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-y { fill: #ffffff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-text { +#_sample_helper_static_id_prefix_2 .tooltip-text { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-title { +#_sample_helper_static_id_prefix_2 .tooltip-title { fill: #474747; font-weight: bold; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-label { +#_sample_helper_static_id_prefix_2 .tooltip-label { fill: #474747; font-weight: bold; font-style: normal;font-family: sans-serif; @@ -129,7 +129,7 @@ font-size: 13.0px; } - + @@ -171,7 +171,7 @@ font-size: 13.0px; - + @@ -183,7 +183,7 @@ font-size: 13.0px; - + @@ -323,6 +323,6 @@ font-size: 13.0px; - + \ No newline at end of file diff --git a/docs/images/guides/geoms/guideLinesBrokenLinesPathPlot_dark.svg b/docs/images/guides/geoms/guideLinesBrokenLinesPathPlot_dark.svg index fe3b71065..326b1c7ce 100644 --- a/docs/images/guides/geoms/guideLinesBrokenLinesPathPlot_dark.svg +++ b/docs/images/guides/geoms/guideLinesBrokenLinesPathPlot_dark.svg @@ -10,117 +10,117 @@ text { text-rendering: optimizeLegibility; } -#xXxprefixXx0 .plot-title { +#_sample_helper_static_id_prefix_0 .plot-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-x { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-x { fill: #303030; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-y { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-y { fill: #303030; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-text { +#_sample_helper_static_id_prefix_2 .tooltip-text { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-title { +#_sample_helper_static_id_prefix_2 .tooltip-title { fill: #bbbbbb; font-weight: bold; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-label { +#_sample_helper_static_id_prefix_2 .tooltip-label { fill: #bbbbbb; font-weight: bold; font-style: normal;font-family: sans-serif; @@ -129,7 +129,7 @@ font-size: 13.0px; } - + @@ -289,7 +289,7 @@ font-size: 13.0px; - + @@ -301,7 +301,7 @@ font-size: 13.0px; - + @@ -323,6 +323,6 @@ font-size: 13.0px; - + \ No newline at end of file diff --git a/docs/images/guides/geoms/guideLinesBrokenLinesStepPlot.svg b/docs/images/guides/geoms/guideLinesBrokenLinesStepPlot.svg index a86fa1045..67a6c5625 100644 --- a/docs/images/guides/geoms/guideLinesBrokenLinesStepPlot.svg +++ b/docs/images/guides/geoms/guideLinesBrokenLinesStepPlot.svg @@ -10,117 +10,117 @@ text { text-rendering: optimizeLegibility; } -#xXxprefixXx0 .plot-title { +#_sample_helper_static_id_prefix_0 .plot-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-x { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-x { fill: #ffffff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-y { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-y { fill: #ffffff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-text { +#_sample_helper_static_id_prefix_2 .tooltip-text { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-title { +#_sample_helper_static_id_prefix_2 .tooltip-title { fill: #474747; font-weight: bold; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-label { +#_sample_helper_static_id_prefix_2 .tooltip-label { fill: #474747; font-weight: bold; font-style: normal;font-family: sans-serif; @@ -129,7 +129,7 @@ font-size: 13.0px; } - + @@ -171,7 +171,7 @@ font-size: 13.0px; - + @@ -183,7 +183,7 @@ font-size: 13.0px; - + @@ -323,6 +323,6 @@ font-size: 13.0px; - + \ No newline at end of file diff --git a/docs/images/guides/geoms/guideLinesBrokenLinesStepPlot_dark.svg b/docs/images/guides/geoms/guideLinesBrokenLinesStepPlot_dark.svg index c604d6edd..595f057d1 100644 --- a/docs/images/guides/geoms/guideLinesBrokenLinesStepPlot_dark.svg +++ b/docs/images/guides/geoms/guideLinesBrokenLinesStepPlot_dark.svg @@ -10,117 +10,117 @@ text { text-rendering: optimizeLegibility; } -#xXxprefixXx0 .plot-title { +#_sample_helper_static_id_prefix_0 .plot-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-x { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-x { fill: #303030; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-y { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-y { fill: #303030; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-text { +#_sample_helper_static_id_prefix_2 .tooltip-text { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-title { +#_sample_helper_static_id_prefix_2 .tooltip-title { fill: #bbbbbb; font-weight: bold; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-label { +#_sample_helper_static_id_prefix_2 .tooltip-label { fill: #bbbbbb; font-weight: bold; font-style: normal;font-family: sans-serif; @@ -129,7 +129,7 @@ font-size: 13.0px; } - + @@ -289,7 +289,7 @@ font-size: 13.0px; - + @@ -301,7 +301,7 @@ font-size: 13.0px; - + @@ -323,6 +323,6 @@ font-size: 13.0px; - + \ No newline at end of file diff --git a/docs/images/guides/geoms/guideLinesCompareLinePathSegmentsPlotBunch.svg b/docs/images/guides/geoms/guideLinesCompareLinePathSegmentsPlotBunch.svg index 04abd19d2..35957cfd0 100644 --- a/docs/images/guides/geoms/guideLinesCompareLinePathSegmentsPlotBunch.svg +++ b/docs/images/guides/geoms/guideLinesCompareLinePathSegmentsPlotBunch.svg @@ -10,54 +10,54 @@ text { text-rendering: optimizeLegibility; } -#xXxprefixXx0 .plot-title { +#_sample_helper_static_id_prefix_0 .plot-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; @@ -71,14 +71,14 @@ font-weight: normal; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; @@ -92,14 +92,14 @@ font-weight: normal; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; @@ -129,7 +129,7 @@ font-size: 13.0px; } - + @@ -145,117 +145,117 @@ font-size: 13.0px; text { text-rendering: optimizeLegibility; } -#xXxprefixXx1 .plot-title { +#_sample_helper_static_id_prefix_1 .plot-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx1 .plot-subtitle { +#_sample_helper_static_id_prefix_1 .plot-subtitle { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx1 .plot-caption { +#_sample_helper_static_id_prefix_1 .plot-caption { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx1 .hyperlink-element { +#_sample_helper_static_id_prefix_1 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx1 .legend-title { +#_sample_helper_static_id_prefix_1 .legend-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx1 .legend-item { +#_sample_helper_static_id_prefix_1 .legend-item { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx1 .axis-title-x { +#_sample_helper_static_id_prefix_1 .axis-title-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx1 .axis-text-x { +#_sample_helper_static_id_prefix_1 .axis-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx3 .axis-tooltip-text-x { +#_sample_helper_static_id_prefix_3 .axis-tooltip-text-x { fill: #ffffff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx1 .axis-title-y { +#_sample_helper_static_id_prefix_1 .axis-title-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx1 .axis-text-y { +#_sample_helper_static_id_prefix_1 .axis-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx3 .axis-tooltip-text-y { +#_sample_helper_static_id_prefix_3 .axis-tooltip-text-y { fill: #ffffff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx1 .facet-strip-text-x { +#_sample_helper_static_id_prefix_1 .facet-strip-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx1 .facet-strip-text-y { +#_sample_helper_static_id_prefix_1 .facet-strip-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx3 .tooltip-text { +#_sample_helper_static_id_prefix_3 .tooltip-text { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx3 .tooltip-title { +#_sample_helper_static_id_prefix_3 .tooltip-title { fill: #474747; font-weight: bold; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx3 .tooltip-label { +#_sample_helper_static_id_prefix_3 .tooltip-label { fill: #474747; font-weight: bold; font-style: normal;font-family: sans-serif; @@ -264,7 +264,7 @@ font-size: 13.0px; } - + @@ -298,7 +298,7 @@ font-size: 13.0px; - + @@ -310,7 +310,7 @@ font-size: 13.0px; - + @@ -421,7 +421,7 @@ font-size: 13.0px; - + @@ -436,117 +436,117 @@ font-size: 13.0px; text { text-rendering: optimizeLegibility; } -#xXxprefixXx4 .plot-title { +#_sample_helper_static_id_prefix_4 .plot-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx4 .plot-subtitle { +#_sample_helper_static_id_prefix_4 .plot-subtitle { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx4 .plot-caption { +#_sample_helper_static_id_prefix_4 .plot-caption { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx4 .hyperlink-element { +#_sample_helper_static_id_prefix_4 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx4 .legend-title { +#_sample_helper_static_id_prefix_4 .legend-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx4 .legend-item { +#_sample_helper_static_id_prefix_4 .legend-item { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx4 .axis-title-x { +#_sample_helper_static_id_prefix_4 .axis-title-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx4 .axis-text-x { +#_sample_helper_static_id_prefix_4 .axis-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx6 .axis-tooltip-text-x { +#_sample_helper_static_id_prefix_6 .axis-tooltip-text-x { fill: #ffffff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx4 .axis-title-y { +#_sample_helper_static_id_prefix_4 .axis-title-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx4 .axis-text-y { +#_sample_helper_static_id_prefix_4 .axis-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx6 .axis-tooltip-text-y { +#_sample_helper_static_id_prefix_6 .axis-tooltip-text-y { fill: #ffffff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx4 .facet-strip-text-x { +#_sample_helper_static_id_prefix_4 .facet-strip-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx4 .facet-strip-text-y { +#_sample_helper_static_id_prefix_4 .facet-strip-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx6 .tooltip-text { +#_sample_helper_static_id_prefix_6 .tooltip-text { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx6 .tooltip-title { +#_sample_helper_static_id_prefix_6 .tooltip-title { fill: #474747; font-weight: bold; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx6 .tooltip-label { +#_sample_helper_static_id_prefix_6 .tooltip-label { fill: #474747; font-weight: bold; font-style: normal;font-family: sans-serif; @@ -555,7 +555,7 @@ font-size: 13.0px; } - + @@ -589,7 +589,7 @@ font-size: 13.0px; - + @@ -601,7 +601,7 @@ font-size: 13.0px; - + @@ -712,7 +712,7 @@ font-size: 13.0px; - + @@ -727,117 +727,117 @@ font-size: 13.0px; text { text-rendering: optimizeLegibility; } -#xXxprefixXx7 .plot-title { +#_sample_helper_static_id_prefix_7 .plot-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx7 .plot-subtitle { +#_sample_helper_static_id_prefix_7 .plot-subtitle { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx7 .plot-caption { +#_sample_helper_static_id_prefix_7 .plot-caption { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx7 .hyperlink-element { +#_sample_helper_static_id_prefix_7 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx7 .legend-title { +#_sample_helper_static_id_prefix_7 .legend-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx7 .legend-item { +#_sample_helper_static_id_prefix_7 .legend-item { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx7 .axis-title-x { +#_sample_helper_static_id_prefix_7 .axis-title-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx7 .axis-text-x { +#_sample_helper_static_id_prefix_7 .axis-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx9 .axis-tooltip-text-x { +#_sample_helper_static_id_prefix_9 .axis-tooltip-text-x { fill: #ffffff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx7 .axis-title-y { +#_sample_helper_static_id_prefix_7 .axis-title-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx7 .axis-text-y { +#_sample_helper_static_id_prefix_7 .axis-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx9 .axis-tooltip-text-y { +#_sample_helper_static_id_prefix_9 .axis-tooltip-text-y { fill: #ffffff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx7 .facet-strip-text-x { +#_sample_helper_static_id_prefix_7 .facet-strip-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx7 .facet-strip-text-y { +#_sample_helper_static_id_prefix_7 .facet-strip-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx9 .tooltip-text { +#_sample_helper_static_id_prefix_9 .tooltip-text { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx9 .tooltip-title { +#_sample_helper_static_id_prefix_9 .tooltip-title { fill: #474747; font-weight: bold; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx9 .tooltip-label { +#_sample_helper_static_id_prefix_9 .tooltip-label { fill: #474747; font-weight: bold; font-style: normal;font-family: sans-serif; @@ -846,7 +846,7 @@ font-size: 13.0px; } - + @@ -880,7 +880,7 @@ font-size: 13.0px; - + @@ -988,7 +988,7 @@ font-size: 13.0px; - + @@ -1094,7 +1094,7 @@ font-size: 13.0px; - + \ No newline at end of file diff --git a/docs/images/guides/geoms/guideLinesCompareLinePathSegmentsPlotBunch_dark.svg b/docs/images/guides/geoms/guideLinesCompareLinePathSegmentsPlotBunch_dark.svg index d58acb64d..5eea73614 100644 --- a/docs/images/guides/geoms/guideLinesCompareLinePathSegmentsPlotBunch_dark.svg +++ b/docs/images/guides/geoms/guideLinesCompareLinePathSegmentsPlotBunch_dark.svg @@ -10,54 +10,54 @@ text { text-rendering: optimizeLegibility; } -#xXxprefixXx0 .plot-title { +#_sample_helper_static_id_prefix_0 .plot-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; @@ -71,14 +71,14 @@ font-weight: normal; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; @@ -92,14 +92,14 @@ font-weight: normal; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; @@ -129,7 +129,7 @@ font-size: 13.0px; } - + @@ -145,117 +145,117 @@ font-size: 13.0px; text { text-rendering: optimizeLegibility; } -#xXxprefixXx1 .plot-title { +#_sample_helper_static_id_prefix_1 .plot-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx1 .plot-subtitle { +#_sample_helper_static_id_prefix_1 .plot-subtitle { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx1 .plot-caption { +#_sample_helper_static_id_prefix_1 .plot-caption { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx1 .hyperlink-element { +#_sample_helper_static_id_prefix_1 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx1 .legend-title { +#_sample_helper_static_id_prefix_1 .legend-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx1 .legend-item { +#_sample_helper_static_id_prefix_1 .legend-item { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx1 .axis-title-x { +#_sample_helper_static_id_prefix_1 .axis-title-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx1 .axis-text-x { +#_sample_helper_static_id_prefix_1 .axis-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx3 .axis-tooltip-text-x { +#_sample_helper_static_id_prefix_3 .axis-tooltip-text-x { fill: #303030; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx1 .axis-title-y { +#_sample_helper_static_id_prefix_1 .axis-title-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx1 .axis-text-y { +#_sample_helper_static_id_prefix_1 .axis-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx3 .axis-tooltip-text-y { +#_sample_helper_static_id_prefix_3 .axis-tooltip-text-y { fill: #303030; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx1 .facet-strip-text-x { +#_sample_helper_static_id_prefix_1 .facet-strip-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx1 .facet-strip-text-y { +#_sample_helper_static_id_prefix_1 .facet-strip-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx3 .tooltip-text { +#_sample_helper_static_id_prefix_3 .tooltip-text { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx3 .tooltip-title { +#_sample_helper_static_id_prefix_3 .tooltip-title { fill: #bbbbbb; font-weight: bold; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx3 .tooltip-label { +#_sample_helper_static_id_prefix_3 .tooltip-label { fill: #bbbbbb; font-weight: bold; font-style: normal;font-family: sans-serif; @@ -264,7 +264,7 @@ font-size: 13.0px; } - + @@ -382,7 +382,7 @@ font-size: 13.0px; - + @@ -394,7 +394,7 @@ font-size: 13.0px; - + @@ -421,7 +421,7 @@ font-size: 13.0px; - + @@ -436,117 +436,117 @@ font-size: 13.0px; text { text-rendering: optimizeLegibility; } -#xXxprefixXx4 .plot-title { +#_sample_helper_static_id_prefix_4 .plot-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx4 .plot-subtitle { +#_sample_helper_static_id_prefix_4 .plot-subtitle { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx4 .plot-caption { +#_sample_helper_static_id_prefix_4 .plot-caption { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx4 .hyperlink-element { +#_sample_helper_static_id_prefix_4 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx4 .legend-title { +#_sample_helper_static_id_prefix_4 .legend-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx4 .legend-item { +#_sample_helper_static_id_prefix_4 .legend-item { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx4 .axis-title-x { +#_sample_helper_static_id_prefix_4 .axis-title-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx4 .axis-text-x { +#_sample_helper_static_id_prefix_4 .axis-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx6 .axis-tooltip-text-x { +#_sample_helper_static_id_prefix_6 .axis-tooltip-text-x { fill: #303030; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx4 .axis-title-y { +#_sample_helper_static_id_prefix_4 .axis-title-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx4 .axis-text-y { +#_sample_helper_static_id_prefix_4 .axis-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx6 .axis-tooltip-text-y { +#_sample_helper_static_id_prefix_6 .axis-tooltip-text-y { fill: #303030; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx4 .facet-strip-text-x { +#_sample_helper_static_id_prefix_4 .facet-strip-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx4 .facet-strip-text-y { +#_sample_helper_static_id_prefix_4 .facet-strip-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx6 .tooltip-text { +#_sample_helper_static_id_prefix_6 .tooltip-text { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx6 .tooltip-title { +#_sample_helper_static_id_prefix_6 .tooltip-title { fill: #bbbbbb; font-weight: bold; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx6 .tooltip-label { +#_sample_helper_static_id_prefix_6 .tooltip-label { fill: #bbbbbb; font-weight: bold; font-style: normal;font-family: sans-serif; @@ -555,7 +555,7 @@ font-size: 13.0px; } - + @@ -673,7 +673,7 @@ font-size: 13.0px; - + @@ -685,7 +685,7 @@ font-size: 13.0px; - + @@ -712,7 +712,7 @@ font-size: 13.0px; - + @@ -727,117 +727,117 @@ font-size: 13.0px; text { text-rendering: optimizeLegibility; } -#xXxprefixXx7 .plot-title { +#_sample_helper_static_id_prefix_7 .plot-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx7 .plot-subtitle { +#_sample_helper_static_id_prefix_7 .plot-subtitle { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx7 .plot-caption { +#_sample_helper_static_id_prefix_7 .plot-caption { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx7 .hyperlink-element { +#_sample_helper_static_id_prefix_7 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx7 .legend-title { +#_sample_helper_static_id_prefix_7 .legend-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx7 .legend-item { +#_sample_helper_static_id_prefix_7 .legend-item { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx7 .axis-title-x { +#_sample_helper_static_id_prefix_7 .axis-title-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx7 .axis-text-x { +#_sample_helper_static_id_prefix_7 .axis-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx9 .axis-tooltip-text-x { +#_sample_helper_static_id_prefix_9 .axis-tooltip-text-x { fill: #303030; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx7 .axis-title-y { +#_sample_helper_static_id_prefix_7 .axis-title-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx7 .axis-text-y { +#_sample_helper_static_id_prefix_7 .axis-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx9 .axis-tooltip-text-y { +#_sample_helper_static_id_prefix_9 .axis-tooltip-text-y { fill: #303030; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx7 .facet-strip-text-x { +#_sample_helper_static_id_prefix_7 .facet-strip-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx7 .facet-strip-text-y { +#_sample_helper_static_id_prefix_7 .facet-strip-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx9 .tooltip-text { +#_sample_helper_static_id_prefix_9 .tooltip-text { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx9 .tooltip-title { +#_sample_helper_static_id_prefix_9 .tooltip-title { fill: #bbbbbb; font-weight: bold; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx9 .tooltip-label { +#_sample_helper_static_id_prefix_9 .tooltip-label { fill: #bbbbbb; font-weight: bold; font-style: normal;font-family: sans-serif; @@ -846,7 +846,7 @@ font-size: 13.0px; } - + @@ -964,7 +964,7 @@ font-size: 13.0px; - + @@ -1072,7 +1072,7 @@ font-size: 13.0px; - + @@ -1094,7 +1094,7 @@ font-size: 13.0px; - + \ No newline at end of file diff --git a/docs/images/guides/geoms/guideLinesSmoothLinear.svg b/docs/images/guides/geoms/guideLinesSmoothLinear.svg index b698d97ce..f487e03d4 100644 --- a/docs/images/guides/geoms/guideLinesSmoothLinear.svg +++ b/docs/images/guides/geoms/guideLinesSmoothLinear.svg @@ -10,117 +10,117 @@ text { text-rendering: optimizeLegibility; } -#xXxprefixXx0 .plot-title { +#_sample_helper_static_id_prefix_0 .plot-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx5 .axis-tooltip-text-x { +#_sample_helper_static_id_prefix_5 .axis-tooltip-text-x { fill: #ffffff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx5 .axis-tooltip-text-y { +#_sample_helper_static_id_prefix_5 .axis-tooltip-text-y { fill: #ffffff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx5 .tooltip-text { +#_sample_helper_static_id_prefix_5 .tooltip-text { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx5 .tooltip-title { +#_sample_helper_static_id_prefix_5 .tooltip-title { fill: #474747; font-weight: bold; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx5 .tooltip-label { +#_sample_helper_static_id_prefix_5 .tooltip-label { fill: #474747; font-weight: bold; font-style: normal;font-family: sans-serif; @@ -129,7 +129,7 @@ font-size: 13.0px; } - + @@ -169,7 +169,7 @@ font-size: 13.0px; - + @@ -429,25 +429,25 @@ font-size: 13.0px; - + - + - + - + @@ -578,6 +578,6 @@ font-size: 13.0px; - + \ No newline at end of file diff --git a/docs/images/guides/geoms/guideLinesSmoothLinear_dark.svg b/docs/images/guides/geoms/guideLinesSmoothLinear_dark.svg index fe29615bd..294e476f3 100644 --- a/docs/images/guides/geoms/guideLinesSmoothLinear_dark.svg +++ b/docs/images/guides/geoms/guideLinesSmoothLinear_dark.svg @@ -10,117 +10,117 @@ text { text-rendering: optimizeLegibility; } -#xXxprefixXx0 .plot-title { +#_sample_helper_static_id_prefix_0 .plot-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx5 .axis-tooltip-text-x { +#_sample_helper_static_id_prefix_5 .axis-tooltip-text-x { fill: #303030; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx5 .axis-tooltip-text-y { +#_sample_helper_static_id_prefix_5 .axis-tooltip-text-y { fill: #303030; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx5 .tooltip-text { +#_sample_helper_static_id_prefix_5 .tooltip-text { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx5 .tooltip-title { +#_sample_helper_static_id_prefix_5 .tooltip-title { fill: #bbbbbb; font-weight: bold; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx5 .tooltip-label { +#_sample_helper_static_id_prefix_5 .tooltip-label { fill: #bbbbbb; font-weight: bold; font-style: normal;font-family: sans-serif; @@ -129,7 +129,7 @@ font-size: 13.0px; } - + @@ -278,7 +278,7 @@ font-size: 13.0px; - + @@ -538,25 +538,25 @@ font-size: 13.0px; - + - + - + - + @@ -578,6 +578,6 @@ font-size: 13.0px; - + \ No newline at end of file diff --git a/docs/images/guides/geoms/guidePieBasicPieChart.svg b/docs/images/guides/geoms/guidePieBasicPieChart.svg index 7a42d575b..36a83f257 100644 --- a/docs/images/guides/geoms/guidePieBasicPieChart.svg +++ b/docs/images/guides/geoms/guidePieBasicPieChart.svg @@ -10,117 +10,117 @@ text { text-rendering: optimizeLegibility; } -#xXxprefixXx0 .plot-title { +#_sample_helper_static_id_prefix_0 .plot-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-x { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-x { fill: #ffffff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-y { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-y { fill: #ffffff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-text { +#_sample_helper_static_id_prefix_2 .tooltip-text { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-title { +#_sample_helper_static_id_prefix_2 .tooltip-title { fill: #474747; font-weight: bold; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-label { +#_sample_helper_static_id_prefix_2 .tooltip-label { fill: #474747; font-weight: bold; font-style: normal;font-family: sans-serif; @@ -129,7 +129,7 @@ font-size: 13.0px; } - + @@ -187,7 +187,7 @@ font-size: 13.0px; - + @@ -255,7 +255,7 @@ font-size: 13.0px; - + @@ -532,6 +532,6 @@ font-size: 13.0px; - + \ No newline at end of file diff --git a/docs/images/guides/geoms/guidePieBasicPieChart_dark.svg b/docs/images/guides/geoms/guidePieBasicPieChart_dark.svg index e2109d87e..25cf45a95 100644 --- a/docs/images/guides/geoms/guidePieBasicPieChart_dark.svg +++ b/docs/images/guides/geoms/guidePieBasicPieChart_dark.svg @@ -10,117 +10,117 @@ text { text-rendering: optimizeLegibility; } -#xXxprefixXx0 .plot-title { +#_sample_helper_static_id_prefix_0 .plot-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-x { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-x { fill: #303030; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-y { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-y { fill: #303030; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-text { +#_sample_helper_static_id_prefix_2 .tooltip-text { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-title { +#_sample_helper_static_id_prefix_2 .tooltip-title { fill: #bbbbbb; font-weight: bold; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-label { +#_sample_helper_static_id_prefix_2 .tooltip-label { fill: #bbbbbb; font-weight: bold; font-style: normal;font-family: sans-serif; @@ -129,7 +129,7 @@ font-size: 13.0px; } - + @@ -369,7 +369,7 @@ font-size: 13.0px; - + @@ -437,7 +437,7 @@ font-size: 13.0px; - + @@ -532,6 +532,6 @@ font-size: 13.0px; - + \ No newline at end of file diff --git a/docs/images/guides/geoms/guidePieChartsInPlotGrid.svg b/docs/images/guides/geoms/guidePieChartsInPlotGrid.svg index cefb919db..a9be63e58 100644 --- a/docs/images/guides/geoms/guidePieChartsInPlotGrid.svg +++ b/docs/images/guides/geoms/guidePieChartsInPlotGrid.svg @@ -10,54 +10,54 @@ text { text-rendering: optimizeLegibility; } -#xXxprefixXx0 .plot-title { +#_sample_helper_static_id_prefix_0 .plot-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; @@ -71,14 +71,14 @@ font-weight: normal; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; @@ -92,14 +92,14 @@ font-weight: normal; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; @@ -129,7 +129,7 @@ font-size: 13.0px; } - + @@ -145,117 +145,117 @@ font-size: 13.0px; text { text-rendering: optimizeLegibility; } -#xXxprefixXx1 .plot-title { +#_sample_helper_static_id_prefix_1 .plot-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx1 .plot-subtitle { +#_sample_helper_static_id_prefix_1 .plot-subtitle { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx1 .plot-caption { +#_sample_helper_static_id_prefix_1 .plot-caption { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx1 .hyperlink-element { +#_sample_helper_static_id_prefix_1 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx1 .legend-title { +#_sample_helper_static_id_prefix_1 .legend-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx1 .legend-item { +#_sample_helper_static_id_prefix_1 .legend-item { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx1 .axis-title-x { +#_sample_helper_static_id_prefix_1 .axis-title-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx1 .axis-text-x { +#_sample_helper_static_id_prefix_1 .axis-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx3 .axis-tooltip-text-x { +#_sample_helper_static_id_prefix_3 .axis-tooltip-text-x { fill: #ffffff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx1 .axis-title-y { +#_sample_helper_static_id_prefix_1 .axis-title-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx1 .axis-text-y { +#_sample_helper_static_id_prefix_1 .axis-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx3 .axis-tooltip-text-y { +#_sample_helper_static_id_prefix_3 .axis-tooltip-text-y { fill: #ffffff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx1 .facet-strip-text-x { +#_sample_helper_static_id_prefix_1 .facet-strip-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx1 .facet-strip-text-y { +#_sample_helper_static_id_prefix_1 .facet-strip-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx3 .tooltip-text { +#_sample_helper_static_id_prefix_3 .tooltip-text { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx3 .tooltip-title { +#_sample_helper_static_id_prefix_3 .tooltip-title { fill: #474747; font-weight: bold; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx3 .tooltip-label { +#_sample_helper_static_id_prefix_3 .tooltip-label { fill: #474747; font-weight: bold; font-style: normal;font-family: sans-serif; @@ -264,7 +264,7 @@ font-size: 13.0px; } - + @@ -282,7 +282,7 @@ font-size: 13.0px; - + @@ -338,7 +338,7 @@ font-size: 13.0px; - + @@ -423,7 +423,7 @@ font-size: 13.0px; - + @@ -438,117 +438,117 @@ font-size: 13.0px; text { text-rendering: optimizeLegibility; } -#xXxprefixXx4 .plot-title { +#_sample_helper_static_id_prefix_4 .plot-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx4 .plot-subtitle { +#_sample_helper_static_id_prefix_4 .plot-subtitle { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx4 .plot-caption { +#_sample_helper_static_id_prefix_4 .plot-caption { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx4 .hyperlink-element { +#_sample_helper_static_id_prefix_4 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx4 .legend-title { +#_sample_helper_static_id_prefix_4 .legend-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx4 .legend-item { +#_sample_helper_static_id_prefix_4 .legend-item { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx4 .axis-title-x { +#_sample_helper_static_id_prefix_4 .axis-title-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx4 .axis-text-x { +#_sample_helper_static_id_prefix_4 .axis-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx6 .axis-tooltip-text-x { +#_sample_helper_static_id_prefix_6 .axis-tooltip-text-x { fill: #ffffff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx4 .axis-title-y { +#_sample_helper_static_id_prefix_4 .axis-title-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx4 .axis-text-y { +#_sample_helper_static_id_prefix_4 .axis-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx6 .axis-tooltip-text-y { +#_sample_helper_static_id_prefix_6 .axis-tooltip-text-y { fill: #ffffff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx4 .facet-strip-text-x { +#_sample_helper_static_id_prefix_4 .facet-strip-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx4 .facet-strip-text-y { +#_sample_helper_static_id_prefix_4 .facet-strip-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx6 .tooltip-text { +#_sample_helper_static_id_prefix_6 .tooltip-text { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx6 .tooltip-title { +#_sample_helper_static_id_prefix_6 .tooltip-title { fill: #474747; font-weight: bold; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx6 .tooltip-label { +#_sample_helper_static_id_prefix_6 .tooltip-label { fill: #474747; font-weight: bold; font-style: normal;font-family: sans-serif; @@ -557,7 +557,7 @@ font-size: 13.0px; } - + @@ -575,7 +575,7 @@ font-size: 13.0px; - + @@ -631,7 +631,7 @@ font-size: 13.0px; - + @@ -716,7 +716,7 @@ font-size: 13.0px; - + \ No newline at end of file diff --git a/docs/images/guides/geoms/guidePieChartsInPlotGrid_dark.svg b/docs/images/guides/geoms/guidePieChartsInPlotGrid_dark.svg index 76f3758d3..7418b99a1 100644 --- a/docs/images/guides/geoms/guidePieChartsInPlotGrid_dark.svg +++ b/docs/images/guides/geoms/guidePieChartsInPlotGrid_dark.svg @@ -10,54 +10,54 @@ text { text-rendering: optimizeLegibility; } -#xXxprefixXx0 .plot-title { +#_sample_helper_static_id_prefix_0 .plot-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; @@ -71,14 +71,14 @@ font-weight: normal; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; @@ -92,14 +92,14 @@ font-weight: normal; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; @@ -129,7 +129,7 @@ font-size: 13.0px; } - + @@ -145,117 +145,117 @@ font-size: 13.0px; text { text-rendering: optimizeLegibility; } -#xXxprefixXx1 .plot-title { +#_sample_helper_static_id_prefix_1 .plot-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx1 .plot-subtitle { +#_sample_helper_static_id_prefix_1 .plot-subtitle { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx1 .plot-caption { +#_sample_helper_static_id_prefix_1 .plot-caption { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx1 .hyperlink-element { +#_sample_helper_static_id_prefix_1 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx1 .legend-title { +#_sample_helper_static_id_prefix_1 .legend-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx1 .legend-item { +#_sample_helper_static_id_prefix_1 .legend-item { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx1 .axis-title-x { +#_sample_helper_static_id_prefix_1 .axis-title-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx1 .axis-text-x { +#_sample_helper_static_id_prefix_1 .axis-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx3 .axis-tooltip-text-x { +#_sample_helper_static_id_prefix_3 .axis-tooltip-text-x { fill: #303030; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx1 .axis-title-y { +#_sample_helper_static_id_prefix_1 .axis-title-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx1 .axis-text-y { +#_sample_helper_static_id_prefix_1 .axis-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx3 .axis-tooltip-text-y { +#_sample_helper_static_id_prefix_3 .axis-tooltip-text-y { fill: #303030; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx1 .facet-strip-text-x { +#_sample_helper_static_id_prefix_1 .facet-strip-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx1 .facet-strip-text-y { +#_sample_helper_static_id_prefix_1 .facet-strip-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx3 .tooltip-text { +#_sample_helper_static_id_prefix_3 .tooltip-text { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx3 .tooltip-title { +#_sample_helper_static_id_prefix_3 .tooltip-title { fill: #bbbbbb; font-weight: bold; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx3 .tooltip-label { +#_sample_helper_static_id_prefix_3 .tooltip-label { fill: #bbbbbb; font-weight: bold; font-style: normal;font-family: sans-serif; @@ -264,7 +264,7 @@ font-size: 13.0px; } - + @@ -282,7 +282,7 @@ font-size: 13.0px; - + @@ -338,7 +338,7 @@ font-size: 13.0px; - + @@ -423,7 +423,7 @@ font-size: 13.0px; - + @@ -438,117 +438,117 @@ font-size: 13.0px; text { text-rendering: optimizeLegibility; } -#xXxprefixXx4 .plot-title { +#_sample_helper_static_id_prefix_4 .plot-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx4 .plot-subtitle { +#_sample_helper_static_id_prefix_4 .plot-subtitle { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx4 .plot-caption { +#_sample_helper_static_id_prefix_4 .plot-caption { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx4 .hyperlink-element { +#_sample_helper_static_id_prefix_4 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx4 .legend-title { +#_sample_helper_static_id_prefix_4 .legend-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx4 .legend-item { +#_sample_helper_static_id_prefix_4 .legend-item { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx4 .axis-title-x { +#_sample_helper_static_id_prefix_4 .axis-title-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx4 .axis-text-x { +#_sample_helper_static_id_prefix_4 .axis-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx6 .axis-tooltip-text-x { +#_sample_helper_static_id_prefix_6 .axis-tooltip-text-x { fill: #303030; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx4 .axis-title-y { +#_sample_helper_static_id_prefix_4 .axis-title-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx4 .axis-text-y { +#_sample_helper_static_id_prefix_4 .axis-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx6 .axis-tooltip-text-y { +#_sample_helper_static_id_prefix_6 .axis-tooltip-text-y { fill: #303030; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx4 .facet-strip-text-x { +#_sample_helper_static_id_prefix_4 .facet-strip-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx4 .facet-strip-text-y { +#_sample_helper_static_id_prefix_4 .facet-strip-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx6 .tooltip-text { +#_sample_helper_static_id_prefix_6 .tooltip-text { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx6 .tooltip-title { +#_sample_helper_static_id_prefix_6 .tooltip-title { fill: #bbbbbb; font-weight: bold; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx6 .tooltip-label { +#_sample_helper_static_id_prefix_6 .tooltip-label { fill: #bbbbbb; font-weight: bold; font-style: normal;font-family: sans-serif; @@ -557,7 +557,7 @@ font-size: 13.0px; } - + @@ -575,7 +575,7 @@ font-size: 13.0px; - + @@ -631,7 +631,7 @@ font-size: 13.0px; - + @@ -716,7 +716,7 @@ font-size: 13.0px; - + \ No newline at end of file diff --git a/docs/images/guides/geoms/guidePieCustomizedPieChart.svg b/docs/images/guides/geoms/guidePieCustomizedPieChart.svg index 9af44095c..6ae01c444 100644 --- a/docs/images/guides/geoms/guidePieCustomizedPieChart.svg +++ b/docs/images/guides/geoms/guidePieCustomizedPieChart.svg @@ -10,117 +10,117 @@ text { text-rendering: optimizeLegibility; } -#xXxprefixXx0 .plot-title { +#_sample_helper_static_id_prefix_0 .plot-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-x { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-x { fill: #ffffff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-y { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-y { fill: #ffffff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-text { +#_sample_helper_static_id_prefix_2 .tooltip-text { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-title { +#_sample_helper_static_id_prefix_2 .tooltip-title { fill: #474747; font-weight: bold; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-label { +#_sample_helper_static_id_prefix_2 .tooltip-label { fill: #474747; font-weight: bold; font-style: normal;font-family: sans-serif; @@ -129,7 +129,7 @@ font-size: 13.0px; } - + @@ -147,7 +147,7 @@ font-size: 13.0px; - + @@ -215,7 +215,7 @@ font-size: 13.0px; - + @@ -300,6 +300,6 @@ font-size: 13.0px; - + \ No newline at end of file diff --git a/docs/images/guides/geoms/guidePieCustomizedPieChart_dark.svg b/docs/images/guides/geoms/guidePieCustomizedPieChart_dark.svg index 1becbbbfb..0433bff43 100644 --- a/docs/images/guides/geoms/guidePieCustomizedPieChart_dark.svg +++ b/docs/images/guides/geoms/guidePieCustomizedPieChart_dark.svg @@ -10,117 +10,117 @@ text { text-rendering: optimizeLegibility; } -#xXxprefixXx0 .plot-title { +#_sample_helper_static_id_prefix_0 .plot-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-x { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-x { fill: #303030; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-y { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-y { fill: #303030; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-text { +#_sample_helper_static_id_prefix_2 .tooltip-text { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-title { +#_sample_helper_static_id_prefix_2 .tooltip-title { fill: #bbbbbb; font-weight: bold; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-label { +#_sample_helper_static_id_prefix_2 .tooltip-label { fill: #bbbbbb; font-weight: bold; font-style: normal;font-family: sans-serif; @@ -129,7 +129,7 @@ font-size: 13.0px; } - + @@ -147,7 +147,7 @@ font-size: 13.0px; - + @@ -215,7 +215,7 @@ font-size: 13.0px; - + @@ -300,6 +300,6 @@ font-size: 13.0px; - + \ No newline at end of file diff --git a/docs/images/guides/geoms/guidePieExplodePieChart.svg b/docs/images/guides/geoms/guidePieExplodePieChart.svg index 95e30dc0b..8771cc4ba 100644 --- a/docs/images/guides/geoms/guidePieExplodePieChart.svg +++ b/docs/images/guides/geoms/guidePieExplodePieChart.svg @@ -10,117 +10,117 @@ text { text-rendering: optimizeLegibility; } -#xXxprefixXx0 .plot-title { +#_sample_helper_static_id_prefix_0 .plot-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-x { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-x { fill: #ffffff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-y { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-y { fill: #ffffff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-text { +#_sample_helper_static_id_prefix_2 .tooltip-text { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-title { +#_sample_helper_static_id_prefix_2 .tooltip-title { fill: #474747; font-weight: bold; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-label { +#_sample_helper_static_id_prefix_2 .tooltip-label { fill: #474747; font-weight: bold; font-style: normal;font-family: sans-serif; @@ -129,7 +129,7 @@ font-size: 13.0px; } - + @@ -147,7 +147,7 @@ font-size: 13.0px; - + @@ -263,7 +263,7 @@ font-size: 13.0px; - + @@ -423,6 +423,6 @@ font-size: 13.0px; - + \ No newline at end of file diff --git a/docs/images/guides/geoms/guidePieExplodePieChart_dark.svg b/docs/images/guides/geoms/guidePieExplodePieChart_dark.svg index 1dafd9719..caab5dc3d 100644 --- a/docs/images/guides/geoms/guidePieExplodePieChart_dark.svg +++ b/docs/images/guides/geoms/guidePieExplodePieChart_dark.svg @@ -10,117 +10,117 @@ text { text-rendering: optimizeLegibility; } -#xXxprefixXx0 .plot-title { +#_sample_helper_static_id_prefix_0 .plot-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-x { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-x { fill: #303030; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-y { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-y { fill: #303030; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-text { +#_sample_helper_static_id_prefix_2 .tooltip-text { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-title { +#_sample_helper_static_id_prefix_2 .tooltip-title { fill: #bbbbbb; font-weight: bold; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-label { +#_sample_helper_static_id_prefix_2 .tooltip-label { fill: #bbbbbb; font-weight: bold; font-style: normal;font-family: sans-serif; @@ -129,7 +129,7 @@ font-size: 13.0px; } - + @@ -147,7 +147,7 @@ font-size: 13.0px; - + @@ -263,7 +263,7 @@ font-size: 13.0px; - + @@ -423,6 +423,6 @@ font-size: 13.0px; - + \ No newline at end of file diff --git a/docs/images/guides/geoms/guideRibbonPlot.svg b/docs/images/guides/geoms/guideRibbonPlot.svg index 6ee4a4f22..c8840ef75 100644 --- a/docs/images/guides/geoms/guideRibbonPlot.svg +++ b/docs/images/guides/geoms/guideRibbonPlot.svg @@ -10,117 +10,117 @@ text { text-rendering: optimizeLegibility; } -#xXxprefixXx0 .plot-title { +#_sample_helper_static_id_prefix_0 .plot-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-x { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-x { fill: #ffffff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-y { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-y { fill: #ffffff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-text { +#_sample_helper_static_id_prefix_2 .tooltip-text { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-title { +#_sample_helper_static_id_prefix_2 .tooltip-title { fill: #474747; font-weight: bold; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-label { +#_sample_helper_static_id_prefix_2 .tooltip-label { fill: #474747; font-weight: bold; font-style: normal;font-family: sans-serif; @@ -129,7 +129,7 @@ font-size: 13.0px; } - + @@ -173,7 +173,7 @@ font-size: 13.0px; - + @@ -193,7 +193,7 @@ font-size: 13.0px; - + @@ -340,6 +340,6 @@ font-size: 13.0px; - + \ No newline at end of file diff --git a/docs/images/guides/geoms/guideRibbonPlot_dark.svg b/docs/images/guides/geoms/guideRibbonPlot_dark.svg index 081364a9c..ba02d7d4a 100644 --- a/docs/images/guides/geoms/guideRibbonPlot_dark.svg +++ b/docs/images/guides/geoms/guideRibbonPlot_dark.svg @@ -10,117 +10,117 @@ text { text-rendering: optimizeLegibility; } -#xXxprefixXx0 .plot-title { +#_sample_helper_static_id_prefix_0 .plot-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-x { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-x { fill: #303030; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-y { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-y { fill: #303030; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-text { +#_sample_helper_static_id_prefix_2 .tooltip-text { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-title { +#_sample_helper_static_id_prefix_2 .tooltip-title { fill: #bbbbbb; font-weight: bold; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-label { +#_sample_helper_static_id_prefix_2 .tooltip-label { fill: #bbbbbb; font-weight: bold; font-style: normal;font-family: sans-serif; @@ -129,7 +129,7 @@ font-size: 13.0px; } - + @@ -298,7 +298,7 @@ font-size: 13.0px; - + @@ -318,7 +318,7 @@ font-size: 13.0px; - + @@ -340,6 +340,6 @@ font-size: 13.0px; - + \ No newline at end of file diff --git a/docs/images/guides/geoms/guideScatterBasicScatterPlot.svg b/docs/images/guides/geoms/guideScatterBasicScatterPlot.svg index bc0a0a52c..7e49961af 100644 --- a/docs/images/guides/geoms/guideScatterBasicScatterPlot.svg +++ b/docs/images/guides/geoms/guideScatterBasicScatterPlot.svg @@ -10,117 +10,117 @@ text { text-rendering: optimizeLegibility; } -#xXxprefixXx0 .plot-title { +#_sample_helper_static_id_prefix_0 .plot-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-x { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-x { fill: #ffffff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-y { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-y { fill: #ffffff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-text { +#_sample_helper_static_id_prefix_2 .tooltip-text { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-title { +#_sample_helper_static_id_prefix_2 .tooltip-title { fill: #474747; font-weight: bold; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-label { +#_sample_helper_static_id_prefix_2 .tooltip-label { fill: #474747; font-weight: bold; font-style: normal;font-family: sans-serif; @@ -129,7 +129,7 @@ font-size: 13.0px; } - + @@ -187,7 +187,7 @@ font-size: 13.0px; - + @@ -219,7 +219,7 @@ font-size: 13.0px; - + @@ -421,6 +421,6 @@ font-size: 13.0px; - + \ No newline at end of file diff --git a/docs/images/guides/geoms/guideScatterBasicScatterPlot_dark.svg b/docs/images/guides/geoms/guideScatterBasicScatterPlot_dark.svg index ad021c17f..151e5d046 100644 --- a/docs/images/guides/geoms/guideScatterBasicScatterPlot_dark.svg +++ b/docs/images/guides/geoms/guideScatterBasicScatterPlot_dark.svg @@ -10,117 +10,117 @@ text { text-rendering: optimizeLegibility; } -#xXxprefixXx0 .plot-title { +#_sample_helper_static_id_prefix_0 .plot-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-x { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-x { fill: #303030; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-y { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-y { fill: #303030; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-text { +#_sample_helper_static_id_prefix_2 .tooltip-text { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-title { +#_sample_helper_static_id_prefix_2 .tooltip-title { fill: #bbbbbb; font-weight: bold; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-label { +#_sample_helper_static_id_prefix_2 .tooltip-label { fill: #bbbbbb; font-weight: bold; font-style: normal;font-family: sans-serif; @@ -129,7 +129,7 @@ font-size: 13.0px; } - + @@ -367,7 +367,7 @@ font-size: 13.0px; - + @@ -399,7 +399,7 @@ font-size: 13.0px; - + @@ -421,6 +421,6 @@ font-size: 13.0px; - + \ No newline at end of file diff --git a/docs/images/guides/geoms/guideScatterHandlingOverPlotting.svg b/docs/images/guides/geoms/guideScatterHandlingOverPlotting.svg index 95865dd88..b172df2e5 100644 --- a/docs/images/guides/geoms/guideScatterHandlingOverPlotting.svg +++ b/docs/images/guides/geoms/guideScatterHandlingOverPlotting.svg @@ -10,117 +10,117 @@ text { text-rendering: optimizeLegibility; } -#xXxprefixXx0 .plot-title { +#_sample_helper_static_id_prefix_0 .plot-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-x { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-x { fill: #ffffff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-y { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-y { fill: #ffffff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-text { +#_sample_helper_static_id_prefix_2 .tooltip-text { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-title { +#_sample_helper_static_id_prefix_2 .tooltip-title { fill: #474747; font-weight: bold; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-label { +#_sample_helper_static_id_prefix_2 .tooltip-label { fill: #474747; font-weight: bold; font-style: normal;font-family: sans-serif; @@ -129,7 +129,7 @@ font-size: 13.0px; } - + @@ -167,7 +167,7 @@ font-size: 13.0px; - + @@ -199,7 +199,7 @@ font-size: 13.0px; - + @@ -319,6 +319,6 @@ font-size: 13.0px; - + \ No newline at end of file diff --git a/docs/images/guides/geoms/guideScatterHandlingOverPlotting_dark.svg b/docs/images/guides/geoms/guideScatterHandlingOverPlotting_dark.svg index 176d7db49..8abaa0d65 100644 --- a/docs/images/guides/geoms/guideScatterHandlingOverPlotting_dark.svg +++ b/docs/images/guides/geoms/guideScatterHandlingOverPlotting_dark.svg @@ -10,117 +10,117 @@ text { text-rendering: optimizeLegibility; } -#xXxprefixXx0 .plot-title { +#_sample_helper_static_id_prefix_0 .plot-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-x { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-x { fill: #303030; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-y { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-y { fill: #303030; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-text { +#_sample_helper_static_id_prefix_2 .tooltip-text { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-title { +#_sample_helper_static_id_prefix_2 .tooltip-title { fill: #bbbbbb; font-weight: bold; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-label { +#_sample_helper_static_id_prefix_2 .tooltip-label { fill: #bbbbbb; font-weight: bold; font-style: normal;font-family: sans-serif; @@ -129,7 +129,7 @@ font-size: 13.0px; } - + @@ -265,7 +265,7 @@ font-size: 13.0px; - + @@ -297,7 +297,7 @@ font-size: 13.0px; - + @@ -319,6 +319,6 @@ font-size: 13.0px; - + \ No newline at end of file diff --git a/docs/images/guides/geoms/guideScatterScatterPlotWithDiffSymbol.svg b/docs/images/guides/geoms/guideScatterScatterPlotWithDiffSymbol.svg index 4dd64e4e4..8a0ff6a6a 100644 --- a/docs/images/guides/geoms/guideScatterScatterPlotWithDiffSymbol.svg +++ b/docs/images/guides/geoms/guideScatterScatterPlotWithDiffSymbol.svg @@ -10,117 +10,117 @@ text { text-rendering: optimizeLegibility; } -#xXxprefixXx0 .plot-title { +#_sample_helper_static_id_prefix_0 .plot-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-x { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-x { fill: #ffffff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-y { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-y { fill: #ffffff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-text { +#_sample_helper_static_id_prefix_2 .tooltip-text { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-title { +#_sample_helper_static_id_prefix_2 .tooltip-title { fill: #474747; font-weight: bold; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-label { +#_sample_helper_static_id_prefix_2 .tooltip-label { fill: #474747; font-weight: bold; font-style: normal;font-family: sans-serif; @@ -129,7 +129,7 @@ font-size: 13.0px; } - + @@ -173,7 +173,7 @@ font-size: 13.0px; - + @@ -205,7 +205,7 @@ font-size: 13.0px; - + @@ -403,6 +403,6 @@ font-size: 13.0px; - + \ No newline at end of file diff --git a/docs/images/guides/geoms/guideScatterScatterPlotWithDiffSymbol_dark.svg b/docs/images/guides/geoms/guideScatterScatterPlotWithDiffSymbol_dark.svg index 51ecdd5dd..6cf02d70d 100644 --- a/docs/images/guides/geoms/guideScatterScatterPlotWithDiffSymbol_dark.svg +++ b/docs/images/guides/geoms/guideScatterScatterPlotWithDiffSymbol_dark.svg @@ -10,117 +10,117 @@ text { text-rendering: optimizeLegibility; } -#xXxprefixXx0 .plot-title { +#_sample_helper_static_id_prefix_0 .plot-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-x { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-x { fill: #303030; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-y { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-y { fill: #303030; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-text { +#_sample_helper_static_id_prefix_2 .tooltip-text { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-title { +#_sample_helper_static_id_prefix_2 .tooltip-title { fill: #bbbbbb; font-weight: bold; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-label { +#_sample_helper_static_id_prefix_2 .tooltip-label { fill: #bbbbbb; font-weight: bold; font-style: normal;font-family: sans-serif; @@ -129,7 +129,7 @@ font-size: 13.0px; } - + @@ -304,7 +304,7 @@ font-size: 13.0px; - + @@ -336,7 +336,7 @@ font-size: 13.0px; - + @@ -403,6 +403,6 @@ font-size: 13.0px; - + \ No newline at end of file diff --git a/docs/images/guides/geoms/guideScatterScatterPlotWithOpenSymbol.svg b/docs/images/guides/geoms/guideScatterScatterPlotWithOpenSymbol.svg index 320747f26..de7861850 100644 --- a/docs/images/guides/geoms/guideScatterScatterPlotWithOpenSymbol.svg +++ b/docs/images/guides/geoms/guideScatterScatterPlotWithOpenSymbol.svg @@ -10,117 +10,117 @@ text { text-rendering: optimizeLegibility; } -#xXxprefixXx0 .plot-title { +#_sample_helper_static_id_prefix_0 .plot-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-x { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-x { fill: #ffffff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-y { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-y { fill: #ffffff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-text { +#_sample_helper_static_id_prefix_2 .tooltip-text { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-title { +#_sample_helper_static_id_prefix_2 .tooltip-title { fill: #474747; font-weight: bold; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-label { +#_sample_helper_static_id_prefix_2 .tooltip-label { fill: #474747; font-weight: bold; font-style: normal;font-family: sans-serif; @@ -129,7 +129,7 @@ font-size: 13.0px; } - + @@ -173,7 +173,7 @@ font-size: 13.0px; - + @@ -205,7 +205,7 @@ font-size: 13.0px; - + @@ -403,6 +403,6 @@ font-size: 13.0px; - + \ No newline at end of file diff --git a/docs/images/guides/geoms/guideScatterScatterPlotWithOpenSymbol_dark.svg b/docs/images/guides/geoms/guideScatterScatterPlotWithOpenSymbol_dark.svg index 236dd177f..d9fe88c84 100644 --- a/docs/images/guides/geoms/guideScatterScatterPlotWithOpenSymbol_dark.svg +++ b/docs/images/guides/geoms/guideScatterScatterPlotWithOpenSymbol_dark.svg @@ -10,117 +10,117 @@ text { text-rendering: optimizeLegibility; } -#xXxprefixXx0 .plot-title { +#_sample_helper_static_id_prefix_0 .plot-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-x { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-x { fill: #303030; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-y { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-y { fill: #303030; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-text { +#_sample_helper_static_id_prefix_2 .tooltip-text { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-title { +#_sample_helper_static_id_prefix_2 .tooltip-title { fill: #bbbbbb; font-weight: bold; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-label { +#_sample_helper_static_id_prefix_2 .tooltip-label { fill: #bbbbbb; font-weight: bold; font-style: normal;font-family: sans-serif; @@ -129,7 +129,7 @@ font-size: 13.0px; } - + @@ -304,7 +304,7 @@ font-size: 13.0px; - + @@ -336,7 +336,7 @@ font-size: 13.0px; - + @@ -403,6 +403,6 @@ font-size: 13.0px; - + \ No newline at end of file diff --git a/docs/images/guides/layout/guideLabelConfigureTooltips.svg b/docs/images/guides/layout/guideLabelConfigureTooltips.svg index dd43cf133..29a411be9 100644 --- a/docs/images/guides/layout/guideLabelConfigureTooltips.svg +++ b/docs/images/guides/layout/guideLabelConfigureTooltips.svg @@ -10,117 +10,117 @@ text { text-rendering: optimizeLegibility; } -#xXxprefixXx0 .plot-title { +#_sample_helper_static_id_prefix_0 .plot-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-x { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-x { fill: #ffffff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-y { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-y { fill: #ffffff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-text { +#_sample_helper_static_id_prefix_2 .tooltip-text { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-title { +#_sample_helper_static_id_prefix_2 .tooltip-title { fill: #474747; font-weight: bold; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-label { +#_sample_helper_static_id_prefix_2 .tooltip-label { fill: #474747; font-weight: bold; font-style: normal;font-family: sans-serif; @@ -129,7 +129,7 @@ font-size: 13.0px; } - + @@ -167,7 +167,7 @@ font-size: 13.0px; - + @@ -179,7 +179,7 @@ font-size: 13.0px; - + @@ -305,6 +305,6 @@ font-size: 13.0px; - + \ No newline at end of file diff --git a/docs/images/guides/layout/guideLabelConfigureTooltips_dark.svg b/docs/images/guides/layout/guideLabelConfigureTooltips_dark.svg index 3026cdf30..ce558467e 100644 --- a/docs/images/guides/layout/guideLabelConfigureTooltips_dark.svg +++ b/docs/images/guides/layout/guideLabelConfigureTooltips_dark.svg @@ -10,117 +10,117 @@ text { text-rendering: optimizeLegibility; } -#xXxprefixXx0 .plot-title { +#_sample_helper_static_id_prefix_0 .plot-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-x { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-x { fill: #303030; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-y { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-y { fill: #303030; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-text { +#_sample_helper_static_id_prefix_2 .tooltip-text { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-title { +#_sample_helper_static_id_prefix_2 .tooltip-title { fill: #bbbbbb; font-weight: bold; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-label { +#_sample_helper_static_id_prefix_2 .tooltip-label { fill: #bbbbbb; font-weight: bold; font-style: normal;font-family: sans-serif; @@ -129,7 +129,7 @@ font-size: 13.0px; } - + @@ -271,7 +271,7 @@ font-size: 13.0px; - + @@ -283,7 +283,7 @@ font-size: 13.0px; - + @@ -305,6 +305,6 @@ font-size: 13.0px; - + \ No newline at end of file diff --git a/docs/images/guides/layout/guideLabelDefaultPlot.svg b/docs/images/guides/layout/guideLabelDefaultPlot.svg index e31263119..efcb359e1 100644 --- a/docs/images/guides/layout/guideLabelDefaultPlot.svg +++ b/docs/images/guides/layout/guideLabelDefaultPlot.svg @@ -10,117 +10,117 @@ text { text-rendering: optimizeLegibility; } -#xXxprefixXx0 .plot-title { +#_sample_helper_static_id_prefix_0 .plot-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-x { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-x { fill: #ffffff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-y { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-y { fill: #ffffff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-text { +#_sample_helper_static_id_prefix_2 .tooltip-text { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-title { +#_sample_helper_static_id_prefix_2 .tooltip-title { fill: #474747; font-weight: bold; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-label { +#_sample_helper_static_id_prefix_2 .tooltip-label { fill: #474747; font-weight: bold; font-style: normal;font-family: sans-serif; @@ -129,7 +129,7 @@ font-size: 13.0px; } - + @@ -167,7 +167,7 @@ font-size: 13.0px; - + @@ -179,7 +179,7 @@ font-size: 13.0px; - + @@ -305,6 +305,6 @@ font-size: 13.0px; - + \ No newline at end of file diff --git a/docs/images/guides/layout/guideLabelDefaultPlot_dark.svg b/docs/images/guides/layout/guideLabelDefaultPlot_dark.svg index 39cb386e1..aa712746d 100644 --- a/docs/images/guides/layout/guideLabelDefaultPlot_dark.svg +++ b/docs/images/guides/layout/guideLabelDefaultPlot_dark.svg @@ -10,117 +10,117 @@ text { text-rendering: optimizeLegibility; } -#xXxprefixXx0 .plot-title { +#_sample_helper_static_id_prefix_0 .plot-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-x { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-x { fill: #303030; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-y { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-y { fill: #303030; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-text { +#_sample_helper_static_id_prefix_2 .tooltip-text { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-title { +#_sample_helper_static_id_prefix_2 .tooltip-title { fill: #bbbbbb; font-weight: bold; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-label { +#_sample_helper_static_id_prefix_2 .tooltip-label { fill: #bbbbbb; font-weight: bold; font-style: normal;font-family: sans-serif; @@ -129,7 +129,7 @@ font-size: 13.0px; } - + @@ -271,7 +271,7 @@ font-size: 13.0px; - + @@ -283,7 +283,7 @@ font-size: 13.0px; - + @@ -305,6 +305,6 @@ font-size: 13.0px; - + \ No newline at end of file diff --git a/docs/images/guides/layout/guideLabelFormatValueTooltip.svg b/docs/images/guides/layout/guideLabelFormatValueTooltip.svg index e31263119..efcb359e1 100644 --- a/docs/images/guides/layout/guideLabelFormatValueTooltip.svg +++ b/docs/images/guides/layout/guideLabelFormatValueTooltip.svg @@ -10,117 +10,117 @@ text { text-rendering: optimizeLegibility; } -#xXxprefixXx0 .plot-title { +#_sample_helper_static_id_prefix_0 .plot-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-x { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-x { fill: #ffffff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-y { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-y { fill: #ffffff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-text { +#_sample_helper_static_id_prefix_2 .tooltip-text { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-title { +#_sample_helper_static_id_prefix_2 .tooltip-title { fill: #474747; font-weight: bold; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-label { +#_sample_helper_static_id_prefix_2 .tooltip-label { fill: #474747; font-weight: bold; font-style: normal;font-family: sans-serif; @@ -129,7 +129,7 @@ font-size: 13.0px; } - + @@ -167,7 +167,7 @@ font-size: 13.0px; - + @@ -179,7 +179,7 @@ font-size: 13.0px; - + @@ -305,6 +305,6 @@ font-size: 13.0px; - + \ No newline at end of file diff --git a/docs/images/guides/layout/guideLabelFormatValueTooltip_dark.svg b/docs/images/guides/layout/guideLabelFormatValueTooltip_dark.svg index 39cb386e1..aa712746d 100644 --- a/docs/images/guides/layout/guideLabelFormatValueTooltip_dark.svg +++ b/docs/images/guides/layout/guideLabelFormatValueTooltip_dark.svg @@ -10,117 +10,117 @@ text { text-rendering: optimizeLegibility; } -#xXxprefixXx0 .plot-title { +#_sample_helper_static_id_prefix_0 .plot-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-x { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-x { fill: #303030; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-y { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-y { fill: #303030; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-text { +#_sample_helper_static_id_prefix_2 .tooltip-text { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-title { +#_sample_helper_static_id_prefix_2 .tooltip-title { fill: #bbbbbb; font-weight: bold; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-label { +#_sample_helper_static_id_prefix_2 .tooltip-label { fill: #bbbbbb; font-weight: bold; font-style: normal;font-family: sans-serif; @@ -129,7 +129,7 @@ font-size: 13.0px; } - + @@ -271,7 +271,7 @@ font-size: 13.0px; - + @@ -283,7 +283,7 @@ font-size: 13.0px; - + @@ -305,6 +305,6 @@ font-size: 13.0px; - + \ No newline at end of file diff --git a/docs/images/guides/layout/guideLabelFormattingBreaksManually.svg b/docs/images/guides/layout/guideLabelFormattingBreaksManually.svg index 085e3a3ae..afaae8f71 100644 --- a/docs/images/guides/layout/guideLabelFormattingBreaksManually.svg +++ b/docs/images/guides/layout/guideLabelFormattingBreaksManually.svg @@ -10,117 +10,117 @@ text { text-rendering: optimizeLegibility; } -#xXxprefixXx0 .plot-title { +#_sample_helper_static_id_prefix_0 .plot-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-x { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-x { fill: #ffffff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-y { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-y { fill: #ffffff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-text { +#_sample_helper_static_id_prefix_2 .tooltip-text { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-title { +#_sample_helper_static_id_prefix_2 .tooltip-title { fill: #474747; font-weight: bold; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-label { +#_sample_helper_static_id_prefix_2 .tooltip-label { fill: #474747; font-weight: bold; font-style: normal;font-family: sans-serif; @@ -129,7 +129,7 @@ font-size: 13.0px; } - + @@ -163,7 +163,7 @@ font-size: 13.0px; - + @@ -175,7 +175,7 @@ font-size: 13.0px; - + @@ -287,6 +287,6 @@ font-size: 13.0px; - + \ No newline at end of file diff --git a/docs/images/guides/layout/guideLabelFormattingBreaksManually_dark.svg b/docs/images/guides/layout/guideLabelFormattingBreaksManually_dark.svg index 172568fa0..3c5c76087 100644 --- a/docs/images/guides/layout/guideLabelFormattingBreaksManually_dark.svg +++ b/docs/images/guides/layout/guideLabelFormattingBreaksManually_dark.svg @@ -10,117 +10,117 @@ text { text-rendering: optimizeLegibility; } -#xXxprefixXx0 .plot-title { +#_sample_helper_static_id_prefix_0 .plot-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-x { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-x { fill: #303030; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-y { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-y { fill: #303030; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-text { +#_sample_helper_static_id_prefix_2 .tooltip-text { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-title { +#_sample_helper_static_id_prefix_2 .tooltip-title { fill: #bbbbbb; font-weight: bold; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-label { +#_sample_helper_static_id_prefix_2 .tooltip-label { fill: #bbbbbb; font-weight: bold; font-style: normal;font-family: sans-serif; @@ -129,7 +129,7 @@ font-size: 13.0px; } - + @@ -253,7 +253,7 @@ font-size: 13.0px; - + @@ -265,7 +265,7 @@ font-size: 13.0px; - + @@ -287,6 +287,6 @@ font-size: 13.0px; - + \ No newline at end of file diff --git a/docs/images/guides/layout/guideLabelFormattingXAndY.svg b/docs/images/guides/layout/guideLabelFormattingXAndY.svg index dd43cf133..29a411be9 100644 --- a/docs/images/guides/layout/guideLabelFormattingXAndY.svg +++ b/docs/images/guides/layout/guideLabelFormattingXAndY.svg @@ -10,117 +10,117 @@ text { text-rendering: optimizeLegibility; } -#xXxprefixXx0 .plot-title { +#_sample_helper_static_id_prefix_0 .plot-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-x { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-x { fill: #ffffff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-y { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-y { fill: #ffffff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-text { +#_sample_helper_static_id_prefix_2 .tooltip-text { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-title { +#_sample_helper_static_id_prefix_2 .tooltip-title { fill: #474747; font-weight: bold; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-label { +#_sample_helper_static_id_prefix_2 .tooltip-label { fill: #474747; font-weight: bold; font-style: normal;font-family: sans-serif; @@ -129,7 +129,7 @@ font-size: 13.0px; } - + @@ -167,7 +167,7 @@ font-size: 13.0px; - + @@ -179,7 +179,7 @@ font-size: 13.0px; - + @@ -305,6 +305,6 @@ font-size: 13.0px; - + \ No newline at end of file diff --git a/docs/images/guides/layout/guideLabelFormattingXAndY_dark.svg b/docs/images/guides/layout/guideLabelFormattingXAndY_dark.svg index 3026cdf30..ce558467e 100644 --- a/docs/images/guides/layout/guideLabelFormattingXAndY_dark.svg +++ b/docs/images/guides/layout/guideLabelFormattingXAndY_dark.svg @@ -10,117 +10,117 @@ text { text-rendering: optimizeLegibility; } -#xXxprefixXx0 .plot-title { +#_sample_helper_static_id_prefix_0 .plot-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-x { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-x { fill: #303030; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-y { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-y { fill: #303030; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-text { +#_sample_helper_static_id_prefix_2 .tooltip-text { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-title { +#_sample_helper_static_id_prefix_2 .tooltip-title { fill: #bbbbbb; font-weight: bold; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-label { +#_sample_helper_static_id_prefix_2 .tooltip-label { fill: #bbbbbb; font-weight: bold; font-style: normal;font-family: sans-serif; @@ -129,7 +129,7 @@ font-size: 13.0px; } - + @@ -271,7 +271,7 @@ font-size: 13.0px; - + @@ -283,7 +283,7 @@ font-size: 13.0px; - + @@ -305,6 +305,6 @@ font-size: 13.0px; - + \ No newline at end of file diff --git a/docs/images/guides/layout/guideLabelMeanMarkLine.svg b/docs/images/guides/layout/guideLabelMeanMarkLine.svg index 827bd3215..23d2b2a4d 100644 --- a/docs/images/guides/layout/guideLabelMeanMarkLine.svg +++ b/docs/images/guides/layout/guideLabelMeanMarkLine.svg @@ -10,117 +10,117 @@ text { text-rendering: optimizeLegibility; } -#xXxprefixXx0 .plot-title { +#_sample_helper_static_id_prefix_0 .plot-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx4 .axis-tooltip-text-x { +#_sample_helper_static_id_prefix_4 .axis-tooltip-text-x { fill: #ffffff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx4 .axis-tooltip-text-y { +#_sample_helper_static_id_prefix_4 .axis-tooltip-text-y { fill: #ffffff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx4 .tooltip-text { +#_sample_helper_static_id_prefix_4 .tooltip-text { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx4 .tooltip-title { +#_sample_helper_static_id_prefix_4 .tooltip-title { fill: #474747; font-weight: bold; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx4 .tooltip-label { +#_sample_helper_static_id_prefix_4 .tooltip-label { fill: #474747; font-weight: bold; font-style: normal;font-family: sans-serif; @@ -129,7 +129,7 @@ font-size: 13.0px; } - + @@ -167,7 +167,7 @@ font-size: 13.0px; - + @@ -192,19 +192,19 @@ font-size: 13.0px; - + - + - + @@ -335,6 +335,6 @@ font-size: 13.0px; - + \ No newline at end of file diff --git a/docs/images/guides/layout/guideLabelMeanMarkLine_dark.svg b/docs/images/guides/layout/guideLabelMeanMarkLine_dark.svg index 41a7fc0cb..30e4a40f9 100644 --- a/docs/images/guides/layout/guideLabelMeanMarkLine_dark.svg +++ b/docs/images/guides/layout/guideLabelMeanMarkLine_dark.svg @@ -10,117 +10,117 @@ text { text-rendering: optimizeLegibility; } -#xXxprefixXx0 .plot-title { +#_sample_helper_static_id_prefix_0 .plot-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx4 .axis-tooltip-text-x { +#_sample_helper_static_id_prefix_4 .axis-tooltip-text-x { fill: #303030; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx4 .axis-tooltip-text-y { +#_sample_helper_static_id_prefix_4 .axis-tooltip-text-y { fill: #303030; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx4 .tooltip-text { +#_sample_helper_static_id_prefix_4 .tooltip-text { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx4 .tooltip-title { +#_sample_helper_static_id_prefix_4 .tooltip-title { fill: #bbbbbb; font-weight: bold; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx4 .tooltip-label { +#_sample_helper_static_id_prefix_4 .tooltip-label { fill: #bbbbbb; font-weight: bold; font-style: normal;font-family: sans-serif; @@ -129,7 +129,7 @@ font-size: 13.0px; } - + @@ -271,7 +271,7 @@ font-size: 13.0px; - + @@ -296,19 +296,19 @@ font-size: 13.0px; - + - + - + @@ -335,6 +335,6 @@ font-size: 13.0px; - + \ No newline at end of file diff --git a/docs/images/guides/layout/guideLegendAxisBottomLegend.svg b/docs/images/guides/layout/guideLegendAxisBottomLegend.svg index d25d37f98..c1eec7b2d 100644 --- a/docs/images/guides/layout/guideLegendAxisBottomLegend.svg +++ b/docs/images/guides/layout/guideLegendAxisBottomLegend.svg @@ -10,117 +10,117 @@ text { text-rendering: optimizeLegibility; } -#xXxprefixXx0 .plot-title { +#_sample_helper_static_id_prefix_0 .plot-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-x { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-x { fill: #ffffff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-y { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-y { fill: #ffffff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-text { +#_sample_helper_static_id_prefix_2 .tooltip-text { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-title { +#_sample_helper_static_id_prefix_2 .tooltip-title { fill: #474747; font-weight: bold; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-label { +#_sample_helper_static_id_prefix_2 .tooltip-label { fill: #474747; font-weight: bold; font-style: normal;font-family: sans-serif; @@ -129,7 +129,7 @@ font-size: 13.0px; } - + @@ -308,7 +308,7 @@ font-size: 13.0px; - + @@ -554,7 +554,7 @@ font-size: 13.0px; - + @@ -824,6 +824,6 @@ font-size: 13.0px; - + \ No newline at end of file diff --git a/docs/images/guides/layout/guideLegendAxisBottomLegend_dark.svg b/docs/images/guides/layout/guideLegendAxisBottomLegend_dark.svg index 6a76c3be4..47c5adac6 100644 --- a/docs/images/guides/layout/guideLegendAxisBottomLegend_dark.svg +++ b/docs/images/guides/layout/guideLegendAxisBottomLegend_dark.svg @@ -10,117 +10,117 @@ text { text-rendering: optimizeLegibility; } -#xXxprefixXx0 .plot-title { +#_sample_helper_static_id_prefix_0 .plot-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-x { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-x { fill: #303030; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-y { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-y { fill: #303030; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-text { +#_sample_helper_static_id_prefix_2 .tooltip-text { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-title { +#_sample_helper_static_id_prefix_2 .tooltip-title { fill: #bbbbbb; font-weight: bold; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-label { +#_sample_helper_static_id_prefix_2 .tooltip-label { fill: #bbbbbb; font-weight: bold; font-style: normal;font-family: sans-serif; @@ -129,7 +129,7 @@ font-size: 13.0px; } - + @@ -308,7 +308,7 @@ font-size: 13.0px; - + @@ -554,7 +554,7 @@ font-size: 13.0px; - + @@ -824,6 +824,6 @@ font-size: 13.0px; - + \ No newline at end of file diff --git a/docs/images/guides/layout/guideLegendAxisConfigureLegend.svg b/docs/images/guides/layout/guideLegendAxisConfigureLegend.svg index fe2ef4fdc..d3ceeb394 100644 --- a/docs/images/guides/layout/guideLegendAxisConfigureLegend.svg +++ b/docs/images/guides/layout/guideLegendAxisConfigureLegend.svg @@ -10,117 +10,117 @@ text { text-rendering: optimizeLegibility; } -#xXxprefixXx0 .plot-title { +#_sample_helper_static_id_prefix_0 .plot-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-x { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-x { fill: #ffffff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-y { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-y { fill: #ffffff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-text { +#_sample_helper_static_id_prefix_2 .tooltip-text { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-title { +#_sample_helper_static_id_prefix_2 .tooltip-title { fill: #474747; font-weight: bold; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-label { +#_sample_helper_static_id_prefix_2 .tooltip-label { fill: #474747; font-weight: bold; font-style: normal;font-family: sans-serif; @@ -129,7 +129,7 @@ font-size: 13.0px; } - + @@ -344,7 +344,7 @@ font-size: 13.0px; - + @@ -590,7 +590,7 @@ font-size: 13.0px; - + @@ -782,6 +782,6 @@ font-size: 13.0px; - + \ No newline at end of file diff --git a/docs/images/guides/layout/guideLegendAxisConfigureLegend_dark.svg b/docs/images/guides/layout/guideLegendAxisConfigureLegend_dark.svg index f94cc86f3..45b5bf2a7 100644 --- a/docs/images/guides/layout/guideLegendAxisConfigureLegend_dark.svg +++ b/docs/images/guides/layout/guideLegendAxisConfigureLegend_dark.svg @@ -10,117 +10,117 @@ text { text-rendering: optimizeLegibility; } -#xXxprefixXx0 .plot-title { +#_sample_helper_static_id_prefix_0 .plot-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-x { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-x { fill: #303030; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-y { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-y { fill: #303030; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-text { +#_sample_helper_static_id_prefix_2 .tooltip-text { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-title { +#_sample_helper_static_id_prefix_2 .tooltip-title { fill: #bbbbbb; font-weight: bold; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-label { +#_sample_helper_static_id_prefix_2 .tooltip-label { fill: #bbbbbb; font-weight: bold; font-style: normal;font-family: sans-serif; @@ -129,7 +129,7 @@ font-size: 13.0px; } - + @@ -344,7 +344,7 @@ font-size: 13.0px; - + @@ -590,7 +590,7 @@ font-size: 13.0px; - + @@ -782,6 +782,6 @@ font-size: 13.0px; - + \ No newline at end of file diff --git a/docs/images/guides/layout/guideLegendAxisContinuousLegend.svg b/docs/images/guides/layout/guideLegendAxisContinuousLegend.svg index 2d1ee2ffd..a2ff0300f 100644 --- a/docs/images/guides/layout/guideLegendAxisContinuousLegend.svg +++ b/docs/images/guides/layout/guideLegendAxisContinuousLegend.svg @@ -10,117 +10,117 @@ text { text-rendering: optimizeLegibility; } -#xXxprefixXx0 .plot-title { +#_sample_helper_static_id_prefix_0 .plot-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-x { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-x { fill: #ffffff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-y { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-y { fill: #ffffff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-text { +#_sample_helper_static_id_prefix_2 .tooltip-text { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-title { +#_sample_helper_static_id_prefix_2 .tooltip-title { fill: #474747; font-weight: bold; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-label { +#_sample_helper_static_id_prefix_2 .tooltip-label { fill: #474747; font-weight: bold; font-style: normal;font-family: sans-serif; @@ -129,7 +129,7 @@ font-size: 13.0px; } - + @@ -169,7 +169,7 @@ font-size: 13.0px; - + @@ -415,7 +415,7 @@ font-size: 13.0px; - + @@ -716,6 +716,6 @@ font-size: 13.0px; - + \ No newline at end of file diff --git a/docs/images/guides/layout/guideLegendAxisContinuousLegend_dark.svg b/docs/images/guides/layout/guideLegendAxisContinuousLegend_dark.svg index 6e58f3fa2..fd26fb580 100644 --- a/docs/images/guides/layout/guideLegendAxisContinuousLegend_dark.svg +++ b/docs/images/guides/layout/guideLegendAxisContinuousLegend_dark.svg @@ -10,117 +10,117 @@ text { text-rendering: optimizeLegibility; } -#xXxprefixXx0 .plot-title { +#_sample_helper_static_id_prefix_0 .plot-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-x { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-x { fill: #303030; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-y { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-y { fill: #303030; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-text { +#_sample_helper_static_id_prefix_2 .tooltip-text { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-title { +#_sample_helper_static_id_prefix_2 .tooltip-title { fill: #bbbbbb; font-weight: bold; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-label { +#_sample_helper_static_id_prefix_2 .tooltip-label { fill: #bbbbbb; font-weight: bold; font-style: normal;font-family: sans-serif; @@ -129,7 +129,7 @@ font-size: 13.0px; } - + @@ -278,7 +278,7 @@ font-size: 13.0px; - + @@ -524,7 +524,7 @@ font-size: 13.0px; - + @@ -716,6 +716,6 @@ font-size: 13.0px; - + \ No newline at end of file diff --git a/docs/images/guides/layout/guideLegendAxisDefaultLegend.svg b/docs/images/guides/layout/guideLegendAxisDefaultLegend.svg index 93bf439fe..64d4fd38a 100644 --- a/docs/images/guides/layout/guideLegendAxisDefaultLegend.svg +++ b/docs/images/guides/layout/guideLegendAxisDefaultLegend.svg @@ -10,117 +10,117 @@ text { text-rendering: optimizeLegibility; } -#xXxprefixXx0 .plot-title { +#_sample_helper_static_id_prefix_0 .plot-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-x { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-x { fill: #ffffff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-y { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-y { fill: #ffffff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-text { +#_sample_helper_static_id_prefix_2 .tooltip-text { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-title { +#_sample_helper_static_id_prefix_2 .tooltip-title { fill: #474747; font-weight: bold; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-label { +#_sample_helper_static_id_prefix_2 .tooltip-label { fill: #474747; font-weight: bold; font-style: normal;font-family: sans-serif; @@ -129,7 +129,7 @@ font-size: 13.0px; } - + @@ -169,7 +169,7 @@ font-size: 13.0px; - + @@ -415,7 +415,7 @@ font-size: 13.0px; - + @@ -799,6 +799,6 @@ font-size: 13.0px; - + \ No newline at end of file diff --git a/docs/images/guides/layout/guideLegendAxisDefaultLegend_dark.svg b/docs/images/guides/layout/guideLegendAxisDefaultLegend_dark.svg index 01f11febd..9ce182ef5 100644 --- a/docs/images/guides/layout/guideLegendAxisDefaultLegend_dark.svg +++ b/docs/images/guides/layout/guideLegendAxisDefaultLegend_dark.svg @@ -10,117 +10,117 @@ text { text-rendering: optimizeLegibility; } -#xXxprefixXx0 .plot-title { +#_sample_helper_static_id_prefix_0 .plot-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-x { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-x { fill: #303030; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-y { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-y { fill: #303030; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-text { +#_sample_helper_static_id_prefix_2 .tooltip-text { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-title { +#_sample_helper_static_id_prefix_2 .tooltip-title { fill: #bbbbbb; font-weight: bold; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-label { +#_sample_helper_static_id_prefix_2 .tooltip-label { fill: #bbbbbb; font-weight: bold; font-style: normal;font-family: sans-serif; @@ -129,7 +129,7 @@ font-size: 13.0px; } - + @@ -278,7 +278,7 @@ font-size: 13.0px; - + @@ -524,7 +524,7 @@ font-size: 13.0px; - + @@ -799,6 +799,6 @@ font-size: 13.0px; - + \ No newline at end of file diff --git a/docs/images/guides/layout/guideLegendAxisFillingLegendCols.svg b/docs/images/guides/layout/guideLegendAxisFillingLegendCols.svg index 5d2f237b9..b4dcb3728 100644 --- a/docs/images/guides/layout/guideLegendAxisFillingLegendCols.svg +++ b/docs/images/guides/layout/guideLegendAxisFillingLegendCols.svg @@ -10,117 +10,117 @@ text { text-rendering: optimizeLegibility; } -#xXxprefixXx0 .plot-title { +#_sample_helper_static_id_prefix_0 .plot-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-x { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-x { fill: #ffffff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-y { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-y { fill: #ffffff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-text { +#_sample_helper_static_id_prefix_2 .tooltip-text { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-title { +#_sample_helper_static_id_prefix_2 .tooltip-title { fill: #474747; font-weight: bold; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-label { +#_sample_helper_static_id_prefix_2 .tooltip-label { fill: #474747; font-weight: bold; font-style: normal;font-family: sans-serif; @@ -129,7 +129,7 @@ font-size: 13.0px; } - + @@ -169,7 +169,7 @@ font-size: 13.0px; - + @@ -415,7 +415,7 @@ font-size: 13.0px; - + @@ -804,6 +804,6 @@ font-size: 13.0px; - + \ No newline at end of file diff --git a/docs/images/guides/layout/guideLegendAxisFillingLegendCols_dark.svg b/docs/images/guides/layout/guideLegendAxisFillingLegendCols_dark.svg index 8493ed3f6..22aa1a5d4 100644 --- a/docs/images/guides/layout/guideLegendAxisFillingLegendCols_dark.svg +++ b/docs/images/guides/layout/guideLegendAxisFillingLegendCols_dark.svg @@ -10,117 +10,117 @@ text { text-rendering: optimizeLegibility; } -#xXxprefixXx0 .plot-title { +#_sample_helper_static_id_prefix_0 .plot-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-x { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-x { fill: #303030; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-y { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-y { fill: #303030; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-text { +#_sample_helper_static_id_prefix_2 .tooltip-text { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-title { +#_sample_helper_static_id_prefix_2 .tooltip-title { fill: #bbbbbb; font-weight: bold; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-label { +#_sample_helper_static_id_prefix_2 .tooltip-label { fill: #bbbbbb; font-weight: bold; font-style: normal;font-family: sans-serif; @@ -129,7 +129,7 @@ font-size: 13.0px; } - + @@ -278,7 +278,7 @@ font-size: 13.0px; - + @@ -524,7 +524,7 @@ font-size: 13.0px; - + @@ -804,6 +804,6 @@ font-size: 13.0px; - + \ No newline at end of file diff --git a/docs/images/guides/layout/guideLegendAxisLegendHorizontalDirection.svg b/docs/images/guides/layout/guideLegendAxisLegendHorizontalDirection.svg index fbf4eb234..648f58111 100644 --- a/docs/images/guides/layout/guideLegendAxisLegendHorizontalDirection.svg +++ b/docs/images/guides/layout/guideLegendAxisLegendHorizontalDirection.svg @@ -10,117 +10,117 @@ text { text-rendering: optimizeLegibility; } -#xXxprefixXx0 .plot-title { +#_sample_helper_static_id_prefix_0 .plot-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-x { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-x { fill: #ffffff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-y { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-y { fill: #ffffff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-text { +#_sample_helper_static_id_prefix_2 .tooltip-text { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-title { +#_sample_helper_static_id_prefix_2 .tooltip-title { fill: #474747; font-weight: bold; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-label { +#_sample_helper_static_id_prefix_2 .tooltip-label { fill: #474747; font-weight: bold; font-style: normal;font-family: sans-serif; @@ -129,7 +129,7 @@ font-size: 13.0px; } - + @@ -344,7 +344,7 @@ font-size: 13.0px; - + @@ -590,7 +590,7 @@ font-size: 13.0px; - + @@ -782,6 +782,6 @@ font-size: 13.0px; - + \ No newline at end of file diff --git a/docs/images/guides/layout/guideLegendAxisLegendHorizontalDirection_dark.svg b/docs/images/guides/layout/guideLegendAxisLegendHorizontalDirection_dark.svg index e880575e1..fd75d434a 100644 --- a/docs/images/guides/layout/guideLegendAxisLegendHorizontalDirection_dark.svg +++ b/docs/images/guides/layout/guideLegendAxisLegendHorizontalDirection_dark.svg @@ -10,117 +10,117 @@ text { text-rendering: optimizeLegibility; } -#xXxprefixXx0 .plot-title { +#_sample_helper_static_id_prefix_0 .plot-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-x { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-x { fill: #303030; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-y { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-y { fill: #303030; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-text { +#_sample_helper_static_id_prefix_2 .tooltip-text { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-title { +#_sample_helper_static_id_prefix_2 .tooltip-title { fill: #bbbbbb; font-weight: bold; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-label { +#_sample_helper_static_id_prefix_2 .tooltip-label { fill: #bbbbbb; font-weight: bold; font-style: normal;font-family: sans-serif; @@ -129,7 +129,7 @@ font-size: 13.0px; } - + @@ -344,7 +344,7 @@ font-size: 13.0px; - + @@ -590,7 +590,7 @@ font-size: 13.0px; - + @@ -782,6 +782,6 @@ font-size: 13.0px; - + \ No newline at end of file diff --git a/docs/images/guides/layout/guideLegendAxisTwoColumnsLegend.svg b/docs/images/guides/layout/guideLegendAxisTwoColumnsLegend.svg index 161d24965..c6833d603 100644 --- a/docs/images/guides/layout/guideLegendAxisTwoColumnsLegend.svg +++ b/docs/images/guides/layout/guideLegendAxisTwoColumnsLegend.svg @@ -10,117 +10,117 @@ text { text-rendering: optimizeLegibility; } -#xXxprefixXx0 .plot-title { +#_sample_helper_static_id_prefix_0 .plot-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-x { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-x { fill: #ffffff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-y { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-y { fill: #ffffff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-text { +#_sample_helper_static_id_prefix_2 .tooltip-text { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-title { +#_sample_helper_static_id_prefix_2 .tooltip-title { fill: #474747; font-weight: bold; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-label { +#_sample_helper_static_id_prefix_2 .tooltip-label { fill: #474747; font-weight: bold; font-style: normal;font-family: sans-serif; @@ -129,7 +129,7 @@ font-size: 13.0px; } - + @@ -169,7 +169,7 @@ font-size: 13.0px; - + @@ -415,7 +415,7 @@ font-size: 13.0px; - + @@ -804,6 +804,6 @@ font-size: 13.0px; - + \ No newline at end of file diff --git a/docs/images/guides/layout/guideLegendAxisTwoColumnsLegend_dark.svg b/docs/images/guides/layout/guideLegendAxisTwoColumnsLegend_dark.svg index f0f146791..6a604465f 100644 --- a/docs/images/guides/layout/guideLegendAxisTwoColumnsLegend_dark.svg +++ b/docs/images/guides/layout/guideLegendAxisTwoColumnsLegend_dark.svg @@ -10,117 +10,117 @@ text { text-rendering: optimizeLegibility; } -#xXxprefixXx0 .plot-title { +#_sample_helper_static_id_prefix_0 .plot-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-x { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-x { fill: #303030; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-y { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-y { fill: #303030; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-text { +#_sample_helper_static_id_prefix_2 .tooltip-text { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-title { +#_sample_helper_static_id_prefix_2 .tooltip-title { fill: #bbbbbb; font-weight: bold; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-label { +#_sample_helper_static_id_prefix_2 .tooltip-label { fill: #bbbbbb; font-weight: bold; font-style: normal;font-family: sans-serif; @@ -129,7 +129,7 @@ font-size: 13.0px; } - + @@ -278,7 +278,7 @@ font-size: 13.0px; - + @@ -524,7 +524,7 @@ font-size: 13.0px; - + @@ -804,6 +804,6 @@ font-size: 13.0px; - + \ No newline at end of file diff --git a/docs/images/guides/layout/guideStylesAllPrepStyles.svg b/docs/images/guides/layout/guideStylesAllPrepStyles.svg index 006f330df..5cf0c6049 100644 --- a/docs/images/guides/layout/guideStylesAllPrepStyles.svg +++ b/docs/images/guides/layout/guideStylesAllPrepStyles.svg @@ -10,54 +10,54 @@ text { text-rendering: optimizeLegibility; } -#xXxprefixXx0 .plot-title { +#_sample_helper_static_id_prefix_0 .plot-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; @@ -71,14 +71,14 @@ font-weight: normal; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; @@ -92,14 +92,14 @@ font-weight: normal; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; @@ -129,7 +129,7 @@ font-size: 13.0px; } - + @@ -145,117 +145,117 @@ font-size: 13.0px; text { text-rendering: optimizeLegibility; } -#xXxprefixXx1 .plot-title { +#_sample_helper_static_id_prefix_1 .plot-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx1 .plot-subtitle { +#_sample_helper_static_id_prefix_1 .plot-subtitle { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx1 .plot-caption { +#_sample_helper_static_id_prefix_1 .plot-caption { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx1 .hyperlink-element { +#_sample_helper_static_id_prefix_1 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx1 .legend-title { +#_sample_helper_static_id_prefix_1 .legend-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx1 .legend-item { +#_sample_helper_static_id_prefix_1 .legend-item { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx1 .axis-title-x { +#_sample_helper_static_id_prefix_1 .axis-title-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx1 .axis-text-x { +#_sample_helper_static_id_prefix_1 .axis-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx3 .axis-tooltip-text-x { +#_sample_helper_static_id_prefix_3 .axis-tooltip-text-x { fill: #ffffff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx1 .axis-title-y { +#_sample_helper_static_id_prefix_1 .axis-title-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx1 .axis-text-y { +#_sample_helper_static_id_prefix_1 .axis-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx3 .axis-tooltip-text-y { +#_sample_helper_static_id_prefix_3 .axis-tooltip-text-y { fill: #ffffff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx1 .facet-strip-text-x { +#_sample_helper_static_id_prefix_1 .facet-strip-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx1 .facet-strip-text-y { +#_sample_helper_static_id_prefix_1 .facet-strip-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx3 .tooltip-text { +#_sample_helper_static_id_prefix_3 .tooltip-text { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx3 .tooltip-title { +#_sample_helper_static_id_prefix_3 .tooltip-title { fill: #474747; font-weight: bold; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx3 .tooltip-label { +#_sample_helper_static_id_prefix_3 .tooltip-label { fill: #474747; font-weight: bold; font-style: normal;font-family: sans-serif; @@ -264,7 +264,7 @@ font-size: 13.0px; } - + @@ -377,7 +377,7 @@ font-size: 13.0px; - + @@ -623,7 +623,7 @@ font-size: 13.0px; - + @@ -650,7 +650,7 @@ font-size: 13.0px; - + @@ -665,117 +665,117 @@ font-size: 13.0px; text { text-rendering: optimizeLegibility; } -#xXxprefixXx4 .plot-title { +#_sample_helper_static_id_prefix_4 .plot-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx4 .plot-subtitle { +#_sample_helper_static_id_prefix_4 .plot-subtitle { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx4 .plot-caption { +#_sample_helper_static_id_prefix_4 .plot-caption { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx4 .hyperlink-element { +#_sample_helper_static_id_prefix_4 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx4 .legend-title { +#_sample_helper_static_id_prefix_4 .legend-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx4 .legend-item { +#_sample_helper_static_id_prefix_4 .legend-item { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx4 .axis-title-x { +#_sample_helper_static_id_prefix_4 .axis-title-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx4 .axis-text-x { +#_sample_helper_static_id_prefix_4 .axis-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx6 .axis-tooltip-text-x { +#_sample_helper_static_id_prefix_6 .axis-tooltip-text-x { fill: #ffffff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx4 .axis-title-y { +#_sample_helper_static_id_prefix_4 .axis-title-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx4 .axis-text-y { +#_sample_helper_static_id_prefix_4 .axis-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx6 .axis-tooltip-text-y { +#_sample_helper_static_id_prefix_6 .axis-tooltip-text-y { fill: #ffffff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx4 .facet-strip-text-x { +#_sample_helper_static_id_prefix_4 .facet-strip-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx4 .facet-strip-text-y { +#_sample_helper_static_id_prefix_4 .facet-strip-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx6 .tooltip-text { +#_sample_helper_static_id_prefix_6 .tooltip-text { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx6 .tooltip-title { +#_sample_helper_static_id_prefix_6 .tooltip-title { fill: #474747; font-weight: bold; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx6 .tooltip-label { +#_sample_helper_static_id_prefix_6 .tooltip-label { fill: #474747; font-weight: bold; font-style: normal;font-family: sans-serif; @@ -784,7 +784,7 @@ font-size: 13.0px; } - + @@ -921,7 +921,7 @@ font-size: 13.0px; - + @@ -1167,7 +1167,7 @@ font-size: 13.0px; - + @@ -1196,7 +1196,7 @@ font-size: 13.0px; - + @@ -1211,117 +1211,117 @@ font-size: 13.0px; text { text-rendering: optimizeLegibility; } -#xXxprefixXx7 .plot-title { +#_sample_helper_static_id_prefix_7 .plot-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx7 .plot-subtitle { +#_sample_helper_static_id_prefix_7 .plot-subtitle { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx7 .plot-caption { +#_sample_helper_static_id_prefix_7 .plot-caption { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx7 .hyperlink-element { +#_sample_helper_static_id_prefix_7 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx7 .legend-title { +#_sample_helper_static_id_prefix_7 .legend-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx7 .legend-item { +#_sample_helper_static_id_prefix_7 .legend-item { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx7 .axis-title-x { +#_sample_helper_static_id_prefix_7 .axis-title-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx7 .axis-text-x { +#_sample_helper_static_id_prefix_7 .axis-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx9 .axis-tooltip-text-x { +#_sample_helper_static_id_prefix_9 .axis-tooltip-text-x { fill: #ffffff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx7 .axis-title-y { +#_sample_helper_static_id_prefix_7 .axis-title-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx7 .axis-text-y { +#_sample_helper_static_id_prefix_7 .axis-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx9 .axis-tooltip-text-y { +#_sample_helper_static_id_prefix_9 .axis-tooltip-text-y { fill: #ffffff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx7 .facet-strip-text-x { +#_sample_helper_static_id_prefix_7 .facet-strip-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx7 .facet-strip-text-y { +#_sample_helper_static_id_prefix_7 .facet-strip-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx9 .tooltip-text { +#_sample_helper_static_id_prefix_9 .tooltip-text { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx9 .tooltip-title { +#_sample_helper_static_id_prefix_9 .tooltip-title { fill: #474747; font-weight: bold; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx9 .tooltip-label { +#_sample_helper_static_id_prefix_9 .tooltip-label { fill: #474747; font-weight: bold; font-style: normal;font-family: sans-serif; @@ -1330,7 +1330,7 @@ font-size: 13.0px; } - + @@ -1433,7 +1433,7 @@ font-size: 13.0px; - + @@ -1679,7 +1679,7 @@ font-size: 13.0px; - + @@ -1706,7 +1706,7 @@ font-size: 13.0px; - + @@ -1721,117 +1721,117 @@ font-size: 13.0px; text { text-rendering: optimizeLegibility; } -#xXxprefixXx10 .plot-title { +#_sample_helper_static_id_prefix_10 .plot-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx10 .plot-subtitle { +#_sample_helper_static_id_prefix_10 .plot-subtitle { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx10 .plot-caption { +#_sample_helper_static_id_prefix_10 .plot-caption { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx10 .hyperlink-element { +#_sample_helper_static_id_prefix_10 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx10 .legend-title { +#_sample_helper_static_id_prefix_10 .legend-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx10 .legend-item { +#_sample_helper_static_id_prefix_10 .legend-item { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx10 .axis-title-x { +#_sample_helper_static_id_prefix_10 .axis-title-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx10 .axis-text-x { +#_sample_helper_static_id_prefix_10 .axis-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx12 .axis-tooltip-text-x { +#_sample_helper_static_id_prefix_12 .axis-tooltip-text-x { fill: #ffffff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx10 .axis-title-y { +#_sample_helper_static_id_prefix_10 .axis-title-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx10 .axis-text-y { +#_sample_helper_static_id_prefix_10 .axis-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx12 .axis-tooltip-text-y { +#_sample_helper_static_id_prefix_12 .axis-tooltip-text-y { fill: #ffffff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx10 .facet-strip-text-x { +#_sample_helper_static_id_prefix_10 .facet-strip-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx10 .facet-strip-text-y { +#_sample_helper_static_id_prefix_10 .facet-strip-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx12 .tooltip-text { +#_sample_helper_static_id_prefix_12 .tooltip-text { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx12 .tooltip-title { +#_sample_helper_static_id_prefix_12 .tooltip-title { fill: #474747; font-weight: bold; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx12 .tooltip-label { +#_sample_helper_static_id_prefix_12 .tooltip-label { fill: #474747; font-weight: bold; font-style: normal;font-family: sans-serif; @@ -1840,7 +1840,7 @@ font-size: 13.0px; } - + @@ -1977,7 +1977,7 @@ font-size: 13.0px; - + @@ -2223,7 +2223,7 @@ font-size: 13.0px; - + @@ -2252,7 +2252,7 @@ font-size: 13.0px; - + @@ -2267,117 +2267,117 @@ font-size: 13.0px; text { text-rendering: optimizeLegibility; } -#xXxprefixXx13 .plot-title { +#_sample_helper_static_id_prefix_13 .plot-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx13 .plot-subtitle { +#_sample_helper_static_id_prefix_13 .plot-subtitle { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx13 .plot-caption { +#_sample_helper_static_id_prefix_13 .plot-caption { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx13 .hyperlink-element { +#_sample_helper_static_id_prefix_13 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx13 .legend-title { +#_sample_helper_static_id_prefix_13 .legend-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx13 .legend-item { +#_sample_helper_static_id_prefix_13 .legend-item { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx13 .axis-title-x { +#_sample_helper_static_id_prefix_13 .axis-title-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx13 .axis-text-x { +#_sample_helper_static_id_prefix_13 .axis-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx15 .axis-tooltip-text-x { +#_sample_helper_static_id_prefix_15 .axis-tooltip-text-x { fill: #ffffff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx13 .axis-title-y { +#_sample_helper_static_id_prefix_13 .axis-title-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx13 .axis-text-y { +#_sample_helper_static_id_prefix_13 .axis-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx15 .axis-tooltip-text-y { +#_sample_helper_static_id_prefix_15 .axis-tooltip-text-y { fill: #ffffff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx13 .facet-strip-text-x { +#_sample_helper_static_id_prefix_13 .facet-strip-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx13 .facet-strip-text-y { +#_sample_helper_static_id_prefix_13 .facet-strip-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx15 .tooltip-text { +#_sample_helper_static_id_prefix_15 .tooltip-text { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx15 .tooltip-title { +#_sample_helper_static_id_prefix_15 .tooltip-title { fill: #474747; font-weight: bold; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx15 .tooltip-label { +#_sample_helper_static_id_prefix_15 .tooltip-label { fill: #474747; font-weight: bold; font-style: normal;font-family: sans-serif; @@ -2386,7 +2386,7 @@ font-size: 13.0px; } - + @@ -2503,7 +2503,7 @@ font-size: 13.0px; - + @@ -2749,7 +2749,7 @@ font-size: 13.0px; - + @@ -2776,7 +2776,7 @@ font-size: 13.0px; - + @@ -2791,117 +2791,117 @@ font-size: 13.0px; text { text-rendering: optimizeLegibility; } -#xXxprefixXx16 .plot-title { +#_sample_helper_static_id_prefix_16 .plot-title { fill: #0000ff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx16 .plot-subtitle { +#_sample_helper_static_id_prefix_16 .plot-subtitle { fill: #0000ff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx16 .plot-caption { +#_sample_helper_static_id_prefix_16 .plot-caption { fill: #0000ff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx16 .hyperlink-element { +#_sample_helper_static_id_prefix_16 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx16 .legend-title { +#_sample_helper_static_id_prefix_16 .legend-title { fill: #0000ff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx16 .legend-item { +#_sample_helper_static_id_prefix_16 .legend-item { fill: #0000ff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx16 .axis-title-x { +#_sample_helper_static_id_prefix_16 .axis-title-x { fill: #0000ff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx16 .axis-text-x { +#_sample_helper_static_id_prefix_16 .axis-text-x { fill: #0000ff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx18 .axis-tooltip-text-x { +#_sample_helper_static_id_prefix_18 .axis-tooltip-text-x { fill: #0000ff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx16 .axis-title-y { +#_sample_helper_static_id_prefix_16 .axis-title-y { fill: #0000ff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx16 .axis-text-y { +#_sample_helper_static_id_prefix_16 .axis-text-y { fill: #0000ff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx18 .axis-tooltip-text-y { +#_sample_helper_static_id_prefix_18 .axis-tooltip-text-y { fill: #0000ff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx16 .facet-strip-text-x { +#_sample_helper_static_id_prefix_16 .facet-strip-text-x { fill: #0000ff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx16 .facet-strip-text-y { +#_sample_helper_static_id_prefix_16 .facet-strip-text-y { fill: #0000ff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx18 .tooltip-text { +#_sample_helper_static_id_prefix_18 .tooltip-text { fill: #0000ff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx18 .tooltip-title { +#_sample_helper_static_id_prefix_18 .tooltip-title { fill: #0000ff; font-weight: bold; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx18 .tooltip-label { +#_sample_helper_static_id_prefix_18 .tooltip-label { fill: #0000ff; font-weight: bold; font-style: normal;font-family: sans-serif; @@ -2910,7 +2910,7 @@ font-size: 13.0px; } - + @@ -3051,7 +3051,7 @@ font-size: 13.0px; - + @@ -3297,7 +3297,7 @@ font-size: 13.0px; - + @@ -3326,7 +3326,7 @@ font-size: 13.0px; - + \ No newline at end of file diff --git a/docs/images/guides/layout/guideStylesAllPrepStyles_dark.svg b/docs/images/guides/layout/guideStylesAllPrepStyles_dark.svg index 5ff1229c2..09fc02249 100644 --- a/docs/images/guides/layout/guideStylesAllPrepStyles_dark.svg +++ b/docs/images/guides/layout/guideStylesAllPrepStyles_dark.svg @@ -10,54 +10,54 @@ text { text-rendering: optimizeLegibility; } -#xXxprefixXx0 .plot-title { +#_sample_helper_static_id_prefix_0 .plot-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; @@ -71,14 +71,14 @@ font-weight: normal; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; @@ -92,14 +92,14 @@ font-weight: normal; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; @@ -129,7 +129,7 @@ font-size: 13.0px; } - + @@ -145,117 +145,117 @@ font-size: 13.0px; text { text-rendering: optimizeLegibility; } -#xXxprefixXx1 .plot-title { +#_sample_helper_static_id_prefix_1 .plot-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx1 .plot-subtitle { +#_sample_helper_static_id_prefix_1 .plot-subtitle { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx1 .plot-caption { +#_sample_helper_static_id_prefix_1 .plot-caption { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx1 .hyperlink-element { +#_sample_helper_static_id_prefix_1 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx1 .legend-title { +#_sample_helper_static_id_prefix_1 .legend-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx1 .legend-item { +#_sample_helper_static_id_prefix_1 .legend-item { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx1 .axis-title-x { +#_sample_helper_static_id_prefix_1 .axis-title-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx1 .axis-text-x { +#_sample_helper_static_id_prefix_1 .axis-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx3 .axis-tooltip-text-x { +#_sample_helper_static_id_prefix_3 .axis-tooltip-text-x { fill: #303030; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx1 .axis-title-y { +#_sample_helper_static_id_prefix_1 .axis-title-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx1 .axis-text-y { +#_sample_helper_static_id_prefix_1 .axis-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx3 .axis-tooltip-text-y { +#_sample_helper_static_id_prefix_3 .axis-tooltip-text-y { fill: #303030; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx1 .facet-strip-text-x { +#_sample_helper_static_id_prefix_1 .facet-strip-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx1 .facet-strip-text-y { +#_sample_helper_static_id_prefix_1 .facet-strip-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx3 .tooltip-text { +#_sample_helper_static_id_prefix_3 .tooltip-text { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx3 .tooltip-title { +#_sample_helper_static_id_prefix_3 .tooltip-title { fill: #bbbbbb; font-weight: bold; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx3 .tooltip-label { +#_sample_helper_static_id_prefix_3 .tooltip-label { fill: #bbbbbb; font-weight: bold; font-style: normal;font-family: sans-serif; @@ -264,7 +264,7 @@ font-size: 13.0px; } - + @@ -377,7 +377,7 @@ font-size: 13.0px; - + @@ -623,7 +623,7 @@ font-size: 13.0px; - + @@ -650,7 +650,7 @@ font-size: 13.0px; - + @@ -665,117 +665,117 @@ font-size: 13.0px; text { text-rendering: optimizeLegibility; } -#xXxprefixXx4 .plot-title { +#_sample_helper_static_id_prefix_4 .plot-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx4 .plot-subtitle { +#_sample_helper_static_id_prefix_4 .plot-subtitle { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx4 .plot-caption { +#_sample_helper_static_id_prefix_4 .plot-caption { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx4 .hyperlink-element { +#_sample_helper_static_id_prefix_4 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx4 .legend-title { +#_sample_helper_static_id_prefix_4 .legend-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx4 .legend-item { +#_sample_helper_static_id_prefix_4 .legend-item { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx4 .axis-title-x { +#_sample_helper_static_id_prefix_4 .axis-title-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx4 .axis-text-x { +#_sample_helper_static_id_prefix_4 .axis-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx6 .axis-tooltip-text-x { +#_sample_helper_static_id_prefix_6 .axis-tooltip-text-x { fill: #303030; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx4 .axis-title-y { +#_sample_helper_static_id_prefix_4 .axis-title-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx4 .axis-text-y { +#_sample_helper_static_id_prefix_4 .axis-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx6 .axis-tooltip-text-y { +#_sample_helper_static_id_prefix_6 .axis-tooltip-text-y { fill: #303030; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx4 .facet-strip-text-x { +#_sample_helper_static_id_prefix_4 .facet-strip-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx4 .facet-strip-text-y { +#_sample_helper_static_id_prefix_4 .facet-strip-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx6 .tooltip-text { +#_sample_helper_static_id_prefix_6 .tooltip-text { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx6 .tooltip-title { +#_sample_helper_static_id_prefix_6 .tooltip-title { fill: #bbbbbb; font-weight: bold; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx6 .tooltip-label { +#_sample_helper_static_id_prefix_6 .tooltip-label { fill: #bbbbbb; font-weight: bold; font-style: normal;font-family: sans-serif; @@ -784,7 +784,7 @@ font-size: 13.0px; } - + @@ -921,7 +921,7 @@ font-size: 13.0px; - + @@ -1167,7 +1167,7 @@ font-size: 13.0px; - + @@ -1196,7 +1196,7 @@ font-size: 13.0px; - + @@ -1211,117 +1211,117 @@ font-size: 13.0px; text { text-rendering: optimizeLegibility; } -#xXxprefixXx7 .plot-title { +#_sample_helper_static_id_prefix_7 .plot-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx7 .plot-subtitle { +#_sample_helper_static_id_prefix_7 .plot-subtitle { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx7 .plot-caption { +#_sample_helper_static_id_prefix_7 .plot-caption { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx7 .hyperlink-element { +#_sample_helper_static_id_prefix_7 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx7 .legend-title { +#_sample_helper_static_id_prefix_7 .legend-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx7 .legend-item { +#_sample_helper_static_id_prefix_7 .legend-item { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx7 .axis-title-x { +#_sample_helper_static_id_prefix_7 .axis-title-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx7 .axis-text-x { +#_sample_helper_static_id_prefix_7 .axis-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx9 .axis-tooltip-text-x { +#_sample_helper_static_id_prefix_9 .axis-tooltip-text-x { fill: #303030; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx7 .axis-title-y { +#_sample_helper_static_id_prefix_7 .axis-title-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx7 .axis-text-y { +#_sample_helper_static_id_prefix_7 .axis-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx9 .axis-tooltip-text-y { +#_sample_helper_static_id_prefix_9 .axis-tooltip-text-y { fill: #303030; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx7 .facet-strip-text-x { +#_sample_helper_static_id_prefix_7 .facet-strip-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx7 .facet-strip-text-y { +#_sample_helper_static_id_prefix_7 .facet-strip-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx9 .tooltip-text { +#_sample_helper_static_id_prefix_9 .tooltip-text { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx9 .tooltip-title { +#_sample_helper_static_id_prefix_9 .tooltip-title { fill: #bbbbbb; font-weight: bold; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx9 .tooltip-label { +#_sample_helper_static_id_prefix_9 .tooltip-label { fill: #bbbbbb; font-weight: bold; font-style: normal;font-family: sans-serif; @@ -1330,7 +1330,7 @@ font-size: 13.0px; } - + @@ -1433,7 +1433,7 @@ font-size: 13.0px; - + @@ -1679,7 +1679,7 @@ font-size: 13.0px; - + @@ -1706,7 +1706,7 @@ font-size: 13.0px; - + @@ -1721,117 +1721,117 @@ font-size: 13.0px; text { text-rendering: optimizeLegibility; } -#xXxprefixXx10 .plot-title { +#_sample_helper_static_id_prefix_10 .plot-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx10 .plot-subtitle { +#_sample_helper_static_id_prefix_10 .plot-subtitle { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx10 .plot-caption { +#_sample_helper_static_id_prefix_10 .plot-caption { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx10 .hyperlink-element { +#_sample_helper_static_id_prefix_10 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx10 .legend-title { +#_sample_helper_static_id_prefix_10 .legend-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx10 .legend-item { +#_sample_helper_static_id_prefix_10 .legend-item { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx10 .axis-title-x { +#_sample_helper_static_id_prefix_10 .axis-title-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx10 .axis-text-x { +#_sample_helper_static_id_prefix_10 .axis-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx12 .axis-tooltip-text-x { +#_sample_helper_static_id_prefix_12 .axis-tooltip-text-x { fill: #303030; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx10 .axis-title-y { +#_sample_helper_static_id_prefix_10 .axis-title-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx10 .axis-text-y { +#_sample_helper_static_id_prefix_10 .axis-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx12 .axis-tooltip-text-y { +#_sample_helper_static_id_prefix_12 .axis-tooltip-text-y { fill: #303030; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx10 .facet-strip-text-x { +#_sample_helper_static_id_prefix_10 .facet-strip-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx10 .facet-strip-text-y { +#_sample_helper_static_id_prefix_10 .facet-strip-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx12 .tooltip-text { +#_sample_helper_static_id_prefix_12 .tooltip-text { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx12 .tooltip-title { +#_sample_helper_static_id_prefix_12 .tooltip-title { fill: #bbbbbb; font-weight: bold; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx12 .tooltip-label { +#_sample_helper_static_id_prefix_12 .tooltip-label { fill: #bbbbbb; font-weight: bold; font-style: normal;font-family: sans-serif; @@ -1840,7 +1840,7 @@ font-size: 13.0px; } - + @@ -1977,7 +1977,7 @@ font-size: 13.0px; - + @@ -2223,7 +2223,7 @@ font-size: 13.0px; - + @@ -2252,7 +2252,7 @@ font-size: 13.0px; - + @@ -2267,117 +2267,117 @@ font-size: 13.0px; text { text-rendering: optimizeLegibility; } -#xXxprefixXx13 .plot-title { +#_sample_helper_static_id_prefix_13 .plot-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx13 .plot-subtitle { +#_sample_helper_static_id_prefix_13 .plot-subtitle { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx13 .plot-caption { +#_sample_helper_static_id_prefix_13 .plot-caption { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx13 .hyperlink-element { +#_sample_helper_static_id_prefix_13 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx13 .legend-title { +#_sample_helper_static_id_prefix_13 .legend-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx13 .legend-item { +#_sample_helper_static_id_prefix_13 .legend-item { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx13 .axis-title-x { +#_sample_helper_static_id_prefix_13 .axis-title-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx13 .axis-text-x { +#_sample_helper_static_id_prefix_13 .axis-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx15 .axis-tooltip-text-x { +#_sample_helper_static_id_prefix_15 .axis-tooltip-text-x { fill: #303030; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx13 .axis-title-y { +#_sample_helper_static_id_prefix_13 .axis-title-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx13 .axis-text-y { +#_sample_helper_static_id_prefix_13 .axis-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx15 .axis-tooltip-text-y { +#_sample_helper_static_id_prefix_15 .axis-tooltip-text-y { fill: #303030; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx13 .facet-strip-text-x { +#_sample_helper_static_id_prefix_13 .facet-strip-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx13 .facet-strip-text-y { +#_sample_helper_static_id_prefix_13 .facet-strip-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx15 .tooltip-text { +#_sample_helper_static_id_prefix_15 .tooltip-text { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx15 .tooltip-title { +#_sample_helper_static_id_prefix_15 .tooltip-title { fill: #bbbbbb; font-weight: bold; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx15 .tooltip-label { +#_sample_helper_static_id_prefix_15 .tooltip-label { fill: #bbbbbb; font-weight: bold; font-style: normal;font-family: sans-serif; @@ -2386,7 +2386,7 @@ font-size: 13.0px; } - + @@ -2503,7 +2503,7 @@ font-size: 13.0px; - + @@ -2749,7 +2749,7 @@ font-size: 13.0px; - + @@ -2776,7 +2776,7 @@ font-size: 13.0px; - + @@ -2791,117 +2791,117 @@ font-size: 13.0px; text { text-rendering: optimizeLegibility; } -#xXxprefixXx16 .plot-title { +#_sample_helper_static_id_prefix_16 .plot-title { fill: #0000ff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx16 .plot-subtitle { +#_sample_helper_static_id_prefix_16 .plot-subtitle { fill: #0000ff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx16 .plot-caption { +#_sample_helper_static_id_prefix_16 .plot-caption { fill: #0000ff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx16 .hyperlink-element { +#_sample_helper_static_id_prefix_16 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx16 .legend-title { +#_sample_helper_static_id_prefix_16 .legend-title { fill: #0000ff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx16 .legend-item { +#_sample_helper_static_id_prefix_16 .legend-item { fill: #0000ff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx16 .axis-title-x { +#_sample_helper_static_id_prefix_16 .axis-title-x { fill: #0000ff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx16 .axis-text-x { +#_sample_helper_static_id_prefix_16 .axis-text-x { fill: #0000ff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx18 .axis-tooltip-text-x { +#_sample_helper_static_id_prefix_18 .axis-tooltip-text-x { fill: #0000ff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx16 .axis-title-y { +#_sample_helper_static_id_prefix_16 .axis-title-y { fill: #0000ff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx16 .axis-text-y { +#_sample_helper_static_id_prefix_16 .axis-text-y { fill: #0000ff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx18 .axis-tooltip-text-y { +#_sample_helper_static_id_prefix_18 .axis-tooltip-text-y { fill: #0000ff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx16 .facet-strip-text-x { +#_sample_helper_static_id_prefix_16 .facet-strip-text-x { fill: #0000ff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx16 .facet-strip-text-y { +#_sample_helper_static_id_prefix_16 .facet-strip-text-y { fill: #0000ff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx18 .tooltip-text { +#_sample_helper_static_id_prefix_18 .tooltip-text { fill: #0000ff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx18 .tooltip-title { +#_sample_helper_static_id_prefix_18 .tooltip-title { fill: #0000ff; font-weight: bold; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx18 .tooltip-label { +#_sample_helper_static_id_prefix_18 .tooltip-label { fill: #0000ff; font-weight: bold; font-style: normal;font-family: sans-serif; @@ -2910,7 +2910,7 @@ font-size: 13.0px; } - + @@ -3051,7 +3051,7 @@ font-size: 13.0px; - + @@ -3297,7 +3297,7 @@ font-size: 13.0px; - + @@ -3326,7 +3326,7 @@ font-size: 13.0px; - + \ No newline at end of file diff --git a/docs/images/guides/layout/guideStylesAxisTooltip.svg b/docs/images/guides/layout/guideStylesAxisTooltip.svg index d800421f9..c1cec8d25 100644 --- a/docs/images/guides/layout/guideStylesAxisTooltip.svg +++ b/docs/images/guides/layout/guideStylesAxisTooltip.svg @@ -10,54 +10,54 @@ text { text-rendering: optimizeLegibility; } -#xXxprefixXx0 .plot-title { +#_sample_helper_static_id_prefix_0 .plot-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; @@ -71,14 +71,14 @@ font-weight: normal; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; @@ -92,14 +92,14 @@ font-weight: normal; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; @@ -129,7 +129,7 @@ font-size: 13.0px; } - + @@ -145,117 +145,117 @@ font-size: 13.0px; text { text-rendering: optimizeLegibility; } -#xXxprefixXx1 .plot-title { +#_sample_helper_static_id_prefix_1 .plot-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx1 .plot-subtitle { +#_sample_helper_static_id_prefix_1 .plot-subtitle { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx1 .plot-caption { +#_sample_helper_static_id_prefix_1 .plot-caption { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx1 .hyperlink-element { +#_sample_helper_static_id_prefix_1 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx1 .legend-title { +#_sample_helper_static_id_prefix_1 .legend-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx1 .legend-item { +#_sample_helper_static_id_prefix_1 .legend-item { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx1 .axis-title-x { +#_sample_helper_static_id_prefix_1 .axis-title-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx1 .axis-text-x { +#_sample_helper_static_id_prefix_1 .axis-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx3 .axis-tooltip-text-x { +#_sample_helper_static_id_prefix_3 .axis-tooltip-text-x { fill: #ffffff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx1 .axis-title-y { +#_sample_helper_static_id_prefix_1 .axis-title-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx1 .axis-text-y { +#_sample_helper_static_id_prefix_1 .axis-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx3 .axis-tooltip-text-y { +#_sample_helper_static_id_prefix_3 .axis-tooltip-text-y { fill: #ffffff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx1 .facet-strip-text-x { +#_sample_helper_static_id_prefix_1 .facet-strip-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx1 .facet-strip-text-y { +#_sample_helper_static_id_prefix_1 .facet-strip-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx3 .tooltip-text { +#_sample_helper_static_id_prefix_3 .tooltip-text { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx3 .tooltip-title { +#_sample_helper_static_id_prefix_3 .tooltip-title { fill: #474747; font-weight: bold; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx3 .tooltip-label { +#_sample_helper_static_id_prefix_3 .tooltip-label { fill: #474747; font-weight: bold; font-style: normal;font-family: sans-serif; @@ -264,7 +264,7 @@ font-size: 13.0px; } - + @@ -413,7 +413,7 @@ font-size: 13.0px; - + @@ -659,7 +659,7 @@ font-size: 13.0px; - + @@ -686,7 +686,7 @@ font-size: 13.0px; - + @@ -701,117 +701,117 @@ font-size: 13.0px; text { text-rendering: optimizeLegibility; } -#xXxprefixXx4 .plot-title { +#_sample_helper_static_id_prefix_4 .plot-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx4 .plot-subtitle { +#_sample_helper_static_id_prefix_4 .plot-subtitle { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx4 .plot-caption { +#_sample_helper_static_id_prefix_4 .plot-caption { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx4 .hyperlink-element { +#_sample_helper_static_id_prefix_4 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx4 .legend-title { +#_sample_helper_static_id_prefix_4 .legend-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx4 .legend-item { +#_sample_helper_static_id_prefix_4 .legend-item { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx4 .axis-title-x { +#_sample_helper_static_id_prefix_4 .axis-title-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx4 .axis-text-x { +#_sample_helper_static_id_prefix_4 .axis-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx6 .axis-tooltip-text-x { +#_sample_helper_static_id_prefix_6 .axis-tooltip-text-x { fill: #2c7fb8; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx4 .axis-title-y { +#_sample_helper_static_id_prefix_4 .axis-title-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx4 .axis-text-y { +#_sample_helper_static_id_prefix_4 .axis-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx6 .axis-tooltip-text-y { +#_sample_helper_static_id_prefix_6 .axis-tooltip-text-y { fill: #ffffff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx4 .facet-strip-text-x { +#_sample_helper_static_id_prefix_4 .facet-strip-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx4 .facet-strip-text-y { +#_sample_helper_static_id_prefix_4 .facet-strip-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx6 .tooltip-text { +#_sample_helper_static_id_prefix_6 .tooltip-text { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx6 .tooltip-title { +#_sample_helper_static_id_prefix_6 .tooltip-title { fill: #474747; font-weight: bold; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx6 .tooltip-label { +#_sample_helper_static_id_prefix_6 .tooltip-label { fill: #474747; font-weight: bold; font-style: normal;font-family: sans-serif; @@ -820,7 +820,7 @@ font-size: 13.0px; } - + @@ -969,7 +969,7 @@ font-size: 13.0px; - + @@ -1215,7 +1215,7 @@ font-size: 13.0px; - + @@ -1242,7 +1242,7 @@ font-size: 13.0px; - + \ No newline at end of file diff --git a/docs/images/guides/layout/guideStylesAxisTooltip_dark.svg b/docs/images/guides/layout/guideStylesAxisTooltip_dark.svg index 0159419b5..a74a267b2 100644 --- a/docs/images/guides/layout/guideStylesAxisTooltip_dark.svg +++ b/docs/images/guides/layout/guideStylesAxisTooltip_dark.svg @@ -10,54 +10,54 @@ text { text-rendering: optimizeLegibility; } -#xXxprefixXx0 .plot-title { +#_sample_helper_static_id_prefix_0 .plot-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; @@ -71,14 +71,14 @@ font-weight: normal; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; @@ -92,14 +92,14 @@ font-weight: normal; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; @@ -129,7 +129,7 @@ font-size: 13.0px; } - + @@ -145,117 +145,117 @@ font-size: 13.0px; text { text-rendering: optimizeLegibility; } -#xXxprefixXx1 .plot-title { +#_sample_helper_static_id_prefix_1 .plot-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx1 .plot-subtitle { +#_sample_helper_static_id_prefix_1 .plot-subtitle { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx1 .plot-caption { +#_sample_helper_static_id_prefix_1 .plot-caption { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx1 .hyperlink-element { +#_sample_helper_static_id_prefix_1 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx1 .legend-title { +#_sample_helper_static_id_prefix_1 .legend-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx1 .legend-item { +#_sample_helper_static_id_prefix_1 .legend-item { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx1 .axis-title-x { +#_sample_helper_static_id_prefix_1 .axis-title-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx1 .axis-text-x { +#_sample_helper_static_id_prefix_1 .axis-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx3 .axis-tooltip-text-x { +#_sample_helper_static_id_prefix_3 .axis-tooltip-text-x { fill: #303030; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx1 .axis-title-y { +#_sample_helper_static_id_prefix_1 .axis-title-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx1 .axis-text-y { +#_sample_helper_static_id_prefix_1 .axis-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx3 .axis-tooltip-text-y { +#_sample_helper_static_id_prefix_3 .axis-tooltip-text-y { fill: #303030; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx1 .facet-strip-text-x { +#_sample_helper_static_id_prefix_1 .facet-strip-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx1 .facet-strip-text-y { +#_sample_helper_static_id_prefix_1 .facet-strip-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx3 .tooltip-text { +#_sample_helper_static_id_prefix_3 .tooltip-text { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx3 .tooltip-title { +#_sample_helper_static_id_prefix_3 .tooltip-title { fill: #bbbbbb; font-weight: bold; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx3 .tooltip-label { +#_sample_helper_static_id_prefix_3 .tooltip-label { fill: #bbbbbb; font-weight: bold; font-style: normal;font-family: sans-serif; @@ -264,7 +264,7 @@ font-size: 13.0px; } - + @@ -413,7 +413,7 @@ font-size: 13.0px; - + @@ -659,7 +659,7 @@ font-size: 13.0px; - + @@ -686,7 +686,7 @@ font-size: 13.0px; - + @@ -701,117 +701,117 @@ font-size: 13.0px; text { text-rendering: optimizeLegibility; } -#xXxprefixXx4 .plot-title { +#_sample_helper_static_id_prefix_4 .plot-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx4 .plot-subtitle { +#_sample_helper_static_id_prefix_4 .plot-subtitle { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx4 .plot-caption { +#_sample_helper_static_id_prefix_4 .plot-caption { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx4 .hyperlink-element { +#_sample_helper_static_id_prefix_4 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx4 .legend-title { +#_sample_helper_static_id_prefix_4 .legend-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx4 .legend-item { +#_sample_helper_static_id_prefix_4 .legend-item { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx4 .axis-title-x { +#_sample_helper_static_id_prefix_4 .axis-title-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx4 .axis-text-x { +#_sample_helper_static_id_prefix_4 .axis-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx6 .axis-tooltip-text-x { +#_sample_helper_static_id_prefix_6 .axis-tooltip-text-x { fill: #2c7fb8; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx4 .axis-title-y { +#_sample_helper_static_id_prefix_4 .axis-title-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx4 .axis-text-y { +#_sample_helper_static_id_prefix_4 .axis-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx6 .axis-tooltip-text-y { +#_sample_helper_static_id_prefix_6 .axis-tooltip-text-y { fill: #303030; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx4 .facet-strip-text-x { +#_sample_helper_static_id_prefix_4 .facet-strip-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx4 .facet-strip-text-y { +#_sample_helper_static_id_prefix_4 .facet-strip-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx6 .tooltip-text { +#_sample_helper_static_id_prefix_6 .tooltip-text { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx6 .tooltip-title { +#_sample_helper_static_id_prefix_6 .tooltip-title { fill: #bbbbbb; font-weight: bold; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx6 .tooltip-label { +#_sample_helper_static_id_prefix_6 .tooltip-label { fill: #bbbbbb; font-weight: bold; font-style: normal;font-family: sans-serif; @@ -820,7 +820,7 @@ font-size: 13.0px; } - + @@ -969,7 +969,7 @@ font-size: 13.0px; - + @@ -1215,7 +1215,7 @@ font-size: 13.0px; - + @@ -1242,7 +1242,7 @@ font-size: 13.0px; - + \ No newline at end of file diff --git a/docs/images/guides/layout/guideStylesBackgroundPanel.svg b/docs/images/guides/layout/guideStylesBackgroundPanel.svg index cfebbeba1..07d15d687 100644 --- a/docs/images/guides/layout/guideStylesBackgroundPanel.svg +++ b/docs/images/guides/layout/guideStylesBackgroundPanel.svg @@ -10,54 +10,54 @@ text { text-rendering: optimizeLegibility; } -#xXxprefixXx0 .plot-title { +#_sample_helper_static_id_prefix_0 .plot-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; @@ -71,14 +71,14 @@ font-weight: normal; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; @@ -92,14 +92,14 @@ font-weight: normal; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; @@ -129,7 +129,7 @@ font-size: 13.0px; } - + @@ -145,117 +145,117 @@ font-size: 13.0px; text { text-rendering: optimizeLegibility; } -#xXxprefixXx1 .plot-title { +#_sample_helper_static_id_prefix_1 .plot-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx1 .plot-subtitle { +#_sample_helper_static_id_prefix_1 .plot-subtitle { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx1 .plot-caption { +#_sample_helper_static_id_prefix_1 .plot-caption { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx1 .hyperlink-element { +#_sample_helper_static_id_prefix_1 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx1 .legend-title { +#_sample_helper_static_id_prefix_1 .legend-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx1 .legend-item { +#_sample_helper_static_id_prefix_1 .legend-item { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx1 .axis-title-x { +#_sample_helper_static_id_prefix_1 .axis-title-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx1 .axis-text-x { +#_sample_helper_static_id_prefix_1 .axis-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx3 .axis-tooltip-text-x { +#_sample_helper_static_id_prefix_3 .axis-tooltip-text-x { fill: #ffffff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx1 .axis-title-y { +#_sample_helper_static_id_prefix_1 .axis-title-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx1 .axis-text-y { +#_sample_helper_static_id_prefix_1 .axis-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx3 .axis-tooltip-text-y { +#_sample_helper_static_id_prefix_3 .axis-tooltip-text-y { fill: #ffffff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx1 .facet-strip-text-x { +#_sample_helper_static_id_prefix_1 .facet-strip-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx1 .facet-strip-text-y { +#_sample_helper_static_id_prefix_1 .facet-strip-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx3 .tooltip-text { +#_sample_helper_static_id_prefix_3 .tooltip-text { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx3 .tooltip-title { +#_sample_helper_static_id_prefix_3 .tooltip-title { fill: #474747; font-weight: bold; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx3 .tooltip-label { +#_sample_helper_static_id_prefix_3 .tooltip-label { fill: #474747; font-weight: bold; font-style: normal;font-family: sans-serif; @@ -264,7 +264,7 @@ font-size: 13.0px; } - + @@ -413,7 +413,7 @@ font-size: 13.0px; - + @@ -659,7 +659,7 @@ font-size: 13.0px; - + @@ -686,7 +686,7 @@ font-size: 13.0px; - + @@ -701,117 +701,117 @@ font-size: 13.0px; text { text-rendering: optimizeLegibility; } -#xXxprefixXx4 .plot-title { +#_sample_helper_static_id_prefix_4 .plot-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx4 .plot-subtitle { +#_sample_helper_static_id_prefix_4 .plot-subtitle { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx4 .plot-caption { +#_sample_helper_static_id_prefix_4 .plot-caption { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx4 .hyperlink-element { +#_sample_helper_static_id_prefix_4 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx4 .legend-title { +#_sample_helper_static_id_prefix_4 .legend-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx4 .legend-item { +#_sample_helper_static_id_prefix_4 .legend-item { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx4 .axis-title-x { +#_sample_helper_static_id_prefix_4 .axis-title-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx4 .axis-text-x { +#_sample_helper_static_id_prefix_4 .axis-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx6 .axis-tooltip-text-x { +#_sample_helper_static_id_prefix_6 .axis-tooltip-text-x { fill: #ffffff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx4 .axis-title-y { +#_sample_helper_static_id_prefix_4 .axis-title-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx4 .axis-text-y { +#_sample_helper_static_id_prefix_4 .axis-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx6 .axis-tooltip-text-y { +#_sample_helper_static_id_prefix_6 .axis-tooltip-text-y { fill: #ffffff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx4 .facet-strip-text-x { +#_sample_helper_static_id_prefix_4 .facet-strip-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx4 .facet-strip-text-y { +#_sample_helper_static_id_prefix_4 .facet-strip-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx6 .tooltip-text { +#_sample_helper_static_id_prefix_6 .tooltip-text { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx6 .tooltip-title { +#_sample_helper_static_id_prefix_6 .tooltip-title { fill: #474747; font-weight: bold; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx6 .tooltip-label { +#_sample_helper_static_id_prefix_6 .tooltip-label { fill: #474747; font-weight: bold; font-style: normal;font-family: sans-serif; @@ -820,7 +820,7 @@ font-size: 13.0px; } - + @@ -971,7 +971,7 @@ font-size: 13.0px; - + @@ -1217,7 +1217,7 @@ font-size: 13.0px; - + @@ -1246,7 +1246,7 @@ font-size: 13.0px; - + \ No newline at end of file diff --git a/docs/images/guides/layout/guideStylesBackgroundPanel_dark.svg b/docs/images/guides/layout/guideStylesBackgroundPanel_dark.svg index 84eeea6ee..e80688349 100644 --- a/docs/images/guides/layout/guideStylesBackgroundPanel_dark.svg +++ b/docs/images/guides/layout/guideStylesBackgroundPanel_dark.svg @@ -10,54 +10,54 @@ text { text-rendering: optimizeLegibility; } -#xXxprefixXx0 .plot-title { +#_sample_helper_static_id_prefix_0 .plot-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; @@ -71,14 +71,14 @@ font-weight: normal; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; @@ -92,14 +92,14 @@ font-weight: normal; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; @@ -129,7 +129,7 @@ font-size: 13.0px; } - + @@ -145,117 +145,117 @@ font-size: 13.0px; text { text-rendering: optimizeLegibility; } -#xXxprefixXx1 .plot-title { +#_sample_helper_static_id_prefix_1 .plot-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx1 .plot-subtitle { +#_sample_helper_static_id_prefix_1 .plot-subtitle { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx1 .plot-caption { +#_sample_helper_static_id_prefix_1 .plot-caption { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx1 .hyperlink-element { +#_sample_helper_static_id_prefix_1 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx1 .legend-title { +#_sample_helper_static_id_prefix_1 .legend-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx1 .legend-item { +#_sample_helper_static_id_prefix_1 .legend-item { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx1 .axis-title-x { +#_sample_helper_static_id_prefix_1 .axis-title-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx1 .axis-text-x { +#_sample_helper_static_id_prefix_1 .axis-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx3 .axis-tooltip-text-x { +#_sample_helper_static_id_prefix_3 .axis-tooltip-text-x { fill: #303030; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx1 .axis-title-y { +#_sample_helper_static_id_prefix_1 .axis-title-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx1 .axis-text-y { +#_sample_helper_static_id_prefix_1 .axis-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx3 .axis-tooltip-text-y { +#_sample_helper_static_id_prefix_3 .axis-tooltip-text-y { fill: #303030; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx1 .facet-strip-text-x { +#_sample_helper_static_id_prefix_1 .facet-strip-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx1 .facet-strip-text-y { +#_sample_helper_static_id_prefix_1 .facet-strip-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx3 .tooltip-text { +#_sample_helper_static_id_prefix_3 .tooltip-text { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx3 .tooltip-title { +#_sample_helper_static_id_prefix_3 .tooltip-title { fill: #bbbbbb; font-weight: bold; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx3 .tooltip-label { +#_sample_helper_static_id_prefix_3 .tooltip-label { fill: #bbbbbb; font-weight: bold; font-style: normal;font-family: sans-serif; @@ -264,7 +264,7 @@ font-size: 13.0px; } - + @@ -413,7 +413,7 @@ font-size: 13.0px; - + @@ -659,7 +659,7 @@ font-size: 13.0px; - + @@ -686,7 +686,7 @@ font-size: 13.0px; - + @@ -701,117 +701,117 @@ font-size: 13.0px; text { text-rendering: optimizeLegibility; } -#xXxprefixXx4 .plot-title { +#_sample_helper_static_id_prefix_4 .plot-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx4 .plot-subtitle { +#_sample_helper_static_id_prefix_4 .plot-subtitle { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx4 .plot-caption { +#_sample_helper_static_id_prefix_4 .plot-caption { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx4 .hyperlink-element { +#_sample_helper_static_id_prefix_4 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx4 .legend-title { +#_sample_helper_static_id_prefix_4 .legend-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx4 .legend-item { +#_sample_helper_static_id_prefix_4 .legend-item { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx4 .axis-title-x { +#_sample_helper_static_id_prefix_4 .axis-title-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx4 .axis-text-x { +#_sample_helper_static_id_prefix_4 .axis-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx6 .axis-tooltip-text-x { +#_sample_helper_static_id_prefix_6 .axis-tooltip-text-x { fill: #303030; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx4 .axis-title-y { +#_sample_helper_static_id_prefix_4 .axis-title-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx4 .axis-text-y { +#_sample_helper_static_id_prefix_4 .axis-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx6 .axis-tooltip-text-y { +#_sample_helper_static_id_prefix_6 .axis-tooltip-text-y { fill: #303030; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx4 .facet-strip-text-x { +#_sample_helper_static_id_prefix_4 .facet-strip-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx4 .facet-strip-text-y { +#_sample_helper_static_id_prefix_4 .facet-strip-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx6 .tooltip-text { +#_sample_helper_static_id_prefix_6 .tooltip-text { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx6 .tooltip-title { +#_sample_helper_static_id_prefix_6 .tooltip-title { fill: #bbbbbb; font-weight: bold; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx6 .tooltip-label { +#_sample_helper_static_id_prefix_6 .tooltip-label { fill: #bbbbbb; font-weight: bold; font-style: normal;font-family: sans-serif; @@ -820,7 +820,7 @@ font-size: 13.0px; } - + @@ -971,7 +971,7 @@ font-size: 13.0px; - + @@ -1217,7 +1217,7 @@ font-size: 13.0px; - + @@ -1246,7 +1246,7 @@ font-size: 13.0px; - + \ No newline at end of file diff --git a/docs/images/guides/layout/guideStylesBarPlotWithoutStyle.svg b/docs/images/guides/layout/guideStylesBarPlotWithoutStyle.svg index 45e149214..8f57beef4 100644 --- a/docs/images/guides/layout/guideStylesBarPlotWithoutStyle.svg +++ b/docs/images/guides/layout/guideStylesBarPlotWithoutStyle.svg @@ -10,117 +10,117 @@ text { text-rendering: optimizeLegibility; } -#xXxprefixXx0 .plot-title { +#_sample_helper_static_id_prefix_0 .plot-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-x { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-x { fill: #ffffff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-y { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-y { fill: #ffffff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-text { +#_sample_helper_static_id_prefix_2 .tooltip-text { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-title { +#_sample_helper_static_id_prefix_2 .tooltip-title { fill: #474747; font-weight: bold; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-label { +#_sample_helper_static_id_prefix_2 .tooltip-label { fill: #474747; font-weight: bold; font-style: normal;font-family: sans-serif; @@ -129,7 +129,7 @@ font-size: 13.0px; } - + @@ -171,7 +171,7 @@ font-size: 13.0px; - + @@ -189,7 +189,7 @@ font-size: 13.0px; - + @@ -413,6 +413,6 @@ font-size: 13.0px; - + \ No newline at end of file diff --git a/docs/images/guides/layout/guideStylesBarPlotWithoutStyle_dark.svg b/docs/images/guides/layout/guideStylesBarPlotWithoutStyle_dark.svg index 8affbe1c8..4cc4a7dd4 100644 --- a/docs/images/guides/layout/guideStylesBarPlotWithoutStyle_dark.svg +++ b/docs/images/guides/layout/guideStylesBarPlotWithoutStyle_dark.svg @@ -10,117 +10,117 @@ text { text-rendering: optimizeLegibility; } -#xXxprefixXx0 .plot-title { +#_sample_helper_static_id_prefix_0 .plot-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-x { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-x { fill: #303030; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-y { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-y { fill: #303030; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-text { +#_sample_helper_static_id_prefix_2 .tooltip-text { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-title { +#_sample_helper_static_id_prefix_2 .tooltip-title { fill: #bbbbbb; font-weight: bold; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-label { +#_sample_helper_static_id_prefix_2 .tooltip-label { fill: #bbbbbb; font-weight: bold; font-style: normal;font-family: sans-serif; @@ -129,7 +129,7 @@ font-size: 13.0px; } - + @@ -285,7 +285,7 @@ font-size: 13.0px; - + @@ -303,7 +303,7 @@ font-size: 13.0px; - + @@ -413,6 +413,6 @@ font-size: 13.0px; - + \ No newline at end of file diff --git a/docs/images/guides/layout/guideStylesBarsFacetGridX.svg b/docs/images/guides/layout/guideStylesBarsFacetGridX.svg index f4f0b6a26..5d53c1752 100644 --- a/docs/images/guides/layout/guideStylesBarsFacetGridX.svg +++ b/docs/images/guides/layout/guideStylesBarsFacetGridX.svg @@ -10,117 +10,117 @@ text { text-rendering: optimizeLegibility; } -#xXxprefixXx0 .plot-title { +#_sample_helper_static_id_prefix_0 .plot-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx3 .axis-tooltip-text-x { +#_sample_helper_static_id_prefix_3 .axis-tooltip-text-x { fill: #ffffff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx3 .axis-tooltip-text-y { +#_sample_helper_static_id_prefix_3 .axis-tooltip-text-y { fill: #ffffff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx3 .tooltip-text { +#_sample_helper_static_id_prefix_3 .tooltip-text { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx3 .tooltip-title { +#_sample_helper_static_id_prefix_3 .tooltip-title { fill: #474747; font-weight: bold; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx3 .tooltip-label { +#_sample_helper_static_id_prefix_3 .tooltip-label { fill: #474747; font-weight: bold; font-style: normal;font-family: sans-serif; @@ -129,7 +129,7 @@ font-size: 13.0px; } - + @@ -173,7 +173,7 @@ font-size: 13.0px; - + @@ -187,7 +187,7 @@ font-size: 13.0px; - + @@ -363,7 +363,7 @@ font-size: 13.0px; - + @@ -381,7 +381,7 @@ font-size: 13.0px; - + @@ -547,6 +547,6 @@ font-size: 13.0px; - + \ No newline at end of file diff --git a/docs/images/guides/layout/guideStylesBarsFacetGridX_dark.svg b/docs/images/guides/layout/guideStylesBarsFacetGridX_dark.svg index 6ed8dda25..a864c84fd 100644 --- a/docs/images/guides/layout/guideStylesBarsFacetGridX_dark.svg +++ b/docs/images/guides/layout/guideStylesBarsFacetGridX_dark.svg @@ -10,117 +10,117 @@ text { text-rendering: optimizeLegibility; } -#xXxprefixXx0 .plot-title { +#_sample_helper_static_id_prefix_0 .plot-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx3 .axis-tooltip-text-x { +#_sample_helper_static_id_prefix_3 .axis-tooltip-text-x { fill: #303030; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx3 .axis-tooltip-text-y { +#_sample_helper_static_id_prefix_3 .axis-tooltip-text-y { fill: #303030; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx3 .tooltip-text { +#_sample_helper_static_id_prefix_3 .tooltip-text { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx3 .tooltip-title { +#_sample_helper_static_id_prefix_3 .tooltip-title { fill: #bbbbbb; font-weight: bold; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx3 .tooltip-label { +#_sample_helper_static_id_prefix_3 .tooltip-label { fill: #bbbbbb; font-weight: bold; font-style: normal;font-family: sans-serif; @@ -129,7 +129,7 @@ font-size: 13.0px; } - + @@ -294,7 +294,7 @@ font-size: 13.0px; - + @@ -308,7 +308,7 @@ font-size: 13.0px; - + @@ -414,7 +414,7 @@ font-size: 13.0px; - + @@ -432,7 +432,7 @@ font-size: 13.0px; - + @@ -547,6 +547,6 @@ font-size: 13.0px; - + \ No newline at end of file diff --git a/docs/images/guides/layout/guideStylesBlankAxis.svg b/docs/images/guides/layout/guideStylesBlankAxis.svg index 79bb3baa7..1292f35e9 100644 --- a/docs/images/guides/layout/guideStylesBlankAxis.svg +++ b/docs/images/guides/layout/guideStylesBlankAxis.svg @@ -10,54 +10,54 @@ text { text-rendering: optimizeLegibility; } -#xXxprefixXx0 .plot-title { +#_sample_helper_static_id_prefix_0 .plot-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; @@ -71,14 +71,14 @@ font-weight: normal; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; @@ -92,14 +92,14 @@ font-weight: normal; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; @@ -129,7 +129,7 @@ font-size: 13.0px; } - + @@ -145,117 +145,117 @@ font-size: 13.0px; text { text-rendering: optimizeLegibility; } -#xXxprefixXx1 .plot-title { +#_sample_helper_static_id_prefix_1 .plot-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx1 .plot-subtitle { +#_sample_helper_static_id_prefix_1 .plot-subtitle { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx1 .plot-caption { +#_sample_helper_static_id_prefix_1 .plot-caption { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx1 .hyperlink-element { +#_sample_helper_static_id_prefix_1 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx1 .legend-title { +#_sample_helper_static_id_prefix_1 .legend-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx1 .legend-item { +#_sample_helper_static_id_prefix_1 .legend-item { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx1 .axis-title-x { +#_sample_helper_static_id_prefix_1 .axis-title-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx1 .axis-text-x { +#_sample_helper_static_id_prefix_1 .axis-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx3 .axis-tooltip-text-x { +#_sample_helper_static_id_prefix_3 .axis-tooltip-text-x { fill: #ffffff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx1 .axis-title-y { +#_sample_helper_static_id_prefix_1 .axis-title-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx1 .axis-text-y { +#_sample_helper_static_id_prefix_1 .axis-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx3 .axis-tooltip-text-y { +#_sample_helper_static_id_prefix_3 .axis-tooltip-text-y { fill: #ffffff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx1 .facet-strip-text-x { +#_sample_helper_static_id_prefix_1 .facet-strip-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx1 .facet-strip-text-y { +#_sample_helper_static_id_prefix_1 .facet-strip-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx3 .tooltip-text { +#_sample_helper_static_id_prefix_3 .tooltip-text { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx3 .tooltip-title { +#_sample_helper_static_id_prefix_3 .tooltip-title { fill: #474747; font-weight: bold; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx3 .tooltip-label { +#_sample_helper_static_id_prefix_3 .tooltip-label { fill: #474747; font-weight: bold; font-style: normal;font-family: sans-serif; @@ -264,7 +264,7 @@ font-size: 13.0px; } - + @@ -413,7 +413,7 @@ font-size: 13.0px; - + @@ -659,7 +659,7 @@ font-size: 13.0px; - + @@ -686,7 +686,7 @@ font-size: 13.0px; - + @@ -701,117 +701,117 @@ font-size: 13.0px; text { text-rendering: optimizeLegibility; } -#xXxprefixXx4 .plot-title { +#_sample_helper_static_id_prefix_4 .plot-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx4 .plot-subtitle { +#_sample_helper_static_id_prefix_4 .plot-subtitle { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx4 .plot-caption { +#_sample_helper_static_id_prefix_4 .plot-caption { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx4 .hyperlink-element { +#_sample_helper_static_id_prefix_4 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx4 .legend-title { +#_sample_helper_static_id_prefix_4 .legend-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx4 .legend-item { +#_sample_helper_static_id_prefix_4 .legend-item { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx4 .axis-title-x { +#_sample_helper_static_id_prefix_4 .axis-title-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx4 .axis-text-x { +#_sample_helper_static_id_prefix_4 .axis-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx6 .axis-tooltip-text-x { +#_sample_helper_static_id_prefix_6 .axis-tooltip-text-x { fill: #ffffff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx4 .axis-title-y { +#_sample_helper_static_id_prefix_4 .axis-title-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx4 .axis-text-y { +#_sample_helper_static_id_prefix_4 .axis-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx6 .axis-tooltip-text-y { +#_sample_helper_static_id_prefix_6 .axis-tooltip-text-y { fill: #ffffff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx4 .facet-strip-text-x { +#_sample_helper_static_id_prefix_4 .facet-strip-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx4 .facet-strip-text-y { +#_sample_helper_static_id_prefix_4 .facet-strip-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx6 .tooltip-text { +#_sample_helper_static_id_prefix_6 .tooltip-text { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx6 .tooltip-title { +#_sample_helper_static_id_prefix_6 .tooltip-title { fill: #474747; font-weight: bold; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx6 .tooltip-label { +#_sample_helper_static_id_prefix_6 .tooltip-label { fill: #474747; font-weight: bold; font-style: normal;font-family: sans-serif; @@ -820,7 +820,7 @@ font-size: 13.0px; } - + @@ -967,7 +967,7 @@ font-size: 13.0px; - + @@ -1213,7 +1213,7 @@ font-size: 13.0px; - + @@ -1240,7 +1240,7 @@ font-size: 13.0px; - + \ No newline at end of file diff --git a/docs/images/guides/layout/guideStylesBlankAxis_dark.svg b/docs/images/guides/layout/guideStylesBlankAxis_dark.svg index 09b9f4463..123d167ac 100644 --- a/docs/images/guides/layout/guideStylesBlankAxis_dark.svg +++ b/docs/images/guides/layout/guideStylesBlankAxis_dark.svg @@ -10,54 +10,54 @@ text { text-rendering: optimizeLegibility; } -#xXxprefixXx0 .plot-title { +#_sample_helper_static_id_prefix_0 .plot-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; @@ -71,14 +71,14 @@ font-weight: normal; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; @@ -92,14 +92,14 @@ font-weight: normal; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; @@ -129,7 +129,7 @@ font-size: 13.0px; } - + @@ -145,117 +145,117 @@ font-size: 13.0px; text { text-rendering: optimizeLegibility; } -#xXxprefixXx1 .plot-title { +#_sample_helper_static_id_prefix_1 .plot-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx1 .plot-subtitle { +#_sample_helper_static_id_prefix_1 .plot-subtitle { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx1 .plot-caption { +#_sample_helper_static_id_prefix_1 .plot-caption { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx1 .hyperlink-element { +#_sample_helper_static_id_prefix_1 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx1 .legend-title { +#_sample_helper_static_id_prefix_1 .legend-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx1 .legend-item { +#_sample_helper_static_id_prefix_1 .legend-item { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx1 .axis-title-x { +#_sample_helper_static_id_prefix_1 .axis-title-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx1 .axis-text-x { +#_sample_helper_static_id_prefix_1 .axis-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx3 .axis-tooltip-text-x { +#_sample_helper_static_id_prefix_3 .axis-tooltip-text-x { fill: #303030; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx1 .axis-title-y { +#_sample_helper_static_id_prefix_1 .axis-title-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx1 .axis-text-y { +#_sample_helper_static_id_prefix_1 .axis-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx3 .axis-tooltip-text-y { +#_sample_helper_static_id_prefix_3 .axis-tooltip-text-y { fill: #303030; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx1 .facet-strip-text-x { +#_sample_helper_static_id_prefix_1 .facet-strip-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx1 .facet-strip-text-y { +#_sample_helper_static_id_prefix_1 .facet-strip-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx3 .tooltip-text { +#_sample_helper_static_id_prefix_3 .tooltip-text { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx3 .tooltip-title { +#_sample_helper_static_id_prefix_3 .tooltip-title { fill: #bbbbbb; font-weight: bold; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx3 .tooltip-label { +#_sample_helper_static_id_prefix_3 .tooltip-label { fill: #bbbbbb; font-weight: bold; font-style: normal;font-family: sans-serif; @@ -264,7 +264,7 @@ font-size: 13.0px; } - + @@ -413,7 +413,7 @@ font-size: 13.0px; - + @@ -659,7 +659,7 @@ font-size: 13.0px; - + @@ -686,7 +686,7 @@ font-size: 13.0px; - + @@ -701,117 +701,117 @@ font-size: 13.0px; text { text-rendering: optimizeLegibility; } -#xXxprefixXx4 .plot-title { +#_sample_helper_static_id_prefix_4 .plot-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx4 .plot-subtitle { +#_sample_helper_static_id_prefix_4 .plot-subtitle { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx4 .plot-caption { +#_sample_helper_static_id_prefix_4 .plot-caption { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx4 .hyperlink-element { +#_sample_helper_static_id_prefix_4 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx4 .legend-title { +#_sample_helper_static_id_prefix_4 .legend-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx4 .legend-item { +#_sample_helper_static_id_prefix_4 .legend-item { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx4 .axis-title-x { +#_sample_helper_static_id_prefix_4 .axis-title-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx4 .axis-text-x { +#_sample_helper_static_id_prefix_4 .axis-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx6 .axis-tooltip-text-x { +#_sample_helper_static_id_prefix_6 .axis-tooltip-text-x { fill: #303030; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx4 .axis-title-y { +#_sample_helper_static_id_prefix_4 .axis-title-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx4 .axis-text-y { +#_sample_helper_static_id_prefix_4 .axis-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx6 .axis-tooltip-text-y { +#_sample_helper_static_id_prefix_6 .axis-tooltip-text-y { fill: #303030; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx4 .facet-strip-text-x { +#_sample_helper_static_id_prefix_4 .facet-strip-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx4 .facet-strip-text-y { +#_sample_helper_static_id_prefix_4 .facet-strip-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx6 .tooltip-text { +#_sample_helper_static_id_prefix_6 .tooltip-text { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx6 .tooltip-title { +#_sample_helper_static_id_prefix_6 .tooltip-title { fill: #bbbbbb; font-weight: bold; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx6 .tooltip-label { +#_sample_helper_static_id_prefix_6 .tooltip-label { fill: #bbbbbb; font-weight: bold; font-style: normal;font-family: sans-serif; @@ -820,7 +820,7 @@ font-size: 13.0px; } - + @@ -967,7 +967,7 @@ font-size: 13.0px; - + @@ -1213,7 +1213,7 @@ font-size: 13.0px; - + @@ -1240,7 +1240,7 @@ font-size: 13.0px; - + \ No newline at end of file diff --git a/docs/images/guides/layout/guideStylesConfigureBackgroundGrid.svg b/docs/images/guides/layout/guideStylesConfigureBackgroundGrid.svg index 65f82f074..3bafb1b1e 100644 --- a/docs/images/guides/layout/guideStylesConfigureBackgroundGrid.svg +++ b/docs/images/guides/layout/guideStylesConfigureBackgroundGrid.svg @@ -10,54 +10,54 @@ text { text-rendering: optimizeLegibility; } -#xXxprefixXx0 .plot-title { +#_sample_helper_static_id_prefix_0 .plot-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; @@ -71,14 +71,14 @@ font-weight: normal; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; @@ -92,14 +92,14 @@ font-weight: normal; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; @@ -129,7 +129,7 @@ font-size: 13.0px; } - + @@ -145,117 +145,117 @@ font-size: 13.0px; text { text-rendering: optimizeLegibility; } -#xXxprefixXx1 .plot-title { +#_sample_helper_static_id_prefix_1 .plot-title { fill: #0000ff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx1 .plot-subtitle { +#_sample_helper_static_id_prefix_1 .plot-subtitle { fill: #0000ff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx1 .plot-caption { +#_sample_helper_static_id_prefix_1 .plot-caption { fill: #0000ff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx1 .hyperlink-element { +#_sample_helper_static_id_prefix_1 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx1 .legend-title { +#_sample_helper_static_id_prefix_1 .legend-title { fill: #0000ff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx1 .legend-item { +#_sample_helper_static_id_prefix_1 .legend-item { fill: #0000ff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx1 .axis-title-x { +#_sample_helper_static_id_prefix_1 .axis-title-x { fill: #0000ff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx1 .axis-text-x { +#_sample_helper_static_id_prefix_1 .axis-text-x { fill: #0000ff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx3 .axis-tooltip-text-x { +#_sample_helper_static_id_prefix_3 .axis-tooltip-text-x { fill: #0000ff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx1 .axis-title-y { +#_sample_helper_static_id_prefix_1 .axis-title-y { fill: #0000ff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx1 .axis-text-y { +#_sample_helper_static_id_prefix_1 .axis-text-y { fill: #0000ff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx3 .axis-tooltip-text-y { +#_sample_helper_static_id_prefix_3 .axis-tooltip-text-y { fill: #0000ff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx1 .facet-strip-text-x { +#_sample_helper_static_id_prefix_1 .facet-strip-text-x { fill: #0000ff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx1 .facet-strip-text-y { +#_sample_helper_static_id_prefix_1 .facet-strip-text-y { fill: #0000ff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx3 .tooltip-text { +#_sample_helper_static_id_prefix_3 .tooltip-text { fill: #0000ff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx3 .tooltip-title { +#_sample_helper_static_id_prefix_3 .tooltip-title { fill: #0000ff; font-weight: bold; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx3 .tooltip-label { +#_sample_helper_static_id_prefix_3 .tooltip-label { fill: #0000ff; font-weight: bold; font-style: normal;font-family: sans-serif; @@ -264,7 +264,7 @@ font-size: 13.0px; } - + @@ -470,7 +470,7 @@ font-size: 13.0px; - + @@ -488,7 +488,7 @@ font-size: 13.0px; - + @@ -615,7 +615,7 @@ font-size: 13.0px; - + @@ -630,117 +630,117 @@ font-size: 13.0px; text { text-rendering: optimizeLegibility; } -#xXxprefixXx4 .plot-title { +#_sample_helper_static_id_prefix_4 .plot-title { fill: #0000ff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx4 .plot-subtitle { +#_sample_helper_static_id_prefix_4 .plot-subtitle { fill: #0000ff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx4 .plot-caption { +#_sample_helper_static_id_prefix_4 .plot-caption { fill: #0000ff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx4 .hyperlink-element { +#_sample_helper_static_id_prefix_4 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx4 .legend-title { +#_sample_helper_static_id_prefix_4 .legend-title { fill: #0000ff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx4 .legend-item { +#_sample_helper_static_id_prefix_4 .legend-item { fill: #0000ff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx4 .axis-title-x { +#_sample_helper_static_id_prefix_4 .axis-title-x { fill: #0000ff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx4 .axis-text-x { +#_sample_helper_static_id_prefix_4 .axis-text-x { fill: #0000ff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx6 .axis-tooltip-text-x { +#_sample_helper_static_id_prefix_6 .axis-tooltip-text-x { fill: #0000ff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx4 .axis-title-y { +#_sample_helper_static_id_prefix_4 .axis-title-y { fill: #0000ff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx4 .axis-text-y { +#_sample_helper_static_id_prefix_4 .axis-text-y { fill: #0000ff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx6 .axis-tooltip-text-y { +#_sample_helper_static_id_prefix_6 .axis-tooltip-text-y { fill: #0000ff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx4 .facet-strip-text-x { +#_sample_helper_static_id_prefix_4 .facet-strip-text-x { fill: #0000ff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx4 .facet-strip-text-y { +#_sample_helper_static_id_prefix_4 .facet-strip-text-y { fill: #0000ff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx6 .tooltip-text { +#_sample_helper_static_id_prefix_6 .tooltip-text { fill: #0000ff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx6 .tooltip-title { +#_sample_helper_static_id_prefix_6 .tooltip-title { fill: #0000ff; font-weight: bold; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx6 .tooltip-label { +#_sample_helper_static_id_prefix_6 .tooltip-label { fill: #0000ff; font-weight: bold; font-style: normal;font-family: sans-serif; @@ -749,7 +749,7 @@ font-size: 13.0px; } - + @@ -955,7 +955,7 @@ font-size: 13.0px; - + @@ -973,7 +973,7 @@ font-size: 13.0px; - + @@ -1100,7 +1100,7 @@ font-size: 13.0px; - + \ No newline at end of file diff --git a/docs/images/guides/layout/guideStylesConfigureBackgroundGrid_dark.svg b/docs/images/guides/layout/guideStylesConfigureBackgroundGrid_dark.svg index 32610a3b7..3e3084021 100644 --- a/docs/images/guides/layout/guideStylesConfigureBackgroundGrid_dark.svg +++ b/docs/images/guides/layout/guideStylesConfigureBackgroundGrid_dark.svg @@ -10,54 +10,54 @@ text { text-rendering: optimizeLegibility; } -#xXxprefixXx0 .plot-title { +#_sample_helper_static_id_prefix_0 .plot-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; @@ -71,14 +71,14 @@ font-weight: normal; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; @@ -92,14 +92,14 @@ font-weight: normal; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; @@ -129,7 +129,7 @@ font-size: 13.0px; } - + @@ -145,117 +145,117 @@ font-size: 13.0px; text { text-rendering: optimizeLegibility; } -#xXxprefixXx1 .plot-title { +#_sample_helper_static_id_prefix_1 .plot-title { fill: #0000ff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx1 .plot-subtitle { +#_sample_helper_static_id_prefix_1 .plot-subtitle { fill: #0000ff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx1 .plot-caption { +#_sample_helper_static_id_prefix_1 .plot-caption { fill: #0000ff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx1 .hyperlink-element { +#_sample_helper_static_id_prefix_1 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx1 .legend-title { +#_sample_helper_static_id_prefix_1 .legend-title { fill: #0000ff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx1 .legend-item { +#_sample_helper_static_id_prefix_1 .legend-item { fill: #0000ff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx1 .axis-title-x { +#_sample_helper_static_id_prefix_1 .axis-title-x { fill: #0000ff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx1 .axis-text-x { +#_sample_helper_static_id_prefix_1 .axis-text-x { fill: #0000ff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx3 .axis-tooltip-text-x { +#_sample_helper_static_id_prefix_3 .axis-tooltip-text-x { fill: #0000ff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx1 .axis-title-y { +#_sample_helper_static_id_prefix_1 .axis-title-y { fill: #0000ff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx1 .axis-text-y { +#_sample_helper_static_id_prefix_1 .axis-text-y { fill: #0000ff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx3 .axis-tooltip-text-y { +#_sample_helper_static_id_prefix_3 .axis-tooltip-text-y { fill: #0000ff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx1 .facet-strip-text-x { +#_sample_helper_static_id_prefix_1 .facet-strip-text-x { fill: #0000ff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx1 .facet-strip-text-y { +#_sample_helper_static_id_prefix_1 .facet-strip-text-y { fill: #0000ff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx3 .tooltip-text { +#_sample_helper_static_id_prefix_3 .tooltip-text { fill: #0000ff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx3 .tooltip-title { +#_sample_helper_static_id_prefix_3 .tooltip-title { fill: #0000ff; font-weight: bold; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx3 .tooltip-label { +#_sample_helper_static_id_prefix_3 .tooltip-label { fill: #0000ff; font-weight: bold; font-style: normal;font-family: sans-serif; @@ -264,7 +264,7 @@ font-size: 13.0px; } - + @@ -470,7 +470,7 @@ font-size: 13.0px; - + @@ -488,7 +488,7 @@ font-size: 13.0px; - + @@ -615,7 +615,7 @@ font-size: 13.0px; - + @@ -630,117 +630,117 @@ font-size: 13.0px; text { text-rendering: optimizeLegibility; } -#xXxprefixXx4 .plot-title { +#_sample_helper_static_id_prefix_4 .plot-title { fill: #0000ff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx4 .plot-subtitle { +#_sample_helper_static_id_prefix_4 .plot-subtitle { fill: #0000ff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx4 .plot-caption { +#_sample_helper_static_id_prefix_4 .plot-caption { fill: #0000ff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx4 .hyperlink-element { +#_sample_helper_static_id_prefix_4 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx4 .legend-title { +#_sample_helper_static_id_prefix_4 .legend-title { fill: #0000ff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx4 .legend-item { +#_sample_helper_static_id_prefix_4 .legend-item { fill: #0000ff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx4 .axis-title-x { +#_sample_helper_static_id_prefix_4 .axis-title-x { fill: #0000ff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx4 .axis-text-x { +#_sample_helper_static_id_prefix_4 .axis-text-x { fill: #0000ff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx6 .axis-tooltip-text-x { +#_sample_helper_static_id_prefix_6 .axis-tooltip-text-x { fill: #0000ff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx4 .axis-title-y { +#_sample_helper_static_id_prefix_4 .axis-title-y { fill: #0000ff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx4 .axis-text-y { +#_sample_helper_static_id_prefix_4 .axis-text-y { fill: #0000ff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx6 .axis-tooltip-text-y { +#_sample_helper_static_id_prefix_6 .axis-tooltip-text-y { fill: #0000ff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx4 .facet-strip-text-x { +#_sample_helper_static_id_prefix_4 .facet-strip-text-x { fill: #0000ff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx4 .facet-strip-text-y { +#_sample_helper_static_id_prefix_4 .facet-strip-text-y { fill: #0000ff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx6 .tooltip-text { +#_sample_helper_static_id_prefix_6 .tooltip-text { fill: #0000ff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx6 .tooltip-title { +#_sample_helper_static_id_prefix_6 .tooltip-title { fill: #0000ff; font-weight: bold; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx6 .tooltip-label { +#_sample_helper_static_id_prefix_6 .tooltip-label { fill: #0000ff; font-weight: bold; font-style: normal;font-family: sans-serif; @@ -749,7 +749,7 @@ font-size: 13.0px; } - + @@ -955,7 +955,7 @@ font-size: 13.0px; - + @@ -973,7 +973,7 @@ font-size: 13.0px; - + @@ -1100,7 +1100,7 @@ font-size: 13.0px; - + \ No newline at end of file diff --git a/docs/images/guides/layout/guideStylesConfigureGridLine.svg b/docs/images/guides/layout/guideStylesConfigureGridLine.svg index 8e615b848..f714051ec 100644 --- a/docs/images/guides/layout/guideStylesConfigureGridLine.svg +++ b/docs/images/guides/layout/guideStylesConfigureGridLine.svg @@ -10,54 +10,54 @@ text { text-rendering: optimizeLegibility; } -#xXxprefixXx0 .plot-title { +#_sample_helper_static_id_prefix_0 .plot-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; @@ -71,14 +71,14 @@ font-weight: normal; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; @@ -92,14 +92,14 @@ font-weight: normal; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; @@ -129,7 +129,7 @@ font-size: 13.0px; } - + @@ -145,117 +145,117 @@ font-size: 13.0px; text { text-rendering: optimizeLegibility; } -#xXxprefixXx1 .plot-title { +#_sample_helper_static_id_prefix_1 .plot-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx1 .plot-subtitle { +#_sample_helper_static_id_prefix_1 .plot-subtitle { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx1 .plot-caption { +#_sample_helper_static_id_prefix_1 .plot-caption { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx1 .hyperlink-element { +#_sample_helper_static_id_prefix_1 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx1 .legend-title { +#_sample_helper_static_id_prefix_1 .legend-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx1 .legend-item { +#_sample_helper_static_id_prefix_1 .legend-item { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx1 .axis-title-x { +#_sample_helper_static_id_prefix_1 .axis-title-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx1 .axis-text-x { +#_sample_helper_static_id_prefix_1 .axis-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx3 .axis-tooltip-text-x { +#_sample_helper_static_id_prefix_3 .axis-tooltip-text-x { fill: #ffffff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx1 .axis-title-y { +#_sample_helper_static_id_prefix_1 .axis-title-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx1 .axis-text-y { +#_sample_helper_static_id_prefix_1 .axis-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx3 .axis-tooltip-text-y { +#_sample_helper_static_id_prefix_3 .axis-tooltip-text-y { fill: #ffffff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx1 .facet-strip-text-x { +#_sample_helper_static_id_prefix_1 .facet-strip-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx1 .facet-strip-text-y { +#_sample_helper_static_id_prefix_1 .facet-strip-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx3 .tooltip-text { +#_sample_helper_static_id_prefix_3 .tooltip-text { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx3 .tooltip-title { +#_sample_helper_static_id_prefix_3 .tooltip-title { fill: #474747; font-weight: bold; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx3 .tooltip-label { +#_sample_helper_static_id_prefix_3 .tooltip-label { fill: #474747; font-weight: bold; font-style: normal;font-family: sans-serif; @@ -264,7 +264,7 @@ font-size: 13.0px; } - + @@ -413,7 +413,7 @@ font-size: 13.0px; - + @@ -659,7 +659,7 @@ font-size: 13.0px; - + @@ -686,7 +686,7 @@ font-size: 13.0px; - + @@ -701,117 +701,117 @@ font-size: 13.0px; text { text-rendering: optimizeLegibility; } -#xXxprefixXx4 .plot-title { +#_sample_helper_static_id_prefix_4 .plot-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx4 .plot-subtitle { +#_sample_helper_static_id_prefix_4 .plot-subtitle { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx4 .plot-caption { +#_sample_helper_static_id_prefix_4 .plot-caption { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx4 .hyperlink-element { +#_sample_helper_static_id_prefix_4 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx4 .legend-title { +#_sample_helper_static_id_prefix_4 .legend-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx4 .legend-item { +#_sample_helper_static_id_prefix_4 .legend-item { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx4 .axis-title-x { +#_sample_helper_static_id_prefix_4 .axis-title-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx4 .axis-text-x { +#_sample_helper_static_id_prefix_4 .axis-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx6 .axis-tooltip-text-x { +#_sample_helper_static_id_prefix_6 .axis-tooltip-text-x { fill: #ffffff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx4 .axis-title-y { +#_sample_helper_static_id_prefix_4 .axis-title-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx4 .axis-text-y { +#_sample_helper_static_id_prefix_4 .axis-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx6 .axis-tooltip-text-y { +#_sample_helper_static_id_prefix_6 .axis-tooltip-text-y { fill: #ffffff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx4 .facet-strip-text-x { +#_sample_helper_static_id_prefix_4 .facet-strip-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx4 .facet-strip-text-y { +#_sample_helper_static_id_prefix_4 .facet-strip-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx6 .tooltip-text { +#_sample_helper_static_id_prefix_6 .tooltip-text { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx6 .tooltip-title { +#_sample_helper_static_id_prefix_6 .tooltip-title { fill: #474747; font-weight: bold; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx6 .tooltip-label { +#_sample_helper_static_id_prefix_6 .tooltip-label { fill: #474747; font-weight: bold; font-style: normal;font-family: sans-serif; @@ -820,7 +820,7 @@ font-size: 13.0px; } - + @@ -969,7 +969,7 @@ font-size: 13.0px; - + @@ -1215,7 +1215,7 @@ font-size: 13.0px; - + @@ -1242,7 +1242,7 @@ font-size: 13.0px; - + \ No newline at end of file diff --git a/docs/images/guides/layout/guideStylesConfigureGridLine_dark.svg b/docs/images/guides/layout/guideStylesConfigureGridLine_dark.svg index 220c91e43..c5e4f38d0 100644 --- a/docs/images/guides/layout/guideStylesConfigureGridLine_dark.svg +++ b/docs/images/guides/layout/guideStylesConfigureGridLine_dark.svg @@ -10,54 +10,54 @@ text { text-rendering: optimizeLegibility; } -#xXxprefixXx0 .plot-title { +#_sample_helper_static_id_prefix_0 .plot-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; @@ -71,14 +71,14 @@ font-weight: normal; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; @@ -92,14 +92,14 @@ font-weight: normal; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; @@ -129,7 +129,7 @@ font-size: 13.0px; } - + @@ -145,117 +145,117 @@ font-size: 13.0px; text { text-rendering: optimizeLegibility; } -#xXxprefixXx1 .plot-title { +#_sample_helper_static_id_prefix_1 .plot-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx1 .plot-subtitle { +#_sample_helper_static_id_prefix_1 .plot-subtitle { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx1 .plot-caption { +#_sample_helper_static_id_prefix_1 .plot-caption { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx1 .hyperlink-element { +#_sample_helper_static_id_prefix_1 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx1 .legend-title { +#_sample_helper_static_id_prefix_1 .legend-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx1 .legend-item { +#_sample_helper_static_id_prefix_1 .legend-item { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx1 .axis-title-x { +#_sample_helper_static_id_prefix_1 .axis-title-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx1 .axis-text-x { +#_sample_helper_static_id_prefix_1 .axis-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx3 .axis-tooltip-text-x { +#_sample_helper_static_id_prefix_3 .axis-tooltip-text-x { fill: #303030; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx1 .axis-title-y { +#_sample_helper_static_id_prefix_1 .axis-title-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx1 .axis-text-y { +#_sample_helper_static_id_prefix_1 .axis-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx3 .axis-tooltip-text-y { +#_sample_helper_static_id_prefix_3 .axis-tooltip-text-y { fill: #303030; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx1 .facet-strip-text-x { +#_sample_helper_static_id_prefix_1 .facet-strip-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx1 .facet-strip-text-y { +#_sample_helper_static_id_prefix_1 .facet-strip-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx3 .tooltip-text { +#_sample_helper_static_id_prefix_3 .tooltip-text { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx3 .tooltip-title { +#_sample_helper_static_id_prefix_3 .tooltip-title { fill: #bbbbbb; font-weight: bold; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx3 .tooltip-label { +#_sample_helper_static_id_prefix_3 .tooltip-label { fill: #bbbbbb; font-weight: bold; font-style: normal;font-family: sans-serif; @@ -264,7 +264,7 @@ font-size: 13.0px; } - + @@ -413,7 +413,7 @@ font-size: 13.0px; - + @@ -659,7 +659,7 @@ font-size: 13.0px; - + @@ -686,7 +686,7 @@ font-size: 13.0px; - + @@ -701,117 +701,117 @@ font-size: 13.0px; text { text-rendering: optimizeLegibility; } -#xXxprefixXx4 .plot-title { +#_sample_helper_static_id_prefix_4 .plot-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx4 .plot-subtitle { +#_sample_helper_static_id_prefix_4 .plot-subtitle { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx4 .plot-caption { +#_sample_helper_static_id_prefix_4 .plot-caption { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx4 .hyperlink-element { +#_sample_helper_static_id_prefix_4 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx4 .legend-title { +#_sample_helper_static_id_prefix_4 .legend-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx4 .legend-item { +#_sample_helper_static_id_prefix_4 .legend-item { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx4 .axis-title-x { +#_sample_helper_static_id_prefix_4 .axis-title-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx4 .axis-text-x { +#_sample_helper_static_id_prefix_4 .axis-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx6 .axis-tooltip-text-x { +#_sample_helper_static_id_prefix_6 .axis-tooltip-text-x { fill: #303030; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx4 .axis-title-y { +#_sample_helper_static_id_prefix_4 .axis-title-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx4 .axis-text-y { +#_sample_helper_static_id_prefix_4 .axis-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx6 .axis-tooltip-text-y { +#_sample_helper_static_id_prefix_6 .axis-tooltip-text-y { fill: #303030; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx4 .facet-strip-text-x { +#_sample_helper_static_id_prefix_4 .facet-strip-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx4 .facet-strip-text-y { +#_sample_helper_static_id_prefix_4 .facet-strip-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx6 .tooltip-text { +#_sample_helper_static_id_prefix_6 .tooltip-text { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx6 .tooltip-title { +#_sample_helper_static_id_prefix_6 .tooltip-title { fill: #bbbbbb; font-weight: bold; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx6 .tooltip-label { +#_sample_helper_static_id_prefix_6 .tooltip-label { fill: #bbbbbb; font-weight: bold; font-style: normal;font-family: sans-serif; @@ -820,7 +820,7 @@ font-size: 13.0px; } - + @@ -969,7 +969,7 @@ font-size: 13.0px; - + @@ -1215,7 +1215,7 @@ font-size: 13.0px; - + @@ -1242,7 +1242,7 @@ font-size: 13.0px; - + \ No newline at end of file diff --git a/docs/images/guides/layout/guideStylesCoordFlip.svg b/docs/images/guides/layout/guideStylesCoordFlip.svg index f45acf703..0677ada78 100644 --- a/docs/images/guides/layout/guideStylesCoordFlip.svg +++ b/docs/images/guides/layout/guideStylesCoordFlip.svg @@ -10,54 +10,54 @@ text { text-rendering: optimizeLegibility; } -#xXxprefixXx0 .plot-title { +#_sample_helper_static_id_prefix_0 .plot-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; @@ -71,14 +71,14 @@ font-weight: normal; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; @@ -92,14 +92,14 @@ font-weight: normal; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; @@ -129,7 +129,7 @@ font-size: 13.0px; } - + @@ -145,117 +145,117 @@ font-size: 13.0px; text { text-rendering: optimizeLegibility; } -#xXxprefixXx1 .plot-title { +#_sample_helper_static_id_prefix_1 .plot-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx1 .plot-subtitle { +#_sample_helper_static_id_prefix_1 .plot-subtitle { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx1 .plot-caption { +#_sample_helper_static_id_prefix_1 .plot-caption { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx1 .hyperlink-element { +#_sample_helper_static_id_prefix_1 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx1 .legend-title { +#_sample_helper_static_id_prefix_1 .legend-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx1 .legend-item { +#_sample_helper_static_id_prefix_1 .legend-item { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx1 .axis-title-y { +#_sample_helper_static_id_prefix_1 .axis-title-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx1 .axis-text-y { +#_sample_helper_static_id_prefix_1 .axis-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx3 .axis-tooltip-text-y { +#_sample_helper_static_id_prefix_3 .axis-tooltip-text-y { fill: #ffffff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx1 .axis-title-x { +#_sample_helper_static_id_prefix_1 .axis-title-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx1 .axis-text-x { +#_sample_helper_static_id_prefix_1 .axis-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx3 .axis-tooltip-text-x { +#_sample_helper_static_id_prefix_3 .axis-tooltip-text-x { fill: #ffffff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx1 .facet-strip-text-x { +#_sample_helper_static_id_prefix_1 .facet-strip-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx1 .facet-strip-text-y { +#_sample_helper_static_id_prefix_1 .facet-strip-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx3 .tooltip-text { +#_sample_helper_static_id_prefix_3 .tooltip-text { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx3 .tooltip-title { +#_sample_helper_static_id_prefix_3 .tooltip-title { fill: #474747; font-weight: bold; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx3 .tooltip-label { +#_sample_helper_static_id_prefix_3 .tooltip-label { fill: #474747; font-weight: bold; font-style: normal;font-family: sans-serif; @@ -264,7 +264,7 @@ font-size: 13.0px; } - + @@ -298,7 +298,7 @@ font-size: 13.0px; - + @@ -322,7 +322,7 @@ font-size: 13.0px; - + @@ -523,7 +523,7 @@ font-size: 13.0px; - + @@ -538,117 +538,117 @@ font-size: 13.0px; text { text-rendering: optimizeLegibility; } -#xXxprefixXx4 .plot-title { +#_sample_helper_static_id_prefix_4 .plot-title { fill: #31a354; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx4 .plot-subtitle { +#_sample_helper_static_id_prefix_4 .plot-subtitle { fill: #31a354; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx4 .plot-caption { +#_sample_helper_static_id_prefix_4 .plot-caption { fill: #31a354; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx4 .hyperlink-element { +#_sample_helper_static_id_prefix_4 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx4 .legend-title { +#_sample_helper_static_id_prefix_4 .legend-title { fill: #31a354; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx4 .legend-item { +#_sample_helper_static_id_prefix_4 .legend-item { fill: #31a354; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx4 .axis-title-y { +#_sample_helper_static_id_prefix_4 .axis-title-y { fill: #31a354; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx4 .axis-text-y { +#_sample_helper_static_id_prefix_4 .axis-text-y { fill: #31a354; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx6 .axis-tooltip-text-y { +#_sample_helper_static_id_prefix_6 .axis-tooltip-text-y { fill: #ffffff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx4 .axis-title-x { +#_sample_helper_static_id_prefix_4 .axis-title-x { fill: #31a354; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx4 .axis-text-x { +#_sample_helper_static_id_prefix_4 .axis-text-x { fill: #31a354; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx6 .axis-tooltip-text-x { +#_sample_helper_static_id_prefix_6 .axis-tooltip-text-x { fill: #ffffff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx4 .facet-strip-text-x { +#_sample_helper_static_id_prefix_4 .facet-strip-text-x { fill: #31a354; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx4 .facet-strip-text-y { +#_sample_helper_static_id_prefix_4 .facet-strip-text-y { fill: #31a354; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx6 .tooltip-text { +#_sample_helper_static_id_prefix_6 .tooltip-text { fill: #31a354; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx6 .tooltip-title { +#_sample_helper_static_id_prefix_6 .tooltip-title { fill: #31a354; font-weight: bold; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx6 .tooltip-label { +#_sample_helper_static_id_prefix_6 .tooltip-label { fill: #31a354; font-weight: bold; font-style: normal;font-family: sans-serif; @@ -657,7 +657,7 @@ font-size: 13.0px; } - + @@ -777,7 +777,7 @@ font-size: 13.0px; - + @@ -801,7 +801,7 @@ font-size: 13.0px; - + @@ -916,7 +916,7 @@ font-size: 13.0px; - + @@ -931,117 +931,117 @@ font-size: 13.0px; text { text-rendering: optimizeLegibility; } -#xXxprefixXx7 .plot-title { +#_sample_helper_static_id_prefix_7 .plot-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx7 .plot-subtitle { +#_sample_helper_static_id_prefix_7 .plot-subtitle { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx7 .plot-caption { +#_sample_helper_static_id_prefix_7 .plot-caption { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx7 .hyperlink-element { +#_sample_helper_static_id_prefix_7 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx7 .legend-title { +#_sample_helper_static_id_prefix_7 .legend-title { fill: #31a354; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx7 .legend-item { +#_sample_helper_static_id_prefix_7 .legend-item { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx7 .axis-title-y { +#_sample_helper_static_id_prefix_7 .axis-title-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx7 .axis-text-y { +#_sample_helper_static_id_prefix_7 .axis-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx9 .axis-tooltip-text-y { +#_sample_helper_static_id_prefix_9 .axis-tooltip-text-y { fill: #ffffff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx7 .axis-title-x { +#_sample_helper_static_id_prefix_7 .axis-title-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx7 .axis-text-x { +#_sample_helper_static_id_prefix_7 .axis-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx9 .axis-tooltip-text-x { +#_sample_helper_static_id_prefix_9 .axis-tooltip-text-x { fill: #ffffff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx7 .facet-strip-text-x { +#_sample_helper_static_id_prefix_7 .facet-strip-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx7 .facet-strip-text-y { +#_sample_helper_static_id_prefix_7 .facet-strip-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx9 .tooltip-text { +#_sample_helper_static_id_prefix_9 .tooltip-text { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx9 .tooltip-title { +#_sample_helper_static_id_prefix_9 .tooltip-title { fill: #474747; font-weight: bold; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx9 .tooltip-label { +#_sample_helper_static_id_prefix_9 .tooltip-label { fill: #474747; font-weight: bold; font-style: normal;font-family: sans-serif; @@ -1050,7 +1050,7 @@ font-size: 13.0px; } - + @@ -1170,7 +1170,7 @@ font-size: 13.0px; - + @@ -1194,7 +1194,7 @@ font-size: 13.0px; - + @@ -1309,7 +1309,7 @@ font-size: 13.0px; - + @@ -1324,117 +1324,117 @@ font-size: 13.0px; text { text-rendering: optimizeLegibility; } -#xXxprefixXx10 .plot-title { +#_sample_helper_static_id_prefix_10 .plot-title { fill: #31a354; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx10 .plot-subtitle { +#_sample_helper_static_id_prefix_10 .plot-subtitle { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx10 .plot-caption { +#_sample_helper_static_id_prefix_10 .plot-caption { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx10 .hyperlink-element { +#_sample_helper_static_id_prefix_10 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx10 .legend-title { +#_sample_helper_static_id_prefix_10 .legend-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx10 .legend-item { +#_sample_helper_static_id_prefix_10 .legend-item { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx10 .axis-title-y { +#_sample_helper_static_id_prefix_10 .axis-title-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx10 .axis-text-y { +#_sample_helper_static_id_prefix_10 .axis-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx12 .axis-tooltip-text-y { +#_sample_helper_static_id_prefix_12 .axis-tooltip-text-y { fill: #ffffff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx10 .axis-title-x { +#_sample_helper_static_id_prefix_10 .axis-title-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx10 .axis-text-x { +#_sample_helper_static_id_prefix_10 .axis-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx12 .axis-tooltip-text-x { +#_sample_helper_static_id_prefix_12 .axis-tooltip-text-x { fill: #ffffff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx10 .facet-strip-text-x { +#_sample_helper_static_id_prefix_10 .facet-strip-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx10 .facet-strip-text-y { +#_sample_helper_static_id_prefix_10 .facet-strip-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx12 .tooltip-text { +#_sample_helper_static_id_prefix_12 .tooltip-text { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx12 .tooltip-title { +#_sample_helper_static_id_prefix_12 .tooltip-title { fill: #474747; font-weight: bold; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx12 .tooltip-label { +#_sample_helper_static_id_prefix_12 .tooltip-label { fill: #474747; font-weight: bold; font-style: normal;font-family: sans-serif; @@ -1443,7 +1443,7 @@ font-size: 13.0px; } - + @@ -1563,7 +1563,7 @@ font-size: 13.0px; - + @@ -1587,7 +1587,7 @@ font-size: 13.0px; - + @@ -1714,7 +1714,7 @@ font-size: 13.0px; - + @@ -1729,117 +1729,117 @@ font-size: 13.0px; text { text-rendering: optimizeLegibility; } -#xXxprefixXx13 .plot-title { +#_sample_helper_static_id_prefix_13 .plot-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx13 .plot-subtitle { +#_sample_helper_static_id_prefix_13 .plot-subtitle { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx13 .plot-caption { +#_sample_helper_static_id_prefix_13 .plot-caption { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx13 .hyperlink-element { +#_sample_helper_static_id_prefix_13 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx13 .legend-title { +#_sample_helper_static_id_prefix_13 .legend-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx13 .legend-item { +#_sample_helper_static_id_prefix_13 .legend-item { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx13 .axis-title-y { +#_sample_helper_static_id_prefix_13 .axis-title-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx13 .axis-text-y { +#_sample_helper_static_id_prefix_13 .axis-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx15 .axis-tooltip-text-y { +#_sample_helper_static_id_prefix_15 .axis-tooltip-text-y { fill: #ffffff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx13 .axis-title-x { +#_sample_helper_static_id_prefix_13 .axis-title-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx13 .axis-text-x { +#_sample_helper_static_id_prefix_13 .axis-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx15 .axis-tooltip-text-x { +#_sample_helper_static_id_prefix_15 .axis-tooltip-text-x { fill: #ffffff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx13 .facet-strip-text-x { +#_sample_helper_static_id_prefix_13 .facet-strip-text-x { fill: #31a354; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx13 .facet-strip-text-y { +#_sample_helper_static_id_prefix_13 .facet-strip-text-y { fill: #31a354; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx15 .tooltip-text { +#_sample_helper_static_id_prefix_15 .tooltip-text { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx15 .tooltip-title { +#_sample_helper_static_id_prefix_15 .tooltip-title { fill: #474747; font-weight: bold; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx15 .tooltip-label { +#_sample_helper_static_id_prefix_15 .tooltip-label { fill: #474747; font-weight: bold; font-style: normal;font-family: sans-serif; @@ -1848,7 +1848,7 @@ font-size: 13.0px; } - + @@ -1968,7 +1968,7 @@ font-size: 13.0px; - + @@ -1992,7 +1992,7 @@ font-size: 13.0px; - + @@ -2107,7 +2107,7 @@ font-size: 13.0px; - + @@ -2122,117 +2122,117 @@ font-size: 13.0px; text { text-rendering: optimizeLegibility; } -#xXxprefixXx16 .plot-title { +#_sample_helper_static_id_prefix_16 .plot-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx16 .plot-subtitle { +#_sample_helper_static_id_prefix_16 .plot-subtitle { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx16 .plot-caption { +#_sample_helper_static_id_prefix_16 .plot-caption { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx16 .hyperlink-element { +#_sample_helper_static_id_prefix_16 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx16 .legend-title { +#_sample_helper_static_id_prefix_16 .legend-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx16 .legend-item { +#_sample_helper_static_id_prefix_16 .legend-item { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx16 .axis-title-y { +#_sample_helper_static_id_prefix_16 .axis-title-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx16 .axis-text-y { +#_sample_helper_static_id_prefix_16 .axis-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx18 .axis-tooltip-text-y { +#_sample_helper_static_id_prefix_18 .axis-tooltip-text-y { fill: #ffffff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx16 .axis-title-x { +#_sample_helper_static_id_prefix_16 .axis-title-x { fill: #31a354; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx16 .axis-text-x { +#_sample_helper_static_id_prefix_16 .axis-text-x { fill: #31a354; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx18 .axis-tooltip-text-x { +#_sample_helper_static_id_prefix_18 .axis-tooltip-text-x { fill: #ffffff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx16 .facet-strip-text-x { +#_sample_helper_static_id_prefix_16 .facet-strip-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx16 .facet-strip-text-y { +#_sample_helper_static_id_prefix_16 .facet-strip-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx18 .tooltip-text { +#_sample_helper_static_id_prefix_18 .tooltip-text { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx18 .tooltip-title { +#_sample_helper_static_id_prefix_18 .tooltip-title { fill: #474747; font-weight: bold; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx18 .tooltip-label { +#_sample_helper_static_id_prefix_18 .tooltip-label { fill: #474747; font-weight: bold; font-style: normal;font-family: sans-serif; @@ -2241,7 +2241,7 @@ font-size: 13.0px; } - + @@ -2361,7 +2361,7 @@ font-size: 13.0px; - + @@ -2385,7 +2385,7 @@ font-size: 13.0px; - + @@ -2500,7 +2500,7 @@ font-size: 13.0px; - + \ No newline at end of file diff --git a/docs/images/guides/layout/guideStylesCoordFlip_dark.svg b/docs/images/guides/layout/guideStylesCoordFlip_dark.svg index 8b9f7d751..49da2e488 100644 --- a/docs/images/guides/layout/guideStylesCoordFlip_dark.svg +++ b/docs/images/guides/layout/guideStylesCoordFlip_dark.svg @@ -10,54 +10,54 @@ text { text-rendering: optimizeLegibility; } -#xXxprefixXx0 .plot-title { +#_sample_helper_static_id_prefix_0 .plot-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; @@ -71,14 +71,14 @@ font-weight: normal; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; @@ -92,14 +92,14 @@ font-weight: normal; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; @@ -129,7 +129,7 @@ font-size: 13.0px; } - + @@ -145,117 +145,117 @@ font-size: 13.0px; text { text-rendering: optimizeLegibility; } -#xXxprefixXx1 .plot-title { +#_sample_helper_static_id_prefix_1 .plot-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx1 .plot-subtitle { +#_sample_helper_static_id_prefix_1 .plot-subtitle { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx1 .plot-caption { +#_sample_helper_static_id_prefix_1 .plot-caption { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx1 .hyperlink-element { +#_sample_helper_static_id_prefix_1 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx1 .legend-title { +#_sample_helper_static_id_prefix_1 .legend-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx1 .legend-item { +#_sample_helper_static_id_prefix_1 .legend-item { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx1 .axis-title-y { +#_sample_helper_static_id_prefix_1 .axis-title-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx1 .axis-text-y { +#_sample_helper_static_id_prefix_1 .axis-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx3 .axis-tooltip-text-y { +#_sample_helper_static_id_prefix_3 .axis-tooltip-text-y { fill: #303030; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx1 .axis-title-x { +#_sample_helper_static_id_prefix_1 .axis-title-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx1 .axis-text-x { +#_sample_helper_static_id_prefix_1 .axis-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx3 .axis-tooltip-text-x { +#_sample_helper_static_id_prefix_3 .axis-tooltip-text-x { fill: #303030; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx1 .facet-strip-text-x { +#_sample_helper_static_id_prefix_1 .facet-strip-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx1 .facet-strip-text-y { +#_sample_helper_static_id_prefix_1 .facet-strip-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx3 .tooltip-text { +#_sample_helper_static_id_prefix_3 .tooltip-text { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx3 .tooltip-title { +#_sample_helper_static_id_prefix_3 .tooltip-title { fill: #bbbbbb; font-weight: bold; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx3 .tooltip-label { +#_sample_helper_static_id_prefix_3 .tooltip-label { fill: #bbbbbb; font-weight: bold; font-style: normal;font-family: sans-serif; @@ -264,7 +264,7 @@ font-size: 13.0px; } - + @@ -384,7 +384,7 @@ font-size: 13.0px; - + @@ -408,7 +408,7 @@ font-size: 13.0px; - + @@ -523,7 +523,7 @@ font-size: 13.0px; - + @@ -538,117 +538,117 @@ font-size: 13.0px; text { text-rendering: optimizeLegibility; } -#xXxprefixXx4 .plot-title { +#_sample_helper_static_id_prefix_4 .plot-title { fill: #31a354; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx4 .plot-subtitle { +#_sample_helper_static_id_prefix_4 .plot-subtitle { fill: #31a354; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx4 .plot-caption { +#_sample_helper_static_id_prefix_4 .plot-caption { fill: #31a354; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx4 .hyperlink-element { +#_sample_helper_static_id_prefix_4 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx4 .legend-title { +#_sample_helper_static_id_prefix_4 .legend-title { fill: #31a354; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx4 .legend-item { +#_sample_helper_static_id_prefix_4 .legend-item { fill: #31a354; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx4 .axis-title-y { +#_sample_helper_static_id_prefix_4 .axis-title-y { fill: #31a354; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx4 .axis-text-y { +#_sample_helper_static_id_prefix_4 .axis-text-y { fill: #31a354; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx6 .axis-tooltip-text-y { +#_sample_helper_static_id_prefix_6 .axis-tooltip-text-y { fill: #303030; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx4 .axis-title-x { +#_sample_helper_static_id_prefix_4 .axis-title-x { fill: #31a354; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx4 .axis-text-x { +#_sample_helper_static_id_prefix_4 .axis-text-x { fill: #31a354; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx6 .axis-tooltip-text-x { +#_sample_helper_static_id_prefix_6 .axis-tooltip-text-x { fill: #303030; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx4 .facet-strip-text-x { +#_sample_helper_static_id_prefix_4 .facet-strip-text-x { fill: #31a354; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx4 .facet-strip-text-y { +#_sample_helper_static_id_prefix_4 .facet-strip-text-y { fill: #31a354; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx6 .tooltip-text { +#_sample_helper_static_id_prefix_6 .tooltip-text { fill: #31a354; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx6 .tooltip-title { +#_sample_helper_static_id_prefix_6 .tooltip-title { fill: #31a354; font-weight: bold; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx6 .tooltip-label { +#_sample_helper_static_id_prefix_6 .tooltip-label { fill: #31a354; font-weight: bold; font-style: normal;font-family: sans-serif; @@ -657,7 +657,7 @@ font-size: 13.0px; } - + @@ -777,7 +777,7 @@ font-size: 13.0px; - + @@ -801,7 +801,7 @@ font-size: 13.0px; - + @@ -916,7 +916,7 @@ font-size: 13.0px; - + @@ -931,117 +931,117 @@ font-size: 13.0px; text { text-rendering: optimizeLegibility; } -#xXxprefixXx7 .plot-title { +#_sample_helper_static_id_prefix_7 .plot-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx7 .plot-subtitle { +#_sample_helper_static_id_prefix_7 .plot-subtitle { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx7 .plot-caption { +#_sample_helper_static_id_prefix_7 .plot-caption { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx7 .hyperlink-element { +#_sample_helper_static_id_prefix_7 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx7 .legend-title { +#_sample_helper_static_id_prefix_7 .legend-title { fill: #31a354; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx7 .legend-item { +#_sample_helper_static_id_prefix_7 .legend-item { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx7 .axis-title-y { +#_sample_helper_static_id_prefix_7 .axis-title-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx7 .axis-text-y { +#_sample_helper_static_id_prefix_7 .axis-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx9 .axis-tooltip-text-y { +#_sample_helper_static_id_prefix_9 .axis-tooltip-text-y { fill: #303030; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx7 .axis-title-x { +#_sample_helper_static_id_prefix_7 .axis-title-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx7 .axis-text-x { +#_sample_helper_static_id_prefix_7 .axis-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx9 .axis-tooltip-text-x { +#_sample_helper_static_id_prefix_9 .axis-tooltip-text-x { fill: #303030; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx7 .facet-strip-text-x { +#_sample_helper_static_id_prefix_7 .facet-strip-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx7 .facet-strip-text-y { +#_sample_helper_static_id_prefix_7 .facet-strip-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx9 .tooltip-text { +#_sample_helper_static_id_prefix_9 .tooltip-text { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx9 .tooltip-title { +#_sample_helper_static_id_prefix_9 .tooltip-title { fill: #bbbbbb; font-weight: bold; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx9 .tooltip-label { +#_sample_helper_static_id_prefix_9 .tooltip-label { fill: #bbbbbb; font-weight: bold; font-style: normal;font-family: sans-serif; @@ -1050,7 +1050,7 @@ font-size: 13.0px; } - + @@ -1170,7 +1170,7 @@ font-size: 13.0px; - + @@ -1194,7 +1194,7 @@ font-size: 13.0px; - + @@ -1309,7 +1309,7 @@ font-size: 13.0px; - + @@ -1324,117 +1324,117 @@ font-size: 13.0px; text { text-rendering: optimizeLegibility; } -#xXxprefixXx10 .plot-title { +#_sample_helper_static_id_prefix_10 .plot-title { fill: #31a354; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx10 .plot-subtitle { +#_sample_helper_static_id_prefix_10 .plot-subtitle { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx10 .plot-caption { +#_sample_helper_static_id_prefix_10 .plot-caption { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx10 .hyperlink-element { +#_sample_helper_static_id_prefix_10 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx10 .legend-title { +#_sample_helper_static_id_prefix_10 .legend-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx10 .legend-item { +#_sample_helper_static_id_prefix_10 .legend-item { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx10 .axis-title-y { +#_sample_helper_static_id_prefix_10 .axis-title-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx10 .axis-text-y { +#_sample_helper_static_id_prefix_10 .axis-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx12 .axis-tooltip-text-y { +#_sample_helper_static_id_prefix_12 .axis-tooltip-text-y { fill: #303030; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx10 .axis-title-x { +#_sample_helper_static_id_prefix_10 .axis-title-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx10 .axis-text-x { +#_sample_helper_static_id_prefix_10 .axis-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx12 .axis-tooltip-text-x { +#_sample_helper_static_id_prefix_12 .axis-tooltip-text-x { fill: #303030; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx10 .facet-strip-text-x { +#_sample_helper_static_id_prefix_10 .facet-strip-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx10 .facet-strip-text-y { +#_sample_helper_static_id_prefix_10 .facet-strip-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx12 .tooltip-text { +#_sample_helper_static_id_prefix_12 .tooltip-text { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx12 .tooltip-title { +#_sample_helper_static_id_prefix_12 .tooltip-title { fill: #bbbbbb; font-weight: bold; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx12 .tooltip-label { +#_sample_helper_static_id_prefix_12 .tooltip-label { fill: #bbbbbb; font-weight: bold; font-style: normal;font-family: sans-serif; @@ -1443,7 +1443,7 @@ font-size: 13.0px; } - + @@ -1563,7 +1563,7 @@ font-size: 13.0px; - + @@ -1587,7 +1587,7 @@ font-size: 13.0px; - + @@ -1714,7 +1714,7 @@ font-size: 13.0px; - + @@ -1729,117 +1729,117 @@ font-size: 13.0px; text { text-rendering: optimizeLegibility; } -#xXxprefixXx13 .plot-title { +#_sample_helper_static_id_prefix_13 .plot-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx13 .plot-subtitle { +#_sample_helper_static_id_prefix_13 .plot-subtitle { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx13 .plot-caption { +#_sample_helper_static_id_prefix_13 .plot-caption { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx13 .hyperlink-element { +#_sample_helper_static_id_prefix_13 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx13 .legend-title { +#_sample_helper_static_id_prefix_13 .legend-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx13 .legend-item { +#_sample_helper_static_id_prefix_13 .legend-item { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx13 .axis-title-y { +#_sample_helper_static_id_prefix_13 .axis-title-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx13 .axis-text-y { +#_sample_helper_static_id_prefix_13 .axis-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx15 .axis-tooltip-text-y { +#_sample_helper_static_id_prefix_15 .axis-tooltip-text-y { fill: #303030; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx13 .axis-title-x { +#_sample_helper_static_id_prefix_13 .axis-title-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx13 .axis-text-x { +#_sample_helper_static_id_prefix_13 .axis-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx15 .axis-tooltip-text-x { +#_sample_helper_static_id_prefix_15 .axis-tooltip-text-x { fill: #303030; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx13 .facet-strip-text-x { +#_sample_helper_static_id_prefix_13 .facet-strip-text-x { fill: #31a354; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx13 .facet-strip-text-y { +#_sample_helper_static_id_prefix_13 .facet-strip-text-y { fill: #31a354; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx15 .tooltip-text { +#_sample_helper_static_id_prefix_15 .tooltip-text { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx15 .tooltip-title { +#_sample_helper_static_id_prefix_15 .tooltip-title { fill: #bbbbbb; font-weight: bold; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx15 .tooltip-label { +#_sample_helper_static_id_prefix_15 .tooltip-label { fill: #bbbbbb; font-weight: bold; font-style: normal;font-family: sans-serif; @@ -1848,7 +1848,7 @@ font-size: 13.0px; } - + @@ -1968,7 +1968,7 @@ font-size: 13.0px; - + @@ -1992,7 +1992,7 @@ font-size: 13.0px; - + @@ -2107,7 +2107,7 @@ font-size: 13.0px; - + @@ -2122,117 +2122,117 @@ font-size: 13.0px; text { text-rendering: optimizeLegibility; } -#xXxprefixXx16 .plot-title { +#_sample_helper_static_id_prefix_16 .plot-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx16 .plot-subtitle { +#_sample_helper_static_id_prefix_16 .plot-subtitle { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx16 .plot-caption { +#_sample_helper_static_id_prefix_16 .plot-caption { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx16 .hyperlink-element { +#_sample_helper_static_id_prefix_16 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx16 .legend-title { +#_sample_helper_static_id_prefix_16 .legend-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx16 .legend-item { +#_sample_helper_static_id_prefix_16 .legend-item { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx16 .axis-title-y { +#_sample_helper_static_id_prefix_16 .axis-title-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx16 .axis-text-y { +#_sample_helper_static_id_prefix_16 .axis-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx18 .axis-tooltip-text-y { +#_sample_helper_static_id_prefix_18 .axis-tooltip-text-y { fill: #303030; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx16 .axis-title-x { +#_sample_helper_static_id_prefix_16 .axis-title-x { fill: #31a354; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx16 .axis-text-x { +#_sample_helper_static_id_prefix_16 .axis-text-x { fill: #31a354; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx18 .axis-tooltip-text-x { +#_sample_helper_static_id_prefix_18 .axis-tooltip-text-x { fill: #303030; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx16 .facet-strip-text-x { +#_sample_helper_static_id_prefix_16 .facet-strip-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx16 .facet-strip-text-y { +#_sample_helper_static_id_prefix_16 .facet-strip-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx18 .tooltip-text { +#_sample_helper_static_id_prefix_18 .tooltip-text { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx18 .tooltip-title { +#_sample_helper_static_id_prefix_18 .tooltip-title { fill: #bbbbbb; font-weight: bold; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx18 .tooltip-label { +#_sample_helper_static_id_prefix_18 .tooltip-label { fill: #bbbbbb; font-weight: bold; font-style: normal;font-family: sans-serif; @@ -2241,7 +2241,7 @@ font-size: 13.0px; } - + @@ -2361,7 +2361,7 @@ font-size: 13.0px; - + @@ -2385,7 +2385,7 @@ font-size: 13.0px; - + @@ -2500,7 +2500,7 @@ font-size: 13.0px; - + \ No newline at end of file diff --git a/docs/images/guides/layout/guideStylesCustomStyleForLegend.svg b/docs/images/guides/layout/guideStylesCustomStyleForLegend.svg index d833613eb..4f2f7de94 100644 --- a/docs/images/guides/layout/guideStylesCustomStyleForLegend.svg +++ b/docs/images/guides/layout/guideStylesCustomStyleForLegend.svg @@ -10,117 +10,117 @@ text { text-rendering: optimizeLegibility; } -#xXxprefixXx0 .plot-title { +#_sample_helper_static_id_prefix_0 .plot-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-x { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-x { fill: #ffffff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-y { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-y { fill: #ffffff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-text { +#_sample_helper_static_id_prefix_2 .tooltip-text { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-title { +#_sample_helper_static_id_prefix_2 .tooltip-title { fill: #474747; font-weight: bold; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-label { +#_sample_helper_static_id_prefix_2 .tooltip-label { fill: #474747; font-weight: bold; font-style: normal;font-family: sans-serif; @@ -129,7 +129,7 @@ font-size: 13.0px; } - + @@ -285,7 +285,7 @@ font-size: 13.0px; - + @@ -303,7 +303,7 @@ font-size: 13.0px; - + @@ -418,6 +418,6 @@ font-size: 13.0px; - + \ No newline at end of file diff --git a/docs/images/guides/layout/guideStylesCustomStyleForLegend_dark.svg b/docs/images/guides/layout/guideStylesCustomStyleForLegend_dark.svg index 6d7bcba5a..f32c9fdf2 100644 --- a/docs/images/guides/layout/guideStylesCustomStyleForLegend_dark.svg +++ b/docs/images/guides/layout/guideStylesCustomStyleForLegend_dark.svg @@ -10,117 +10,117 @@ text { text-rendering: optimizeLegibility; } -#xXxprefixXx0 .plot-title { +#_sample_helper_static_id_prefix_0 .plot-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-x { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-x { fill: #303030; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-y { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-y { fill: #303030; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-text { +#_sample_helper_static_id_prefix_2 .tooltip-text { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-title { +#_sample_helper_static_id_prefix_2 .tooltip-title { fill: #bbbbbb; font-weight: bold; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-label { +#_sample_helper_static_id_prefix_2 .tooltip-label { fill: #bbbbbb; font-weight: bold; font-style: normal;font-family: sans-serif; @@ -129,7 +129,7 @@ font-size: 13.0px; } - + @@ -285,7 +285,7 @@ font-size: 13.0px; - + @@ -303,7 +303,7 @@ font-size: 13.0px; - + @@ -418,6 +418,6 @@ font-size: 13.0px; - + \ No newline at end of file diff --git a/docs/images/guides/layout/guideStylesOnTopXAxis.svg b/docs/images/guides/layout/guideStylesOnTopXAxis.svg index 17741d273..1777dd989 100644 --- a/docs/images/guides/layout/guideStylesOnTopXAxis.svg +++ b/docs/images/guides/layout/guideStylesOnTopXAxis.svg @@ -10,54 +10,54 @@ text { text-rendering: optimizeLegibility; } -#xXxprefixXx0 .plot-title { +#_sample_helper_static_id_prefix_0 .plot-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; @@ -71,14 +71,14 @@ font-weight: normal; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; @@ -92,14 +92,14 @@ font-weight: normal; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; @@ -129,7 +129,7 @@ font-size: 13.0px; } - + @@ -145,117 +145,117 @@ font-size: 13.0px; text { text-rendering: optimizeLegibility; } -#xXxprefixXx1 .plot-title { +#_sample_helper_static_id_prefix_1 .plot-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx1 .plot-subtitle { +#_sample_helper_static_id_prefix_1 .plot-subtitle { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx1 .plot-caption { +#_sample_helper_static_id_prefix_1 .plot-caption { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx1 .hyperlink-element { +#_sample_helper_static_id_prefix_1 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx1 .legend-title { +#_sample_helper_static_id_prefix_1 .legend-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx1 .legend-item { +#_sample_helper_static_id_prefix_1 .legend-item { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx1 .axis-title-x { +#_sample_helper_static_id_prefix_1 .axis-title-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx1 .axis-text-x { +#_sample_helper_static_id_prefix_1 .axis-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx3 .axis-tooltip-text-x { +#_sample_helper_static_id_prefix_3 .axis-tooltip-text-x { fill: #ffffff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx1 .axis-title-y { +#_sample_helper_static_id_prefix_1 .axis-title-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx1 .axis-text-y { +#_sample_helper_static_id_prefix_1 .axis-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx3 .axis-tooltip-text-y { +#_sample_helper_static_id_prefix_3 .axis-tooltip-text-y { fill: #ffffff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx1 .facet-strip-text-x { +#_sample_helper_static_id_prefix_1 .facet-strip-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx1 .facet-strip-text-y { +#_sample_helper_static_id_prefix_1 .facet-strip-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx3 .tooltip-text { +#_sample_helper_static_id_prefix_3 .tooltip-text { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx3 .tooltip-title { +#_sample_helper_static_id_prefix_3 .tooltip-title { fill: #474747; font-weight: bold; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx3 .tooltip-label { +#_sample_helper_static_id_prefix_3 .tooltip-label { fill: #474747; font-weight: bold; font-style: normal;font-family: sans-serif; @@ -264,7 +264,7 @@ font-size: 13.0px; } - + @@ -420,7 +420,7 @@ font-size: 13.0px; - + @@ -438,7 +438,7 @@ font-size: 13.0px; - + @@ -553,7 +553,7 @@ font-size: 13.0px; - + @@ -568,117 +568,117 @@ font-size: 13.0px; text { text-rendering: optimizeLegibility; } -#xXxprefixXx4 .plot-title { +#_sample_helper_static_id_prefix_4 .plot-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx4 .plot-subtitle { +#_sample_helper_static_id_prefix_4 .plot-subtitle { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx4 .plot-caption { +#_sample_helper_static_id_prefix_4 .plot-caption { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx4 .hyperlink-element { +#_sample_helper_static_id_prefix_4 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx4 .legend-title { +#_sample_helper_static_id_prefix_4 .legend-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx4 .legend-item { +#_sample_helper_static_id_prefix_4 .legend-item { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx4 .axis-title-x { +#_sample_helper_static_id_prefix_4 .axis-title-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx4 .axis-text-x { +#_sample_helper_static_id_prefix_4 .axis-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx6 .axis-tooltip-text-x { +#_sample_helper_static_id_prefix_6 .axis-tooltip-text-x { fill: #ffffff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx4 .axis-title-y { +#_sample_helper_static_id_prefix_4 .axis-title-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx4 .axis-text-y { +#_sample_helper_static_id_prefix_4 .axis-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx6 .axis-tooltip-text-y { +#_sample_helper_static_id_prefix_6 .axis-tooltip-text-y { fill: #ffffff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx4 .facet-strip-text-x { +#_sample_helper_static_id_prefix_4 .facet-strip-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx4 .facet-strip-text-y { +#_sample_helper_static_id_prefix_4 .facet-strip-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx6 .tooltip-text { +#_sample_helper_static_id_prefix_6 .tooltip-text { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx6 .tooltip-title { +#_sample_helper_static_id_prefix_6 .tooltip-title { fill: #474747; font-weight: bold; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx6 .tooltip-label { +#_sample_helper_static_id_prefix_6 .tooltip-label { fill: #474747; font-weight: bold; font-style: normal;font-family: sans-serif; @@ -687,7 +687,7 @@ font-size: 13.0px; } - + @@ -794,7 +794,7 @@ font-size: 13.0px; - + @@ -812,7 +812,7 @@ font-size: 13.0px; - + @@ -976,7 +976,7 @@ font-size: 13.0px; - + \ No newline at end of file diff --git a/docs/images/guides/layout/guideStylesOnTopXAxis_dark.svg b/docs/images/guides/layout/guideStylesOnTopXAxis_dark.svg index 9d1dd70af..6d7f57783 100644 --- a/docs/images/guides/layout/guideStylesOnTopXAxis_dark.svg +++ b/docs/images/guides/layout/guideStylesOnTopXAxis_dark.svg @@ -10,54 +10,54 @@ text { text-rendering: optimizeLegibility; } -#xXxprefixXx0 .plot-title { +#_sample_helper_static_id_prefix_0 .plot-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; @@ -71,14 +71,14 @@ font-weight: normal; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; @@ -92,14 +92,14 @@ font-weight: normal; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; @@ -129,7 +129,7 @@ font-size: 13.0px; } - + @@ -145,117 +145,117 @@ font-size: 13.0px; text { text-rendering: optimizeLegibility; } -#xXxprefixXx1 .plot-title { +#_sample_helper_static_id_prefix_1 .plot-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx1 .plot-subtitle { +#_sample_helper_static_id_prefix_1 .plot-subtitle { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx1 .plot-caption { +#_sample_helper_static_id_prefix_1 .plot-caption { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx1 .hyperlink-element { +#_sample_helper_static_id_prefix_1 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx1 .legend-title { +#_sample_helper_static_id_prefix_1 .legend-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx1 .legend-item { +#_sample_helper_static_id_prefix_1 .legend-item { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx1 .axis-title-x { +#_sample_helper_static_id_prefix_1 .axis-title-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx1 .axis-text-x { +#_sample_helper_static_id_prefix_1 .axis-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx3 .axis-tooltip-text-x { +#_sample_helper_static_id_prefix_3 .axis-tooltip-text-x { fill: #303030; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx1 .axis-title-y { +#_sample_helper_static_id_prefix_1 .axis-title-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx1 .axis-text-y { +#_sample_helper_static_id_prefix_1 .axis-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx3 .axis-tooltip-text-y { +#_sample_helper_static_id_prefix_3 .axis-tooltip-text-y { fill: #303030; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx1 .facet-strip-text-x { +#_sample_helper_static_id_prefix_1 .facet-strip-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx1 .facet-strip-text-y { +#_sample_helper_static_id_prefix_1 .facet-strip-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx3 .tooltip-text { +#_sample_helper_static_id_prefix_3 .tooltip-text { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx3 .tooltip-title { +#_sample_helper_static_id_prefix_3 .tooltip-title { fill: #bbbbbb; font-weight: bold; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx3 .tooltip-label { +#_sample_helper_static_id_prefix_3 .tooltip-label { fill: #bbbbbb; font-weight: bold; font-style: normal;font-family: sans-serif; @@ -264,7 +264,7 @@ font-size: 13.0px; } - + @@ -420,7 +420,7 @@ font-size: 13.0px; - + @@ -438,7 +438,7 @@ font-size: 13.0px; - + @@ -553,7 +553,7 @@ font-size: 13.0px; - + @@ -568,117 +568,117 @@ font-size: 13.0px; text { text-rendering: optimizeLegibility; } -#xXxprefixXx4 .plot-title { +#_sample_helper_static_id_prefix_4 .plot-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx4 .plot-subtitle { +#_sample_helper_static_id_prefix_4 .plot-subtitle { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx4 .plot-caption { +#_sample_helper_static_id_prefix_4 .plot-caption { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx4 .hyperlink-element { +#_sample_helper_static_id_prefix_4 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx4 .legend-title { +#_sample_helper_static_id_prefix_4 .legend-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx4 .legend-item { +#_sample_helper_static_id_prefix_4 .legend-item { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx4 .axis-title-x { +#_sample_helper_static_id_prefix_4 .axis-title-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx4 .axis-text-x { +#_sample_helper_static_id_prefix_4 .axis-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx6 .axis-tooltip-text-x { +#_sample_helper_static_id_prefix_6 .axis-tooltip-text-x { fill: #303030; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx4 .axis-title-y { +#_sample_helper_static_id_prefix_4 .axis-title-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx4 .axis-text-y { +#_sample_helper_static_id_prefix_4 .axis-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx6 .axis-tooltip-text-y { +#_sample_helper_static_id_prefix_6 .axis-tooltip-text-y { fill: #303030; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx4 .facet-strip-text-x { +#_sample_helper_static_id_prefix_4 .facet-strip-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx4 .facet-strip-text-y { +#_sample_helper_static_id_prefix_4 .facet-strip-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx6 .tooltip-text { +#_sample_helper_static_id_prefix_6 .tooltip-text { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx6 .tooltip-title { +#_sample_helper_static_id_prefix_6 .tooltip-title { fill: #bbbbbb; font-weight: bold; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx6 .tooltip-label { +#_sample_helper_static_id_prefix_6 .tooltip-label { fill: #bbbbbb; font-weight: bold; font-style: normal;font-family: sans-serif; @@ -687,7 +687,7 @@ font-size: 13.0px; } - + @@ -794,7 +794,7 @@ font-size: 13.0px; - + @@ -812,7 +812,7 @@ font-size: 13.0px; - + @@ -976,7 +976,7 @@ font-size: 13.0px; - + \ No newline at end of file diff --git a/docs/images/guides/layout/guideStylesOrangeCustomStyle.svg b/docs/images/guides/layout/guideStylesOrangeCustomStyle.svg index b0e695178..f03c5bb40 100644 --- a/docs/images/guides/layout/guideStylesOrangeCustomStyle.svg +++ b/docs/images/guides/layout/guideStylesOrangeCustomStyle.svg @@ -10,54 +10,54 @@ text { text-rendering: optimizeLegibility; } -#xXxprefixXx0 .plot-title { +#_sample_helper_static_id_prefix_0 .plot-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; @@ -71,14 +71,14 @@ font-weight: normal; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; @@ -92,14 +92,14 @@ font-weight: normal; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; @@ -129,7 +129,7 @@ font-size: 13.0px; } - + @@ -145,117 +145,117 @@ font-size: 13.0px; text { text-rendering: optimizeLegibility; } -#xXxprefixXx1 .plot-title { +#_sample_helper_static_id_prefix_1 .plot-title { fill: #7f2704; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx1 .plot-subtitle { +#_sample_helper_static_id_prefix_1 .plot-subtitle { fill: #7f2704; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx1 .plot-caption { +#_sample_helper_static_id_prefix_1 .plot-caption { fill: #7f2704; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx1 .hyperlink-element { +#_sample_helper_static_id_prefix_1 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx1 .legend-title { +#_sample_helper_static_id_prefix_1 .legend-title { fill: #7f2704; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx1 .legend-item { +#_sample_helper_static_id_prefix_1 .legend-item { fill: #7f2704; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx1 .axis-title-x { +#_sample_helper_static_id_prefix_1 .axis-title-x { fill: #7f2704; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx1 .axis-text-x { +#_sample_helper_static_id_prefix_1 .axis-text-x { fill: #7f2704; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx3 .axis-tooltip-text-x { +#_sample_helper_static_id_prefix_3 .axis-tooltip-text-x { fill: #7f2704; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx1 .axis-title-y { +#_sample_helper_static_id_prefix_1 .axis-title-y { fill: #7f2704; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx1 .axis-text-y { +#_sample_helper_static_id_prefix_1 .axis-text-y { fill: #7f2704; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx3 .axis-tooltip-text-y { +#_sample_helper_static_id_prefix_3 .axis-tooltip-text-y { fill: #7f2704; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx1 .facet-strip-text-x { +#_sample_helper_static_id_prefix_1 .facet-strip-text-x { fill: #7f2704; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx1 .facet-strip-text-y { +#_sample_helper_static_id_prefix_1 .facet-strip-text-y { fill: #7f2704; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx3 .tooltip-text { +#_sample_helper_static_id_prefix_3 .tooltip-text { fill: #7f2704; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx3 .tooltip-title { +#_sample_helper_static_id_prefix_3 .tooltip-title { fill: #7f2704; font-weight: bold; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx3 .tooltip-label { +#_sample_helper_static_id_prefix_3 .tooltip-label { fill: #7f2704; font-weight: bold; font-style: normal;font-family: sans-serif; @@ -264,7 +264,7 @@ font-size: 13.0px; } - + @@ -431,7 +431,7 @@ font-size: 13.0px; - + @@ -677,7 +677,7 @@ font-size: 13.0px; - + @@ -706,7 +706,7 @@ font-size: 13.0px; - + @@ -721,117 +721,117 @@ font-size: 13.0px; text { text-rendering: optimizeLegibility; } -#xXxprefixXx4 .plot-title { +#_sample_helper_static_id_prefix_4 .plot-title { fill: #7f2704; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx4 .plot-subtitle { +#_sample_helper_static_id_prefix_4 .plot-subtitle { fill: #7f2704; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx4 .plot-caption { +#_sample_helper_static_id_prefix_4 .plot-caption { fill: #7f2704; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx4 .hyperlink-element { +#_sample_helper_static_id_prefix_4 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx4 .legend-title { +#_sample_helper_static_id_prefix_4 .legend-title { fill: #7f2704; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx4 .legend-item { +#_sample_helper_static_id_prefix_4 .legend-item { fill: #7f2704; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx4 .axis-title-x { +#_sample_helper_static_id_prefix_4 .axis-title-x { fill: #7f2704; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx4 .axis-text-x { +#_sample_helper_static_id_prefix_4 .axis-text-x { fill: #7f2704; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx6 .axis-tooltip-text-x { +#_sample_helper_static_id_prefix_6 .axis-tooltip-text-x { fill: #7f2704; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx4 .axis-title-y { +#_sample_helper_static_id_prefix_4 .axis-title-y { fill: #7f2704; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx4 .axis-text-y { +#_sample_helper_static_id_prefix_4 .axis-text-y { fill: #7f2704; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx6 .axis-tooltip-text-y { +#_sample_helper_static_id_prefix_6 .axis-tooltip-text-y { fill: #7f2704; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx4 .facet-strip-text-x { +#_sample_helper_static_id_prefix_4 .facet-strip-text-x { fill: #7f2704; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx4 .facet-strip-text-y { +#_sample_helper_static_id_prefix_4 .facet-strip-text-y { fill: #7f2704; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx6 .tooltip-text { +#_sample_helper_static_id_prefix_6 .tooltip-text { fill: #7f2704; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx6 .tooltip-title { +#_sample_helper_static_id_prefix_6 .tooltip-title { fill: #7f2704; font-weight: bold; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx6 .tooltip-label { +#_sample_helper_static_id_prefix_6 .tooltip-label { fill: #7f2704; font-weight: bold; font-style: normal;font-family: sans-serif; @@ -840,7 +840,7 @@ font-size: 13.0px; } - + @@ -961,7 +961,7 @@ font-size: 13.0px; - + @@ -979,7 +979,7 @@ font-size: 13.0px; - + @@ -1106,7 +1106,7 @@ font-size: 13.0px; - + \ No newline at end of file diff --git a/docs/images/guides/layout/guideStylesOrangeCustomStyle_dark.svg b/docs/images/guides/layout/guideStylesOrangeCustomStyle_dark.svg index 193ff4a01..dc1f669d8 100644 --- a/docs/images/guides/layout/guideStylesOrangeCustomStyle_dark.svg +++ b/docs/images/guides/layout/guideStylesOrangeCustomStyle_dark.svg @@ -10,54 +10,54 @@ text { text-rendering: optimizeLegibility; } -#xXxprefixXx0 .plot-title { +#_sample_helper_static_id_prefix_0 .plot-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; @@ -71,14 +71,14 @@ font-weight: normal; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; @@ -92,14 +92,14 @@ font-weight: normal; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; @@ -129,7 +129,7 @@ font-size: 13.0px; } - + @@ -145,117 +145,117 @@ font-size: 13.0px; text { text-rendering: optimizeLegibility; } -#xXxprefixXx1 .plot-title { +#_sample_helper_static_id_prefix_1 .plot-title { fill: #7f2704; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx1 .plot-subtitle { +#_sample_helper_static_id_prefix_1 .plot-subtitle { fill: #7f2704; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx1 .plot-caption { +#_sample_helper_static_id_prefix_1 .plot-caption { fill: #7f2704; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx1 .hyperlink-element { +#_sample_helper_static_id_prefix_1 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx1 .legend-title { +#_sample_helper_static_id_prefix_1 .legend-title { fill: #7f2704; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx1 .legend-item { +#_sample_helper_static_id_prefix_1 .legend-item { fill: #7f2704; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx1 .axis-title-x { +#_sample_helper_static_id_prefix_1 .axis-title-x { fill: #7f2704; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx1 .axis-text-x { +#_sample_helper_static_id_prefix_1 .axis-text-x { fill: #7f2704; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx3 .axis-tooltip-text-x { +#_sample_helper_static_id_prefix_3 .axis-tooltip-text-x { fill: #7f2704; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx1 .axis-title-y { +#_sample_helper_static_id_prefix_1 .axis-title-y { fill: #7f2704; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx1 .axis-text-y { +#_sample_helper_static_id_prefix_1 .axis-text-y { fill: #7f2704; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx3 .axis-tooltip-text-y { +#_sample_helper_static_id_prefix_3 .axis-tooltip-text-y { fill: #7f2704; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx1 .facet-strip-text-x { +#_sample_helper_static_id_prefix_1 .facet-strip-text-x { fill: #7f2704; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx1 .facet-strip-text-y { +#_sample_helper_static_id_prefix_1 .facet-strip-text-y { fill: #7f2704; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx3 .tooltip-text { +#_sample_helper_static_id_prefix_3 .tooltip-text { fill: #7f2704; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx3 .tooltip-title { +#_sample_helper_static_id_prefix_3 .tooltip-title { fill: #7f2704; font-weight: bold; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx3 .tooltip-label { +#_sample_helper_static_id_prefix_3 .tooltip-label { fill: #7f2704; font-weight: bold; font-style: normal;font-family: sans-serif; @@ -264,7 +264,7 @@ font-size: 13.0px; } - + @@ -431,7 +431,7 @@ font-size: 13.0px; - + @@ -677,7 +677,7 @@ font-size: 13.0px; - + @@ -706,7 +706,7 @@ font-size: 13.0px; - + @@ -721,117 +721,117 @@ font-size: 13.0px; text { text-rendering: optimizeLegibility; } -#xXxprefixXx4 .plot-title { +#_sample_helper_static_id_prefix_4 .plot-title { fill: #7f2704; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx4 .plot-subtitle { +#_sample_helper_static_id_prefix_4 .plot-subtitle { fill: #7f2704; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx4 .plot-caption { +#_sample_helper_static_id_prefix_4 .plot-caption { fill: #7f2704; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx4 .hyperlink-element { +#_sample_helper_static_id_prefix_4 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx4 .legend-title { +#_sample_helper_static_id_prefix_4 .legend-title { fill: #7f2704; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx4 .legend-item { +#_sample_helper_static_id_prefix_4 .legend-item { fill: #7f2704; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx4 .axis-title-x { +#_sample_helper_static_id_prefix_4 .axis-title-x { fill: #7f2704; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx4 .axis-text-x { +#_sample_helper_static_id_prefix_4 .axis-text-x { fill: #7f2704; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx6 .axis-tooltip-text-x { +#_sample_helper_static_id_prefix_6 .axis-tooltip-text-x { fill: #7f2704; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx4 .axis-title-y { +#_sample_helper_static_id_prefix_4 .axis-title-y { fill: #7f2704; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx4 .axis-text-y { +#_sample_helper_static_id_prefix_4 .axis-text-y { fill: #7f2704; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx6 .axis-tooltip-text-y { +#_sample_helper_static_id_prefix_6 .axis-tooltip-text-y { fill: #7f2704; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx4 .facet-strip-text-x { +#_sample_helper_static_id_prefix_4 .facet-strip-text-x { fill: #7f2704; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx4 .facet-strip-text-y { +#_sample_helper_static_id_prefix_4 .facet-strip-text-y { fill: #7f2704; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx6 .tooltip-text { +#_sample_helper_static_id_prefix_6 .tooltip-text { fill: #7f2704; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx6 .tooltip-title { +#_sample_helper_static_id_prefix_6 .tooltip-title { fill: #7f2704; font-weight: bold; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx6 .tooltip-label { +#_sample_helper_static_id_prefix_6 .tooltip-label { fill: #7f2704; font-weight: bold; font-style: normal;font-family: sans-serif; @@ -840,7 +840,7 @@ font-size: 13.0px; } - + @@ -961,7 +961,7 @@ font-size: 13.0px; - + @@ -979,7 +979,7 @@ font-size: 13.0px; - + @@ -1106,7 +1106,7 @@ font-size: 13.0px; - + \ No newline at end of file diff --git a/docs/images/guides/layout/guideStylesPanelGrid.svg b/docs/images/guides/layout/guideStylesPanelGrid.svg index fe45a1696..b8451efbe 100644 --- a/docs/images/guides/layout/guideStylesPanelGrid.svg +++ b/docs/images/guides/layout/guideStylesPanelGrid.svg @@ -10,54 +10,54 @@ text { text-rendering: optimizeLegibility; } -#xXxprefixXx0 .plot-title { +#_sample_helper_static_id_prefix_0 .plot-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; @@ -71,14 +71,14 @@ font-weight: normal; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; @@ -92,14 +92,14 @@ font-weight: normal; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; @@ -129,7 +129,7 @@ font-size: 13.0px; } - + @@ -145,117 +145,117 @@ font-size: 13.0px; text { text-rendering: optimizeLegibility; } -#xXxprefixXx1 .plot-title { +#_sample_helper_static_id_prefix_1 .plot-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx1 .plot-subtitle { +#_sample_helper_static_id_prefix_1 .plot-subtitle { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx1 .plot-caption { +#_sample_helper_static_id_prefix_1 .plot-caption { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx1 .hyperlink-element { +#_sample_helper_static_id_prefix_1 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx1 .legend-title { +#_sample_helper_static_id_prefix_1 .legend-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx1 .legend-item { +#_sample_helper_static_id_prefix_1 .legend-item { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx1 .axis-title-x { +#_sample_helper_static_id_prefix_1 .axis-title-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx1 .axis-text-x { +#_sample_helper_static_id_prefix_1 .axis-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx3 .axis-tooltip-text-x { +#_sample_helper_static_id_prefix_3 .axis-tooltip-text-x { fill: #ffffff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx1 .axis-title-y { +#_sample_helper_static_id_prefix_1 .axis-title-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx1 .axis-text-y { +#_sample_helper_static_id_prefix_1 .axis-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx3 .axis-tooltip-text-y { +#_sample_helper_static_id_prefix_3 .axis-tooltip-text-y { fill: #ffffff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx1 .facet-strip-text-x { +#_sample_helper_static_id_prefix_1 .facet-strip-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx1 .facet-strip-text-y { +#_sample_helper_static_id_prefix_1 .facet-strip-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx3 .tooltip-text { +#_sample_helper_static_id_prefix_3 .tooltip-text { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx3 .tooltip-title { +#_sample_helper_static_id_prefix_3 .tooltip-title { fill: #474747; font-weight: bold; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx3 .tooltip-label { +#_sample_helper_static_id_prefix_3 .tooltip-label { fill: #474747; font-weight: bold; font-style: normal;font-family: sans-serif; @@ -264,7 +264,7 @@ font-size: 13.0px; } - + @@ -357,7 +357,7 @@ font-size: 13.0px; - + @@ -375,7 +375,7 @@ font-size: 13.0px; - + @@ -490,7 +490,7 @@ font-size: 13.0px; - + @@ -505,117 +505,117 @@ font-size: 13.0px; text { text-rendering: optimizeLegibility; } -#xXxprefixXx4 .plot-title { +#_sample_helper_static_id_prefix_4 .plot-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx4 .plot-subtitle { +#_sample_helper_static_id_prefix_4 .plot-subtitle { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx4 .plot-caption { +#_sample_helper_static_id_prefix_4 .plot-caption { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx4 .hyperlink-element { +#_sample_helper_static_id_prefix_4 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx4 .legend-title { +#_sample_helper_static_id_prefix_4 .legend-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx4 .legend-item { +#_sample_helper_static_id_prefix_4 .legend-item { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx4 .axis-title-x { +#_sample_helper_static_id_prefix_4 .axis-title-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx4 .axis-text-x { +#_sample_helper_static_id_prefix_4 .axis-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx6 .axis-tooltip-text-x { +#_sample_helper_static_id_prefix_6 .axis-tooltip-text-x { fill: #ffffff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx4 .axis-title-y { +#_sample_helper_static_id_prefix_4 .axis-title-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx4 .axis-text-y { +#_sample_helper_static_id_prefix_4 .axis-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx6 .axis-tooltip-text-y { +#_sample_helper_static_id_prefix_6 .axis-tooltip-text-y { fill: #ffffff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx4 .facet-strip-text-x { +#_sample_helper_static_id_prefix_4 .facet-strip-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx4 .facet-strip-text-y { +#_sample_helper_static_id_prefix_4 .facet-strip-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx6 .tooltip-text { +#_sample_helper_static_id_prefix_6 .tooltip-text { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx6 .tooltip-title { +#_sample_helper_static_id_prefix_6 .tooltip-title { fill: #474747; font-weight: bold; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx6 .tooltip-label { +#_sample_helper_static_id_prefix_6 .tooltip-label { fill: #474747; font-weight: bold; font-style: normal;font-family: sans-serif; @@ -624,7 +624,7 @@ font-size: 13.0px; } - + @@ -737,7 +737,7 @@ font-size: 13.0px; - + @@ -983,7 +983,7 @@ font-size: 13.0px; - + @@ -1010,7 +1010,7 @@ font-size: 13.0px; - + @@ -1025,117 +1025,117 @@ font-size: 13.0px; text { text-rendering: optimizeLegibility; } -#xXxprefixXx7 .plot-title { +#_sample_helper_static_id_prefix_7 .plot-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx7 .plot-subtitle { +#_sample_helper_static_id_prefix_7 .plot-subtitle { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx7 .plot-caption { +#_sample_helper_static_id_prefix_7 .plot-caption { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx7 .hyperlink-element { +#_sample_helper_static_id_prefix_7 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx7 .legend-title { +#_sample_helper_static_id_prefix_7 .legend-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx7 .legend-item { +#_sample_helper_static_id_prefix_7 .legend-item { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx7 .axis-title-x { +#_sample_helper_static_id_prefix_7 .axis-title-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx7 .axis-text-x { +#_sample_helper_static_id_prefix_7 .axis-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx9 .axis-tooltip-text-x { +#_sample_helper_static_id_prefix_9 .axis-tooltip-text-x { fill: #ffffff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx7 .axis-title-y { +#_sample_helper_static_id_prefix_7 .axis-title-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx7 .axis-text-y { +#_sample_helper_static_id_prefix_7 .axis-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx9 .axis-tooltip-text-y { +#_sample_helper_static_id_prefix_9 .axis-tooltip-text-y { fill: #ffffff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx7 .facet-strip-text-x { +#_sample_helper_static_id_prefix_7 .facet-strip-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx7 .facet-strip-text-y { +#_sample_helper_static_id_prefix_7 .facet-strip-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx9 .tooltip-text { +#_sample_helper_static_id_prefix_9 .tooltip-text { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx9 .tooltip-title { +#_sample_helper_static_id_prefix_9 .tooltip-title { fill: #474747; font-weight: bold; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx9 .tooltip-label { +#_sample_helper_static_id_prefix_9 .tooltip-label { fill: #474747; font-weight: bold; font-style: normal;font-family: sans-serif; @@ -1144,7 +1144,7 @@ font-size: 13.0px; } - + @@ -1275,7 +1275,7 @@ font-size: 13.0px; - + @@ -1521,7 +1521,7 @@ font-size: 13.0px; - + @@ -1551,7 +1551,7 @@ font-size: 13.0px; - + @@ -1566,117 +1566,117 @@ font-size: 13.0px; text { text-rendering: optimizeLegibility; } -#xXxprefixXx10 .plot-title { +#_sample_helper_static_id_prefix_10 .plot-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx10 .plot-subtitle { +#_sample_helper_static_id_prefix_10 .plot-subtitle { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx10 .plot-caption { +#_sample_helper_static_id_prefix_10 .plot-caption { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx10 .hyperlink-element { +#_sample_helper_static_id_prefix_10 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx10 .legend-title { +#_sample_helper_static_id_prefix_10 .legend-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx10 .legend-item { +#_sample_helper_static_id_prefix_10 .legend-item { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx10 .axis-title-x { +#_sample_helper_static_id_prefix_10 .axis-title-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx10 .axis-text-x { +#_sample_helper_static_id_prefix_10 .axis-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx12 .axis-tooltip-text-x { +#_sample_helper_static_id_prefix_12 .axis-tooltip-text-x { fill: #ffffff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx10 .axis-title-y { +#_sample_helper_static_id_prefix_10 .axis-title-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx10 .axis-text-y { +#_sample_helper_static_id_prefix_10 .axis-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx12 .axis-tooltip-text-y { +#_sample_helper_static_id_prefix_12 .axis-tooltip-text-y { fill: #ffffff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx10 .facet-strip-text-x { +#_sample_helper_static_id_prefix_10 .facet-strip-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx10 .facet-strip-text-y { +#_sample_helper_static_id_prefix_10 .facet-strip-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx12 .tooltip-text { +#_sample_helper_static_id_prefix_12 .tooltip-text { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx12 .tooltip-title { +#_sample_helper_static_id_prefix_12 .tooltip-title { fill: #474747; font-weight: bold; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx12 .tooltip-label { +#_sample_helper_static_id_prefix_12 .tooltip-label { fill: #474747; font-weight: bold; font-style: normal;font-family: sans-serif; @@ -1685,7 +1685,7 @@ font-size: 13.0px; } - + @@ -1794,7 +1794,7 @@ font-size: 13.0px; - + @@ -1812,7 +1812,7 @@ font-size: 13.0px; - + @@ -1933,7 +1933,7 @@ font-size: 13.0px; - + \ No newline at end of file diff --git a/docs/images/guides/layout/guideStylesPanelGrid_dark.svg b/docs/images/guides/layout/guideStylesPanelGrid_dark.svg index b548782e2..5c32f2c88 100644 --- a/docs/images/guides/layout/guideStylesPanelGrid_dark.svg +++ b/docs/images/guides/layout/guideStylesPanelGrid_dark.svg @@ -10,54 +10,54 @@ text { text-rendering: optimizeLegibility; } -#xXxprefixXx0 .plot-title { +#_sample_helper_static_id_prefix_0 .plot-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; @@ -71,14 +71,14 @@ font-weight: normal; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; @@ -92,14 +92,14 @@ font-weight: normal; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; @@ -129,7 +129,7 @@ font-size: 13.0px; } - + @@ -145,117 +145,117 @@ font-size: 13.0px; text { text-rendering: optimizeLegibility; } -#xXxprefixXx1 .plot-title { +#_sample_helper_static_id_prefix_1 .plot-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx1 .plot-subtitle { +#_sample_helper_static_id_prefix_1 .plot-subtitle { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx1 .plot-caption { +#_sample_helper_static_id_prefix_1 .plot-caption { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx1 .hyperlink-element { +#_sample_helper_static_id_prefix_1 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx1 .legend-title { +#_sample_helper_static_id_prefix_1 .legend-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx1 .legend-item { +#_sample_helper_static_id_prefix_1 .legend-item { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx1 .axis-title-x { +#_sample_helper_static_id_prefix_1 .axis-title-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx1 .axis-text-x { +#_sample_helper_static_id_prefix_1 .axis-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx3 .axis-tooltip-text-x { +#_sample_helper_static_id_prefix_3 .axis-tooltip-text-x { fill: #303030; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx1 .axis-title-y { +#_sample_helper_static_id_prefix_1 .axis-title-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx1 .axis-text-y { +#_sample_helper_static_id_prefix_1 .axis-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx3 .axis-tooltip-text-y { +#_sample_helper_static_id_prefix_3 .axis-tooltip-text-y { fill: #303030; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx1 .facet-strip-text-x { +#_sample_helper_static_id_prefix_1 .facet-strip-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx1 .facet-strip-text-y { +#_sample_helper_static_id_prefix_1 .facet-strip-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx3 .tooltip-text { +#_sample_helper_static_id_prefix_3 .tooltip-text { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx3 .tooltip-title { +#_sample_helper_static_id_prefix_3 .tooltip-title { fill: #bbbbbb; font-weight: bold; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx3 .tooltip-label { +#_sample_helper_static_id_prefix_3 .tooltip-label { fill: #bbbbbb; font-weight: bold; font-style: normal;font-family: sans-serif; @@ -264,7 +264,7 @@ font-size: 13.0px; } - + @@ -357,7 +357,7 @@ font-size: 13.0px; - + @@ -375,7 +375,7 @@ font-size: 13.0px; - + @@ -490,7 +490,7 @@ font-size: 13.0px; - + @@ -505,117 +505,117 @@ font-size: 13.0px; text { text-rendering: optimizeLegibility; } -#xXxprefixXx4 .plot-title { +#_sample_helper_static_id_prefix_4 .plot-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx4 .plot-subtitle { +#_sample_helper_static_id_prefix_4 .plot-subtitle { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx4 .plot-caption { +#_sample_helper_static_id_prefix_4 .plot-caption { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx4 .hyperlink-element { +#_sample_helper_static_id_prefix_4 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx4 .legend-title { +#_sample_helper_static_id_prefix_4 .legend-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx4 .legend-item { +#_sample_helper_static_id_prefix_4 .legend-item { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx4 .axis-title-x { +#_sample_helper_static_id_prefix_4 .axis-title-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx4 .axis-text-x { +#_sample_helper_static_id_prefix_4 .axis-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx6 .axis-tooltip-text-x { +#_sample_helper_static_id_prefix_6 .axis-tooltip-text-x { fill: #303030; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx4 .axis-title-y { +#_sample_helper_static_id_prefix_4 .axis-title-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx4 .axis-text-y { +#_sample_helper_static_id_prefix_4 .axis-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx6 .axis-tooltip-text-y { +#_sample_helper_static_id_prefix_6 .axis-tooltip-text-y { fill: #303030; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx4 .facet-strip-text-x { +#_sample_helper_static_id_prefix_4 .facet-strip-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx4 .facet-strip-text-y { +#_sample_helper_static_id_prefix_4 .facet-strip-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx6 .tooltip-text { +#_sample_helper_static_id_prefix_6 .tooltip-text { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx6 .tooltip-title { +#_sample_helper_static_id_prefix_6 .tooltip-title { fill: #bbbbbb; font-weight: bold; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx6 .tooltip-label { +#_sample_helper_static_id_prefix_6 .tooltip-label { fill: #bbbbbb; font-weight: bold; font-style: normal;font-family: sans-serif; @@ -624,7 +624,7 @@ font-size: 13.0px; } - + @@ -737,7 +737,7 @@ font-size: 13.0px; - + @@ -983,7 +983,7 @@ font-size: 13.0px; - + @@ -1010,7 +1010,7 @@ font-size: 13.0px; - + @@ -1025,117 +1025,117 @@ font-size: 13.0px; text { text-rendering: optimizeLegibility; } -#xXxprefixXx7 .plot-title { +#_sample_helper_static_id_prefix_7 .plot-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx7 .plot-subtitle { +#_sample_helper_static_id_prefix_7 .plot-subtitle { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx7 .plot-caption { +#_sample_helper_static_id_prefix_7 .plot-caption { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx7 .hyperlink-element { +#_sample_helper_static_id_prefix_7 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx7 .legend-title { +#_sample_helper_static_id_prefix_7 .legend-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx7 .legend-item { +#_sample_helper_static_id_prefix_7 .legend-item { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx7 .axis-title-x { +#_sample_helper_static_id_prefix_7 .axis-title-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx7 .axis-text-x { +#_sample_helper_static_id_prefix_7 .axis-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx9 .axis-tooltip-text-x { +#_sample_helper_static_id_prefix_9 .axis-tooltip-text-x { fill: #303030; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx7 .axis-title-y { +#_sample_helper_static_id_prefix_7 .axis-title-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx7 .axis-text-y { +#_sample_helper_static_id_prefix_7 .axis-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx9 .axis-tooltip-text-y { +#_sample_helper_static_id_prefix_9 .axis-tooltip-text-y { fill: #303030; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx7 .facet-strip-text-x { +#_sample_helper_static_id_prefix_7 .facet-strip-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx7 .facet-strip-text-y { +#_sample_helper_static_id_prefix_7 .facet-strip-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx9 .tooltip-text { +#_sample_helper_static_id_prefix_9 .tooltip-text { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx9 .tooltip-title { +#_sample_helper_static_id_prefix_9 .tooltip-title { fill: #bbbbbb; font-weight: bold; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx9 .tooltip-label { +#_sample_helper_static_id_prefix_9 .tooltip-label { fill: #bbbbbb; font-weight: bold; font-style: normal;font-family: sans-serif; @@ -1144,7 +1144,7 @@ font-size: 13.0px; } - + @@ -1275,7 +1275,7 @@ font-size: 13.0px; - + @@ -1521,7 +1521,7 @@ font-size: 13.0px; - + @@ -1551,7 +1551,7 @@ font-size: 13.0px; - + @@ -1566,117 +1566,117 @@ font-size: 13.0px; text { text-rendering: optimizeLegibility; } -#xXxprefixXx10 .plot-title { +#_sample_helper_static_id_prefix_10 .plot-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx10 .plot-subtitle { +#_sample_helper_static_id_prefix_10 .plot-subtitle { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx10 .plot-caption { +#_sample_helper_static_id_prefix_10 .plot-caption { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx10 .hyperlink-element { +#_sample_helper_static_id_prefix_10 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx10 .legend-title { +#_sample_helper_static_id_prefix_10 .legend-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx10 .legend-item { +#_sample_helper_static_id_prefix_10 .legend-item { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx10 .axis-title-x { +#_sample_helper_static_id_prefix_10 .axis-title-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx10 .axis-text-x { +#_sample_helper_static_id_prefix_10 .axis-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx12 .axis-tooltip-text-x { +#_sample_helper_static_id_prefix_12 .axis-tooltip-text-x { fill: #303030; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx10 .axis-title-y { +#_sample_helper_static_id_prefix_10 .axis-title-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx10 .axis-text-y { +#_sample_helper_static_id_prefix_10 .axis-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx12 .axis-tooltip-text-y { +#_sample_helper_static_id_prefix_12 .axis-tooltip-text-y { fill: #303030; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx10 .facet-strip-text-x { +#_sample_helper_static_id_prefix_10 .facet-strip-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx10 .facet-strip-text-y { +#_sample_helper_static_id_prefix_10 .facet-strip-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx12 .tooltip-text { +#_sample_helper_static_id_prefix_12 .tooltip-text { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx12 .tooltip-title { +#_sample_helper_static_id_prefix_12 .tooltip-title { fill: #bbbbbb; font-weight: bold; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx12 .tooltip-label { +#_sample_helper_static_id_prefix_12 .tooltip-label { fill: #bbbbbb; font-weight: bold; font-style: normal;font-family: sans-serif; @@ -1685,7 +1685,7 @@ font-size: 13.0px; } - + @@ -1794,7 +1794,7 @@ font-size: 13.0px; - + @@ -1812,7 +1812,7 @@ font-size: 13.0px; - + @@ -1933,7 +1933,7 @@ font-size: 13.0px; - + \ No newline at end of file diff --git a/docs/images/guides/layout/guideStylesPointPlotWithoutStyle.svg b/docs/images/guides/layout/guideStylesPointPlotWithoutStyle.svg index 265e6044d..8fb68fd73 100644 --- a/docs/images/guides/layout/guideStylesPointPlotWithoutStyle.svg +++ b/docs/images/guides/layout/guideStylesPointPlotWithoutStyle.svg @@ -10,117 +10,117 @@ text { text-rendering: optimizeLegibility; } -#xXxprefixXx0 .plot-title { +#_sample_helper_static_id_prefix_0 .plot-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-x { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-x { fill: #ffffff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-y { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-y { fill: #ffffff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-text { +#_sample_helper_static_id_prefix_2 .tooltip-text { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-title { +#_sample_helper_static_id_prefix_2 .tooltip-title { fill: #474747; font-weight: bold; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-label { +#_sample_helper_static_id_prefix_2 .tooltip-label { fill: #474747; font-weight: bold; font-style: normal;font-family: sans-serif; @@ -129,7 +129,7 @@ font-size: 13.0px; } - + @@ -169,7 +169,7 @@ font-size: 13.0px; - + @@ -415,7 +415,7 @@ font-size: 13.0px; - + @@ -546,6 +546,6 @@ font-size: 13.0px; - + \ No newline at end of file diff --git a/docs/images/guides/layout/guideStylesPointPlotWithoutStyle_dark.svg b/docs/images/guides/layout/guideStylesPointPlotWithoutStyle_dark.svg index 141182b30..dcd2b7077 100644 --- a/docs/images/guides/layout/guideStylesPointPlotWithoutStyle_dark.svg +++ b/docs/images/guides/layout/guideStylesPointPlotWithoutStyle_dark.svg @@ -10,117 +10,117 @@ text { text-rendering: optimizeLegibility; } -#xXxprefixXx0 .plot-title { +#_sample_helper_static_id_prefix_0 .plot-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-x { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-x { fill: #303030; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-y { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-y { fill: #303030; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-text { +#_sample_helper_static_id_prefix_2 .tooltip-text { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-title { +#_sample_helper_static_id_prefix_2 .tooltip-title { fill: #bbbbbb; font-weight: bold; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-label { +#_sample_helper_static_id_prefix_2 .tooltip-label { fill: #bbbbbb; font-weight: bold; font-style: normal;font-family: sans-serif; @@ -129,7 +129,7 @@ font-size: 13.0px; } - + @@ -278,7 +278,7 @@ font-size: 13.0px; - + @@ -524,7 +524,7 @@ font-size: 13.0px; - + @@ -546,6 +546,6 @@ font-size: 13.0px; - + \ No newline at end of file diff --git a/docs/images/guides/layout/guideStylesStripBackground.svg b/docs/images/guides/layout/guideStylesStripBackground.svg index b7e33245e..f8896a18e 100644 --- a/docs/images/guides/layout/guideStylesStripBackground.svg +++ b/docs/images/guides/layout/guideStylesStripBackground.svg @@ -10,54 +10,54 @@ text { text-rendering: optimizeLegibility; } -#xXxprefixXx0 .plot-title { +#_sample_helper_static_id_prefix_0 .plot-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; @@ -71,14 +71,14 @@ font-weight: normal; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; @@ -92,14 +92,14 @@ font-weight: normal; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; @@ -129,7 +129,7 @@ font-size: 13.0px; } - + @@ -145,117 +145,117 @@ font-size: 13.0px; text { text-rendering: optimizeLegibility; } -#xXxprefixXx1 .plot-title { +#_sample_helper_static_id_prefix_1 .plot-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx1 .plot-subtitle { +#_sample_helper_static_id_prefix_1 .plot-subtitle { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx1 .plot-caption { +#_sample_helper_static_id_prefix_1 .plot-caption { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx1 .hyperlink-element { +#_sample_helper_static_id_prefix_1 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx1 .legend-title { +#_sample_helper_static_id_prefix_1 .legend-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx1 .legend-item { +#_sample_helper_static_id_prefix_1 .legend-item { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx1 .axis-title-x { +#_sample_helper_static_id_prefix_1 .axis-title-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx1 .axis-text-x { +#_sample_helper_static_id_prefix_1 .axis-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx4 .axis-tooltip-text-x { +#_sample_helper_static_id_prefix_4 .axis-tooltip-text-x { fill: #ffffff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx1 .axis-title-y { +#_sample_helper_static_id_prefix_1 .axis-title-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx1 .axis-text-y { +#_sample_helper_static_id_prefix_1 .axis-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx4 .axis-tooltip-text-y { +#_sample_helper_static_id_prefix_4 .axis-tooltip-text-y { fill: #ffffff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx1 .facet-strip-text-x { +#_sample_helper_static_id_prefix_1 .facet-strip-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx1 .facet-strip-text-y { +#_sample_helper_static_id_prefix_1 .facet-strip-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx4 .tooltip-text { +#_sample_helper_static_id_prefix_4 .tooltip-text { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx4 .tooltip-title { +#_sample_helper_static_id_prefix_4 .tooltip-title { fill: #474747; font-weight: bold; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx4 .tooltip-label { +#_sample_helper_static_id_prefix_4 .tooltip-label { fill: #474747; font-weight: bold; font-style: normal;font-family: sans-serif; @@ -264,7 +264,7 @@ font-size: 13.0px; } - + @@ -414,7 +414,7 @@ font-size: 13.0px; - + @@ -428,7 +428,7 @@ font-size: 13.0px; - + @@ -548,7 +548,7 @@ font-size: 13.0px; - + @@ -566,7 +566,7 @@ font-size: 13.0px; - + @@ -700,7 +700,7 @@ font-size: 13.0px; - + @@ -715,117 +715,117 @@ font-size: 13.0px; text { text-rendering: optimizeLegibility; } -#xXxprefixXx5 .plot-title { +#_sample_helper_static_id_prefix_5 .plot-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx5 .plot-subtitle { +#_sample_helper_static_id_prefix_5 .plot-subtitle { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx5 .plot-caption { +#_sample_helper_static_id_prefix_5 .plot-caption { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx5 .hyperlink-element { +#_sample_helper_static_id_prefix_5 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx5 .legend-title { +#_sample_helper_static_id_prefix_5 .legend-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx5 .legend-item { +#_sample_helper_static_id_prefix_5 .legend-item { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx5 .axis-title-x { +#_sample_helper_static_id_prefix_5 .axis-title-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx5 .axis-text-x { +#_sample_helper_static_id_prefix_5 .axis-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx8 .axis-tooltip-text-x { +#_sample_helper_static_id_prefix_8 .axis-tooltip-text-x { fill: #ffffff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx5 .axis-title-y { +#_sample_helper_static_id_prefix_5 .axis-title-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx5 .axis-text-y { +#_sample_helper_static_id_prefix_5 .axis-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx8 .axis-tooltip-text-y { +#_sample_helper_static_id_prefix_8 .axis-tooltip-text-y { fill: #ffffff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx5 .facet-strip-text-x { +#_sample_helper_static_id_prefix_5 .facet-strip-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx5 .facet-strip-text-y { +#_sample_helper_static_id_prefix_5 .facet-strip-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx8 .tooltip-text { +#_sample_helper_static_id_prefix_8 .tooltip-text { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx8 .tooltip-title { +#_sample_helper_static_id_prefix_8 .tooltip-title { fill: #474747; font-weight: bold; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx8 .tooltip-label { +#_sample_helper_static_id_prefix_8 .tooltip-label { fill: #474747; font-weight: bold; font-style: normal;font-family: sans-serif; @@ -834,7 +834,7 @@ font-size: 13.0px; } - + @@ -954,7 +954,7 @@ font-size: 13.0px; - + @@ -968,7 +968,7 @@ font-size: 13.0px; - + @@ -1066,7 +1066,7 @@ font-size: 13.0px; - + @@ -1084,7 +1084,7 @@ font-size: 13.0px; - + @@ -1206,7 +1206,7 @@ font-size: 13.0px; - + @@ -1221,117 +1221,117 @@ font-size: 13.0px; text { text-rendering: optimizeLegibility; } -#xXxprefixXx9 .plot-title { +#_sample_helper_static_id_prefix_9 .plot-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx9 .plot-subtitle { +#_sample_helper_static_id_prefix_9 .plot-subtitle { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx9 .plot-caption { +#_sample_helper_static_id_prefix_9 .plot-caption { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx9 .hyperlink-element { +#_sample_helper_static_id_prefix_9 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx9 .legend-title { +#_sample_helper_static_id_prefix_9 .legend-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx9 .legend-item { +#_sample_helper_static_id_prefix_9 .legend-item { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx9 .axis-title-x { +#_sample_helper_static_id_prefix_9 .axis-title-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx9 .axis-text-x { +#_sample_helper_static_id_prefix_9 .axis-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx12 .axis-tooltip-text-x { +#_sample_helper_static_id_prefix_12 .axis-tooltip-text-x { fill: #ffffff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx9 .axis-title-y { +#_sample_helper_static_id_prefix_9 .axis-title-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx9 .axis-text-y { +#_sample_helper_static_id_prefix_9 .axis-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx12 .axis-tooltip-text-y { +#_sample_helper_static_id_prefix_12 .axis-tooltip-text-y { fill: #ffffff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx9 .facet-strip-text-x { +#_sample_helper_static_id_prefix_9 .facet-strip-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx9 .facet-strip-text-y { +#_sample_helper_static_id_prefix_9 .facet-strip-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx12 .tooltip-text { +#_sample_helper_static_id_prefix_12 .tooltip-text { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx12 .tooltip-title { +#_sample_helper_static_id_prefix_12 .tooltip-title { fill: #474747; font-weight: bold; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx12 .tooltip-label { +#_sample_helper_static_id_prefix_12 .tooltip-label { fill: #474747; font-weight: bold; font-style: normal;font-family: sans-serif; @@ -1340,7 +1340,7 @@ font-size: 13.0px; } - + @@ -1460,7 +1460,7 @@ font-size: 13.0px; - + @@ -1474,7 +1474,7 @@ font-size: 13.0px; - + @@ -1570,7 +1570,7 @@ font-size: 13.0px; - + @@ -1588,7 +1588,7 @@ font-size: 13.0px; - + @@ -1708,7 +1708,7 @@ font-size: 13.0px; - + @@ -1723,117 +1723,117 @@ font-size: 13.0px; text { text-rendering: optimizeLegibility; } -#xXxprefixXx13 .plot-title { +#_sample_helper_static_id_prefix_13 .plot-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx13 .plot-subtitle { +#_sample_helper_static_id_prefix_13 .plot-subtitle { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx13 .plot-caption { +#_sample_helper_static_id_prefix_13 .plot-caption { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx13 .hyperlink-element { +#_sample_helper_static_id_prefix_13 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx13 .legend-title { +#_sample_helper_static_id_prefix_13 .legend-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx13 .legend-item { +#_sample_helper_static_id_prefix_13 .legend-item { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx13 .axis-title-x { +#_sample_helper_static_id_prefix_13 .axis-title-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx13 .axis-text-x { +#_sample_helper_static_id_prefix_13 .axis-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx16 .axis-tooltip-text-x { +#_sample_helper_static_id_prefix_16 .axis-tooltip-text-x { fill: #ffffff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx13 .axis-title-y { +#_sample_helper_static_id_prefix_13 .axis-title-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx13 .axis-text-y { +#_sample_helper_static_id_prefix_13 .axis-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx16 .axis-tooltip-text-y { +#_sample_helper_static_id_prefix_16 .axis-tooltip-text-y { fill: #ffffff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx13 .facet-strip-text-x { +#_sample_helper_static_id_prefix_13 .facet-strip-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx13 .facet-strip-text-y { +#_sample_helper_static_id_prefix_13 .facet-strip-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx16 .tooltip-text { +#_sample_helper_static_id_prefix_16 .tooltip-text { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx16 .tooltip-title { +#_sample_helper_static_id_prefix_16 .tooltip-title { fill: #474747; font-weight: bold; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx16 .tooltip-label { +#_sample_helper_static_id_prefix_16 .tooltip-label { fill: #474747; font-weight: bold; font-style: normal;font-family: sans-serif; @@ -1842,7 +1842,7 @@ font-size: 13.0px; } - + @@ -1962,7 +1962,7 @@ font-size: 13.0px; - + @@ -1976,7 +1976,7 @@ font-size: 13.0px; - + @@ -2067,7 +2067,7 @@ font-size: 13.0px; - + @@ -2085,7 +2085,7 @@ font-size: 13.0px; - + @@ -2200,7 +2200,7 @@ font-size: 13.0px; - + \ No newline at end of file diff --git a/docs/images/guides/layout/guideStylesStripBackground_dark.svg b/docs/images/guides/layout/guideStylesStripBackground_dark.svg index 052718026..f49bcb925 100644 --- a/docs/images/guides/layout/guideStylesStripBackground_dark.svg +++ b/docs/images/guides/layout/guideStylesStripBackground_dark.svg @@ -10,54 +10,54 @@ text { text-rendering: optimizeLegibility; } -#xXxprefixXx0 .plot-title { +#_sample_helper_static_id_prefix_0 .plot-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; @@ -71,14 +71,14 @@ font-weight: normal; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; @@ -92,14 +92,14 @@ font-weight: normal; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; @@ -129,7 +129,7 @@ font-size: 13.0px; } - + @@ -145,117 +145,117 @@ font-size: 13.0px; text { text-rendering: optimizeLegibility; } -#xXxprefixXx1 .plot-title { +#_sample_helper_static_id_prefix_1 .plot-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx1 .plot-subtitle { +#_sample_helper_static_id_prefix_1 .plot-subtitle { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx1 .plot-caption { +#_sample_helper_static_id_prefix_1 .plot-caption { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx1 .hyperlink-element { +#_sample_helper_static_id_prefix_1 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx1 .legend-title { +#_sample_helper_static_id_prefix_1 .legend-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx1 .legend-item { +#_sample_helper_static_id_prefix_1 .legend-item { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx1 .axis-title-x { +#_sample_helper_static_id_prefix_1 .axis-title-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx1 .axis-text-x { +#_sample_helper_static_id_prefix_1 .axis-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx4 .axis-tooltip-text-x { +#_sample_helper_static_id_prefix_4 .axis-tooltip-text-x { fill: #303030; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx1 .axis-title-y { +#_sample_helper_static_id_prefix_1 .axis-title-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx1 .axis-text-y { +#_sample_helper_static_id_prefix_1 .axis-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx4 .axis-tooltip-text-y { +#_sample_helper_static_id_prefix_4 .axis-tooltip-text-y { fill: #303030; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx1 .facet-strip-text-x { +#_sample_helper_static_id_prefix_1 .facet-strip-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx1 .facet-strip-text-y { +#_sample_helper_static_id_prefix_1 .facet-strip-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx4 .tooltip-text { +#_sample_helper_static_id_prefix_4 .tooltip-text { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx4 .tooltip-title { +#_sample_helper_static_id_prefix_4 .tooltip-title { fill: #bbbbbb; font-weight: bold; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx4 .tooltip-label { +#_sample_helper_static_id_prefix_4 .tooltip-label { fill: #bbbbbb; font-weight: bold; font-style: normal;font-family: sans-serif; @@ -264,7 +264,7 @@ font-size: 13.0px; } - + @@ -414,7 +414,7 @@ font-size: 13.0px; - + @@ -428,7 +428,7 @@ font-size: 13.0px; - + @@ -548,7 +548,7 @@ font-size: 13.0px; - + @@ -566,7 +566,7 @@ font-size: 13.0px; - + @@ -700,7 +700,7 @@ font-size: 13.0px; - + @@ -715,117 +715,117 @@ font-size: 13.0px; text { text-rendering: optimizeLegibility; } -#xXxprefixXx5 .plot-title { +#_sample_helper_static_id_prefix_5 .plot-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx5 .plot-subtitle { +#_sample_helper_static_id_prefix_5 .plot-subtitle { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx5 .plot-caption { +#_sample_helper_static_id_prefix_5 .plot-caption { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx5 .hyperlink-element { +#_sample_helper_static_id_prefix_5 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx5 .legend-title { +#_sample_helper_static_id_prefix_5 .legend-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx5 .legend-item { +#_sample_helper_static_id_prefix_5 .legend-item { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx5 .axis-title-x { +#_sample_helper_static_id_prefix_5 .axis-title-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx5 .axis-text-x { +#_sample_helper_static_id_prefix_5 .axis-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx8 .axis-tooltip-text-x { +#_sample_helper_static_id_prefix_8 .axis-tooltip-text-x { fill: #303030; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx5 .axis-title-y { +#_sample_helper_static_id_prefix_5 .axis-title-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx5 .axis-text-y { +#_sample_helper_static_id_prefix_5 .axis-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx8 .axis-tooltip-text-y { +#_sample_helper_static_id_prefix_8 .axis-tooltip-text-y { fill: #303030; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx5 .facet-strip-text-x { +#_sample_helper_static_id_prefix_5 .facet-strip-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx5 .facet-strip-text-y { +#_sample_helper_static_id_prefix_5 .facet-strip-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx8 .tooltip-text { +#_sample_helper_static_id_prefix_8 .tooltip-text { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx8 .tooltip-title { +#_sample_helper_static_id_prefix_8 .tooltip-title { fill: #bbbbbb; font-weight: bold; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx8 .tooltip-label { +#_sample_helper_static_id_prefix_8 .tooltip-label { fill: #bbbbbb; font-weight: bold; font-style: normal;font-family: sans-serif; @@ -834,7 +834,7 @@ font-size: 13.0px; } - + @@ -954,7 +954,7 @@ font-size: 13.0px; - + @@ -968,7 +968,7 @@ font-size: 13.0px; - + @@ -1066,7 +1066,7 @@ font-size: 13.0px; - + @@ -1084,7 +1084,7 @@ font-size: 13.0px; - + @@ -1206,7 +1206,7 @@ font-size: 13.0px; - + @@ -1221,117 +1221,117 @@ font-size: 13.0px; text { text-rendering: optimizeLegibility; } -#xXxprefixXx9 .plot-title { +#_sample_helper_static_id_prefix_9 .plot-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx9 .plot-subtitle { +#_sample_helper_static_id_prefix_9 .plot-subtitle { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx9 .plot-caption { +#_sample_helper_static_id_prefix_9 .plot-caption { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx9 .hyperlink-element { +#_sample_helper_static_id_prefix_9 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx9 .legend-title { +#_sample_helper_static_id_prefix_9 .legend-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx9 .legend-item { +#_sample_helper_static_id_prefix_9 .legend-item { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx9 .axis-title-x { +#_sample_helper_static_id_prefix_9 .axis-title-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx9 .axis-text-x { +#_sample_helper_static_id_prefix_9 .axis-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx12 .axis-tooltip-text-x { +#_sample_helper_static_id_prefix_12 .axis-tooltip-text-x { fill: #303030; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx9 .axis-title-y { +#_sample_helper_static_id_prefix_9 .axis-title-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx9 .axis-text-y { +#_sample_helper_static_id_prefix_9 .axis-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx12 .axis-tooltip-text-y { +#_sample_helper_static_id_prefix_12 .axis-tooltip-text-y { fill: #303030; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx9 .facet-strip-text-x { +#_sample_helper_static_id_prefix_9 .facet-strip-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx9 .facet-strip-text-y { +#_sample_helper_static_id_prefix_9 .facet-strip-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx12 .tooltip-text { +#_sample_helper_static_id_prefix_12 .tooltip-text { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx12 .tooltip-title { +#_sample_helper_static_id_prefix_12 .tooltip-title { fill: #bbbbbb; font-weight: bold; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx12 .tooltip-label { +#_sample_helper_static_id_prefix_12 .tooltip-label { fill: #bbbbbb; font-weight: bold; font-style: normal;font-family: sans-serif; @@ -1340,7 +1340,7 @@ font-size: 13.0px; } - + @@ -1460,7 +1460,7 @@ font-size: 13.0px; - + @@ -1474,7 +1474,7 @@ font-size: 13.0px; - + @@ -1570,7 +1570,7 @@ font-size: 13.0px; - + @@ -1588,7 +1588,7 @@ font-size: 13.0px; - + @@ -1708,7 +1708,7 @@ font-size: 13.0px; - + @@ -1723,117 +1723,117 @@ font-size: 13.0px; text { text-rendering: optimizeLegibility; } -#xXxprefixXx13 .plot-title { +#_sample_helper_static_id_prefix_13 .plot-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx13 .plot-subtitle { +#_sample_helper_static_id_prefix_13 .plot-subtitle { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx13 .plot-caption { +#_sample_helper_static_id_prefix_13 .plot-caption { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx13 .hyperlink-element { +#_sample_helper_static_id_prefix_13 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx13 .legend-title { +#_sample_helper_static_id_prefix_13 .legend-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx13 .legend-item { +#_sample_helper_static_id_prefix_13 .legend-item { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx13 .axis-title-x { +#_sample_helper_static_id_prefix_13 .axis-title-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx13 .axis-text-x { +#_sample_helper_static_id_prefix_13 .axis-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx16 .axis-tooltip-text-x { +#_sample_helper_static_id_prefix_16 .axis-tooltip-text-x { fill: #303030; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx13 .axis-title-y { +#_sample_helper_static_id_prefix_13 .axis-title-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx13 .axis-text-y { +#_sample_helper_static_id_prefix_13 .axis-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx16 .axis-tooltip-text-y { +#_sample_helper_static_id_prefix_16 .axis-tooltip-text-y { fill: #303030; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx13 .facet-strip-text-x { +#_sample_helper_static_id_prefix_13 .facet-strip-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx13 .facet-strip-text-y { +#_sample_helper_static_id_prefix_13 .facet-strip-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx16 .tooltip-text { +#_sample_helper_static_id_prefix_16 .tooltip-text { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx16 .tooltip-title { +#_sample_helper_static_id_prefix_16 .tooltip-title { fill: #bbbbbb; font-weight: bold; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx16 .tooltip-label { +#_sample_helper_static_id_prefix_16 .tooltip-label { fill: #bbbbbb; font-weight: bold; font-style: normal;font-family: sans-serif; @@ -1842,7 +1842,7 @@ font-size: 13.0px; } - + @@ -1962,7 +1962,7 @@ font-size: 13.0px; - + @@ -1976,7 +1976,7 @@ font-size: 13.0px; - + @@ -2067,7 +2067,7 @@ font-size: 13.0px; - + @@ -2085,7 +2085,7 @@ font-size: 13.0px; - + @@ -2200,7 +2200,7 @@ font-size: 13.0px; - + \ No newline at end of file diff --git a/docs/images/guides/layout/guideStylesTextLegendStrip.svg b/docs/images/guides/layout/guideStylesTextLegendStrip.svg index d61e5430b..6044d11fd 100644 --- a/docs/images/guides/layout/guideStylesTextLegendStrip.svg +++ b/docs/images/guides/layout/guideStylesTextLegendStrip.svg @@ -10,54 +10,54 @@ text { text-rendering: optimizeLegibility; } -#xXxprefixXx0 .plot-title { +#_sample_helper_static_id_prefix_0 .plot-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; @@ -71,14 +71,14 @@ font-weight: normal; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; @@ -92,14 +92,14 @@ font-weight: normal; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; @@ -129,7 +129,7 @@ font-size: 13.0px; } - + @@ -145,117 +145,117 @@ font-size: 13.0px; text { text-rendering: optimizeLegibility; } -#xXxprefixXx1 .plot-title { +#_sample_helper_static_id_prefix_1 .plot-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx1 .plot-subtitle { +#_sample_helper_static_id_prefix_1 .plot-subtitle { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx1 .plot-caption { +#_sample_helper_static_id_prefix_1 .plot-caption { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx1 .hyperlink-element { +#_sample_helper_static_id_prefix_1 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx1 .legend-title { +#_sample_helper_static_id_prefix_1 .legend-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx1 .legend-item { +#_sample_helper_static_id_prefix_1 .legend-item { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx1 .axis-title-x { +#_sample_helper_static_id_prefix_1 .axis-title-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx1 .axis-text-x { +#_sample_helper_static_id_prefix_1 .axis-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx4 .axis-tooltip-text-x { +#_sample_helper_static_id_prefix_4 .axis-tooltip-text-x { fill: #ffffff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx1 .axis-title-y { +#_sample_helper_static_id_prefix_1 .axis-title-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx1 .axis-text-y { +#_sample_helper_static_id_prefix_1 .axis-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx4 .axis-tooltip-text-y { +#_sample_helper_static_id_prefix_4 .axis-tooltip-text-y { fill: #ffffff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx1 .facet-strip-text-x { +#_sample_helper_static_id_prefix_1 .facet-strip-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx1 .facet-strip-text-y { +#_sample_helper_static_id_prefix_1 .facet-strip-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx4 .tooltip-text { +#_sample_helper_static_id_prefix_4 .tooltip-text { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx4 .tooltip-title { +#_sample_helper_static_id_prefix_4 .tooltip-title { fill: #474747; font-weight: bold; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx4 .tooltip-label { +#_sample_helper_static_id_prefix_4 .tooltip-label { fill: #474747; font-weight: bold; font-style: normal;font-family: sans-serif; @@ -264,7 +264,7 @@ font-size: 13.0px; } - + @@ -384,7 +384,7 @@ font-size: 13.0px; - + @@ -398,7 +398,7 @@ font-size: 13.0px; - + @@ -494,7 +494,7 @@ font-size: 13.0px; - + @@ -512,7 +512,7 @@ font-size: 13.0px; - + @@ -632,7 +632,7 @@ font-size: 13.0px; - + @@ -647,117 +647,117 @@ font-size: 13.0px; text { text-rendering: optimizeLegibility; } -#xXxprefixXx5 .plot-title { +#_sample_helper_static_id_prefix_5 .plot-title { fill: #31a354; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx5 .plot-subtitle { +#_sample_helper_static_id_prefix_5 .plot-subtitle { fill: #31a354; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx5 .plot-caption { +#_sample_helper_static_id_prefix_5 .plot-caption { fill: #31a354; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx5 .hyperlink-element { +#_sample_helper_static_id_prefix_5 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx5 .legend-title { +#_sample_helper_static_id_prefix_5 .legend-title { fill: #31a354; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx5 .legend-item { +#_sample_helper_static_id_prefix_5 .legend-item { fill: #31a354; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx5 .axis-title-x { +#_sample_helper_static_id_prefix_5 .axis-title-x { fill: #31a354; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx5 .axis-text-x { +#_sample_helper_static_id_prefix_5 .axis-text-x { fill: #31a354; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx8 .axis-tooltip-text-x { +#_sample_helper_static_id_prefix_8 .axis-tooltip-text-x { fill: #ffffff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx5 .axis-title-y { +#_sample_helper_static_id_prefix_5 .axis-title-y { fill: #31a354; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx5 .axis-text-y { +#_sample_helper_static_id_prefix_5 .axis-text-y { fill: #31a354; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx8 .axis-tooltip-text-y { +#_sample_helper_static_id_prefix_8 .axis-tooltip-text-y { fill: #ffffff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx5 .facet-strip-text-x { +#_sample_helper_static_id_prefix_5 .facet-strip-text-x { fill: #31a354; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx5 .facet-strip-text-y { +#_sample_helper_static_id_prefix_5 .facet-strip-text-y { fill: #31a354; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx8 .tooltip-text { +#_sample_helper_static_id_prefix_8 .tooltip-text { fill: #31a354; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx8 .tooltip-title { +#_sample_helper_static_id_prefix_8 .tooltip-title { fill: #31a354; font-weight: bold; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx8 .tooltip-label { +#_sample_helper_static_id_prefix_8 .tooltip-label { fill: #31a354; font-weight: bold; font-style: normal;font-family: sans-serif; @@ -766,7 +766,7 @@ font-size: 13.0px; } - + @@ -886,7 +886,7 @@ font-size: 13.0px; - + @@ -900,7 +900,7 @@ font-size: 13.0px; - + @@ -996,7 +996,7 @@ font-size: 13.0px; - + @@ -1014,7 +1014,7 @@ font-size: 13.0px; - + @@ -1134,7 +1134,7 @@ font-size: 13.0px; - + @@ -1149,117 +1149,117 @@ font-size: 13.0px; text { text-rendering: optimizeLegibility; } -#xXxprefixXx9 .plot-title { +#_sample_helper_static_id_prefix_9 .plot-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx9 .plot-subtitle { +#_sample_helper_static_id_prefix_9 .plot-subtitle { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx9 .plot-caption { +#_sample_helper_static_id_prefix_9 .plot-caption { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx9 .hyperlink-element { +#_sample_helper_static_id_prefix_9 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx9 .legend-title { +#_sample_helper_static_id_prefix_9 .legend-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx9 .legend-item { +#_sample_helper_static_id_prefix_9 .legend-item { fill: #31a354; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx9 .axis-title-x { +#_sample_helper_static_id_prefix_9 .axis-title-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx9 .axis-text-x { +#_sample_helper_static_id_prefix_9 .axis-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx12 .axis-tooltip-text-x { +#_sample_helper_static_id_prefix_12 .axis-tooltip-text-x { fill: #ffffff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx9 .axis-title-y { +#_sample_helper_static_id_prefix_9 .axis-title-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx9 .axis-text-y { +#_sample_helper_static_id_prefix_9 .axis-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx12 .axis-tooltip-text-y { +#_sample_helper_static_id_prefix_12 .axis-tooltip-text-y { fill: #ffffff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx9 .facet-strip-text-x { +#_sample_helper_static_id_prefix_9 .facet-strip-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx9 .facet-strip-text-y { +#_sample_helper_static_id_prefix_9 .facet-strip-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx12 .tooltip-text { +#_sample_helper_static_id_prefix_12 .tooltip-text { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx12 .tooltip-title { +#_sample_helper_static_id_prefix_12 .tooltip-title { fill: #474747; font-weight: bold; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx12 .tooltip-label { +#_sample_helper_static_id_prefix_12 .tooltip-label { fill: #474747; font-weight: bold; font-style: normal;font-family: sans-serif; @@ -1268,7 +1268,7 @@ font-size: 13.0px; } - + @@ -1388,7 +1388,7 @@ font-size: 13.0px; - + @@ -1402,7 +1402,7 @@ font-size: 13.0px; - + @@ -1498,7 +1498,7 @@ font-size: 13.0px; - + @@ -1516,7 +1516,7 @@ font-size: 13.0px; - + @@ -1636,7 +1636,7 @@ font-size: 13.0px; - + @@ -1651,117 +1651,117 @@ font-size: 13.0px; text { text-rendering: optimizeLegibility; } -#xXxprefixXx13 .plot-title { +#_sample_helper_static_id_prefix_13 .plot-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx13 .plot-subtitle { +#_sample_helper_static_id_prefix_13 .plot-subtitle { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx13 .plot-caption { +#_sample_helper_static_id_prefix_13 .plot-caption { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx13 .hyperlink-element { +#_sample_helper_static_id_prefix_13 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx13 .legend-title { +#_sample_helper_static_id_prefix_13 .legend-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx13 .legend-item { +#_sample_helper_static_id_prefix_13 .legend-item { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx13 .axis-title-x { +#_sample_helper_static_id_prefix_13 .axis-title-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx13 .axis-text-x { +#_sample_helper_static_id_prefix_13 .axis-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx16 .axis-tooltip-text-x { +#_sample_helper_static_id_prefix_16 .axis-tooltip-text-x { fill: #ffffff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx13 .axis-title-y { +#_sample_helper_static_id_prefix_13 .axis-title-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx13 .axis-text-y { +#_sample_helper_static_id_prefix_13 .axis-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx16 .axis-tooltip-text-y { +#_sample_helper_static_id_prefix_16 .axis-tooltip-text-y { fill: #ffffff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx13 .facet-strip-text-x { +#_sample_helper_static_id_prefix_13 .facet-strip-text-x { fill: #31a354; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx13 .facet-strip-text-y { +#_sample_helper_static_id_prefix_13 .facet-strip-text-y { fill: #31a354; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx16 .tooltip-text { +#_sample_helper_static_id_prefix_16 .tooltip-text { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx16 .tooltip-title { +#_sample_helper_static_id_prefix_16 .tooltip-title { fill: #474747; font-weight: bold; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx16 .tooltip-label { +#_sample_helper_static_id_prefix_16 .tooltip-label { fill: #474747; font-weight: bold; font-style: normal;font-family: sans-serif; @@ -1770,7 +1770,7 @@ font-size: 13.0px; } - + @@ -1890,7 +1890,7 @@ font-size: 13.0px; - + @@ -1904,7 +1904,7 @@ font-size: 13.0px; - + @@ -2000,7 +2000,7 @@ font-size: 13.0px; - + @@ -2018,7 +2018,7 @@ font-size: 13.0px; - + @@ -2138,7 +2138,7 @@ font-size: 13.0px; - + \ No newline at end of file diff --git a/docs/images/guides/layout/guideStylesTextLegendStrip_dark.svg b/docs/images/guides/layout/guideStylesTextLegendStrip_dark.svg index ad4370a16..1a5961dd1 100644 --- a/docs/images/guides/layout/guideStylesTextLegendStrip_dark.svg +++ b/docs/images/guides/layout/guideStylesTextLegendStrip_dark.svg @@ -10,54 +10,54 @@ text { text-rendering: optimizeLegibility; } -#xXxprefixXx0 .plot-title { +#_sample_helper_static_id_prefix_0 .plot-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; @@ -71,14 +71,14 @@ font-weight: normal; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; @@ -92,14 +92,14 @@ font-weight: normal; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; @@ -129,7 +129,7 @@ font-size: 13.0px; } - + @@ -145,117 +145,117 @@ font-size: 13.0px; text { text-rendering: optimizeLegibility; } -#xXxprefixXx1 .plot-title { +#_sample_helper_static_id_prefix_1 .plot-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx1 .plot-subtitle { +#_sample_helper_static_id_prefix_1 .plot-subtitle { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx1 .plot-caption { +#_sample_helper_static_id_prefix_1 .plot-caption { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx1 .hyperlink-element { +#_sample_helper_static_id_prefix_1 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx1 .legend-title { +#_sample_helper_static_id_prefix_1 .legend-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx1 .legend-item { +#_sample_helper_static_id_prefix_1 .legend-item { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx1 .axis-title-x { +#_sample_helper_static_id_prefix_1 .axis-title-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx1 .axis-text-x { +#_sample_helper_static_id_prefix_1 .axis-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx4 .axis-tooltip-text-x { +#_sample_helper_static_id_prefix_4 .axis-tooltip-text-x { fill: #303030; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx1 .axis-title-y { +#_sample_helper_static_id_prefix_1 .axis-title-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx1 .axis-text-y { +#_sample_helper_static_id_prefix_1 .axis-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx4 .axis-tooltip-text-y { +#_sample_helper_static_id_prefix_4 .axis-tooltip-text-y { fill: #303030; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx1 .facet-strip-text-x { +#_sample_helper_static_id_prefix_1 .facet-strip-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx1 .facet-strip-text-y { +#_sample_helper_static_id_prefix_1 .facet-strip-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx4 .tooltip-text { +#_sample_helper_static_id_prefix_4 .tooltip-text { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx4 .tooltip-title { +#_sample_helper_static_id_prefix_4 .tooltip-title { fill: #bbbbbb; font-weight: bold; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx4 .tooltip-label { +#_sample_helper_static_id_prefix_4 .tooltip-label { fill: #bbbbbb; font-weight: bold; font-style: normal;font-family: sans-serif; @@ -264,7 +264,7 @@ font-size: 13.0px; } - + @@ -384,7 +384,7 @@ font-size: 13.0px; - + @@ -398,7 +398,7 @@ font-size: 13.0px; - + @@ -494,7 +494,7 @@ font-size: 13.0px; - + @@ -512,7 +512,7 @@ font-size: 13.0px; - + @@ -632,7 +632,7 @@ font-size: 13.0px; - + @@ -647,117 +647,117 @@ font-size: 13.0px; text { text-rendering: optimizeLegibility; } -#xXxprefixXx5 .plot-title { +#_sample_helper_static_id_prefix_5 .plot-title { fill: #31a354; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx5 .plot-subtitle { +#_sample_helper_static_id_prefix_5 .plot-subtitle { fill: #31a354; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx5 .plot-caption { +#_sample_helper_static_id_prefix_5 .plot-caption { fill: #31a354; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx5 .hyperlink-element { +#_sample_helper_static_id_prefix_5 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx5 .legend-title { +#_sample_helper_static_id_prefix_5 .legend-title { fill: #31a354; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx5 .legend-item { +#_sample_helper_static_id_prefix_5 .legend-item { fill: #31a354; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx5 .axis-title-x { +#_sample_helper_static_id_prefix_5 .axis-title-x { fill: #31a354; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx5 .axis-text-x { +#_sample_helper_static_id_prefix_5 .axis-text-x { fill: #31a354; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx8 .axis-tooltip-text-x { +#_sample_helper_static_id_prefix_8 .axis-tooltip-text-x { fill: #303030; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx5 .axis-title-y { +#_sample_helper_static_id_prefix_5 .axis-title-y { fill: #31a354; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx5 .axis-text-y { +#_sample_helper_static_id_prefix_5 .axis-text-y { fill: #31a354; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx8 .axis-tooltip-text-y { +#_sample_helper_static_id_prefix_8 .axis-tooltip-text-y { fill: #303030; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx5 .facet-strip-text-x { +#_sample_helper_static_id_prefix_5 .facet-strip-text-x { fill: #31a354; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx5 .facet-strip-text-y { +#_sample_helper_static_id_prefix_5 .facet-strip-text-y { fill: #31a354; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx8 .tooltip-text { +#_sample_helper_static_id_prefix_8 .tooltip-text { fill: #31a354; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx8 .tooltip-title { +#_sample_helper_static_id_prefix_8 .tooltip-title { fill: #31a354; font-weight: bold; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx8 .tooltip-label { +#_sample_helper_static_id_prefix_8 .tooltip-label { fill: #31a354; font-weight: bold; font-style: normal;font-family: sans-serif; @@ -766,7 +766,7 @@ font-size: 13.0px; } - + @@ -886,7 +886,7 @@ font-size: 13.0px; - + @@ -900,7 +900,7 @@ font-size: 13.0px; - + @@ -996,7 +996,7 @@ font-size: 13.0px; - + @@ -1014,7 +1014,7 @@ font-size: 13.0px; - + @@ -1134,7 +1134,7 @@ font-size: 13.0px; - + @@ -1149,117 +1149,117 @@ font-size: 13.0px; text { text-rendering: optimizeLegibility; } -#xXxprefixXx9 .plot-title { +#_sample_helper_static_id_prefix_9 .plot-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx9 .plot-subtitle { +#_sample_helper_static_id_prefix_9 .plot-subtitle { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx9 .plot-caption { +#_sample_helper_static_id_prefix_9 .plot-caption { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx9 .hyperlink-element { +#_sample_helper_static_id_prefix_9 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx9 .legend-title { +#_sample_helper_static_id_prefix_9 .legend-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx9 .legend-item { +#_sample_helper_static_id_prefix_9 .legend-item { fill: #31a354; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx9 .axis-title-x { +#_sample_helper_static_id_prefix_9 .axis-title-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx9 .axis-text-x { +#_sample_helper_static_id_prefix_9 .axis-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx12 .axis-tooltip-text-x { +#_sample_helper_static_id_prefix_12 .axis-tooltip-text-x { fill: #303030; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx9 .axis-title-y { +#_sample_helper_static_id_prefix_9 .axis-title-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx9 .axis-text-y { +#_sample_helper_static_id_prefix_9 .axis-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx12 .axis-tooltip-text-y { +#_sample_helper_static_id_prefix_12 .axis-tooltip-text-y { fill: #303030; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx9 .facet-strip-text-x { +#_sample_helper_static_id_prefix_9 .facet-strip-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx9 .facet-strip-text-y { +#_sample_helper_static_id_prefix_9 .facet-strip-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx12 .tooltip-text { +#_sample_helper_static_id_prefix_12 .tooltip-text { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx12 .tooltip-title { +#_sample_helper_static_id_prefix_12 .tooltip-title { fill: #bbbbbb; font-weight: bold; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx12 .tooltip-label { +#_sample_helper_static_id_prefix_12 .tooltip-label { fill: #bbbbbb; font-weight: bold; font-style: normal;font-family: sans-serif; @@ -1268,7 +1268,7 @@ font-size: 13.0px; } - + @@ -1388,7 +1388,7 @@ font-size: 13.0px; - + @@ -1402,7 +1402,7 @@ font-size: 13.0px; - + @@ -1498,7 +1498,7 @@ font-size: 13.0px; - + @@ -1516,7 +1516,7 @@ font-size: 13.0px; - + @@ -1636,7 +1636,7 @@ font-size: 13.0px; - + @@ -1651,117 +1651,117 @@ font-size: 13.0px; text { text-rendering: optimizeLegibility; } -#xXxprefixXx13 .plot-title { +#_sample_helper_static_id_prefix_13 .plot-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx13 .plot-subtitle { +#_sample_helper_static_id_prefix_13 .plot-subtitle { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx13 .plot-caption { +#_sample_helper_static_id_prefix_13 .plot-caption { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx13 .hyperlink-element { +#_sample_helper_static_id_prefix_13 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx13 .legend-title { +#_sample_helper_static_id_prefix_13 .legend-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx13 .legend-item { +#_sample_helper_static_id_prefix_13 .legend-item { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx13 .axis-title-x { +#_sample_helper_static_id_prefix_13 .axis-title-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx13 .axis-text-x { +#_sample_helper_static_id_prefix_13 .axis-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx16 .axis-tooltip-text-x { +#_sample_helper_static_id_prefix_16 .axis-tooltip-text-x { fill: #303030; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx13 .axis-title-y { +#_sample_helper_static_id_prefix_13 .axis-title-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx13 .axis-text-y { +#_sample_helper_static_id_prefix_13 .axis-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx16 .axis-tooltip-text-y { +#_sample_helper_static_id_prefix_16 .axis-tooltip-text-y { fill: #303030; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx13 .facet-strip-text-x { +#_sample_helper_static_id_prefix_13 .facet-strip-text-x { fill: #31a354; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx13 .facet-strip-text-y { +#_sample_helper_static_id_prefix_13 .facet-strip-text-y { fill: #31a354; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx16 .tooltip-text { +#_sample_helper_static_id_prefix_16 .tooltip-text { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx16 .tooltip-title { +#_sample_helper_static_id_prefix_16 .tooltip-title { fill: #bbbbbb; font-weight: bold; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx16 .tooltip-label { +#_sample_helper_static_id_prefix_16 .tooltip-label { fill: #bbbbbb; font-weight: bold; font-style: normal;font-family: sans-serif; @@ -1770,7 +1770,7 @@ font-size: 13.0px; } - + @@ -1890,7 +1890,7 @@ font-size: 13.0px; - + @@ -1904,7 +1904,7 @@ font-size: 13.0px; - + @@ -2000,7 +2000,7 @@ font-size: 13.0px; - + @@ -2018,7 +2018,7 @@ font-size: 13.0px; - + @@ -2138,7 +2138,7 @@ font-size: 13.0px; - + \ No newline at end of file diff --git a/docs/images/guides/layout/guideStylesTextTitleLegend.svg b/docs/images/guides/layout/guideStylesTextTitleLegend.svg index 7761bb20d..67c99d6a8 100644 --- a/docs/images/guides/layout/guideStylesTextTitleLegend.svg +++ b/docs/images/guides/layout/guideStylesTextTitleLegend.svg @@ -10,54 +10,54 @@ text { text-rendering: optimizeLegibility; } -#xXxprefixXx0 .plot-title { +#_sample_helper_static_id_prefix_0 .plot-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; @@ -71,14 +71,14 @@ font-weight: normal; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; @@ -92,14 +92,14 @@ font-weight: normal; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; @@ -129,7 +129,7 @@ font-size: 13.0px; } - + @@ -145,117 +145,117 @@ font-size: 13.0px; text { text-rendering: optimizeLegibility; } -#xXxprefixXx1 .plot-title { +#_sample_helper_static_id_prefix_1 .plot-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx1 .plot-subtitle { +#_sample_helper_static_id_prefix_1 .plot-subtitle { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx1 .plot-caption { +#_sample_helper_static_id_prefix_1 .plot-caption { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx1 .hyperlink-element { +#_sample_helper_static_id_prefix_1 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx1 .legend-title { +#_sample_helper_static_id_prefix_1 .legend-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx1 .legend-item { +#_sample_helper_static_id_prefix_1 .legend-item { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx1 .axis-title-x { +#_sample_helper_static_id_prefix_1 .axis-title-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx1 .axis-text-x { +#_sample_helper_static_id_prefix_1 .axis-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx3 .axis-tooltip-text-x { +#_sample_helper_static_id_prefix_3 .axis-tooltip-text-x { fill: #ffffff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx1 .axis-title-y { +#_sample_helper_static_id_prefix_1 .axis-title-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx1 .axis-text-y { +#_sample_helper_static_id_prefix_1 .axis-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx3 .axis-tooltip-text-y { +#_sample_helper_static_id_prefix_3 .axis-tooltip-text-y { fill: #ffffff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx1 .facet-strip-text-x { +#_sample_helper_static_id_prefix_1 .facet-strip-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx1 .facet-strip-text-y { +#_sample_helper_static_id_prefix_1 .facet-strip-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx3 .tooltip-text { +#_sample_helper_static_id_prefix_3 .tooltip-text { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx3 .tooltip-title { +#_sample_helper_static_id_prefix_3 .tooltip-title { fill: #474747; font-weight: bold; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx3 .tooltip-label { +#_sample_helper_static_id_prefix_3 .tooltip-label { fill: #474747; font-weight: bold; font-style: normal;font-family: sans-serif; @@ -264,7 +264,7 @@ font-size: 13.0px; } - + @@ -375,7 +375,7 @@ font-size: 13.0px; - + @@ -393,7 +393,7 @@ font-size: 13.0px; - + @@ -508,7 +508,7 @@ font-size: 13.0px; - + @@ -523,117 +523,117 @@ font-size: 13.0px; text { text-rendering: optimizeLegibility; } -#xXxprefixXx4 .plot-title { +#_sample_helper_static_id_prefix_4 .plot-title { fill: #31a354; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx4 .plot-subtitle { +#_sample_helper_static_id_prefix_4 .plot-subtitle { fill: #31a354; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx4 .plot-caption { +#_sample_helper_static_id_prefix_4 .plot-caption { fill: #31a354; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx4 .hyperlink-element { +#_sample_helper_static_id_prefix_4 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx4 .legend-title { +#_sample_helper_static_id_prefix_4 .legend-title { fill: #31a354; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx4 .legend-item { +#_sample_helper_static_id_prefix_4 .legend-item { fill: #31a354; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx4 .axis-title-x { +#_sample_helper_static_id_prefix_4 .axis-title-x { fill: #31a354; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx4 .axis-text-x { +#_sample_helper_static_id_prefix_4 .axis-text-x { fill: #31a354; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx6 .axis-tooltip-text-x { +#_sample_helper_static_id_prefix_6 .axis-tooltip-text-x { fill: #ffffff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx4 .axis-title-y { +#_sample_helper_static_id_prefix_4 .axis-title-y { fill: #31a354; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx4 .axis-text-y { +#_sample_helper_static_id_prefix_4 .axis-text-y { fill: #31a354; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx6 .axis-tooltip-text-y { +#_sample_helper_static_id_prefix_6 .axis-tooltip-text-y { fill: #ffffff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx4 .facet-strip-text-x { +#_sample_helper_static_id_prefix_4 .facet-strip-text-x { fill: #31a354; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx4 .facet-strip-text-y { +#_sample_helper_static_id_prefix_4 .facet-strip-text-y { fill: #31a354; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx6 .tooltip-text { +#_sample_helper_static_id_prefix_6 .tooltip-text { fill: #31a354; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx6 .tooltip-title { +#_sample_helper_static_id_prefix_6 .tooltip-title { fill: #31a354; font-weight: bold; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx6 .tooltip-label { +#_sample_helper_static_id_prefix_6 .tooltip-label { fill: #31a354; font-weight: bold; font-style: normal;font-family: sans-serif; @@ -642,7 +642,7 @@ font-size: 13.0px; } - + @@ -753,7 +753,7 @@ font-size: 13.0px; - + @@ -771,7 +771,7 @@ font-size: 13.0px; - + @@ -886,7 +886,7 @@ font-size: 13.0px; - + @@ -901,117 +901,117 @@ font-size: 13.0px; text { text-rendering: optimizeLegibility; } -#xXxprefixXx7 .plot-title { +#_sample_helper_static_id_prefix_7 .plot-title { fill: #31a354; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx7 .plot-subtitle { +#_sample_helper_static_id_prefix_7 .plot-subtitle { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx7 .plot-caption { +#_sample_helper_static_id_prefix_7 .plot-caption { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx7 .hyperlink-element { +#_sample_helper_static_id_prefix_7 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx7 .legend-title { +#_sample_helper_static_id_prefix_7 .legend-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx7 .legend-item { +#_sample_helper_static_id_prefix_7 .legend-item { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx7 .axis-title-x { +#_sample_helper_static_id_prefix_7 .axis-title-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx7 .axis-text-x { +#_sample_helper_static_id_prefix_7 .axis-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx9 .axis-tooltip-text-x { +#_sample_helper_static_id_prefix_9 .axis-tooltip-text-x { fill: #ffffff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx7 .axis-title-y { +#_sample_helper_static_id_prefix_7 .axis-title-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx7 .axis-text-y { +#_sample_helper_static_id_prefix_7 .axis-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx9 .axis-tooltip-text-y { +#_sample_helper_static_id_prefix_9 .axis-tooltip-text-y { fill: #ffffff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx7 .facet-strip-text-x { +#_sample_helper_static_id_prefix_7 .facet-strip-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx7 .facet-strip-text-y { +#_sample_helper_static_id_prefix_7 .facet-strip-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx9 .tooltip-text { +#_sample_helper_static_id_prefix_9 .tooltip-text { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx9 .tooltip-title { +#_sample_helper_static_id_prefix_9 .tooltip-title { fill: #474747; font-weight: bold; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx9 .tooltip-label { +#_sample_helper_static_id_prefix_9 .tooltip-label { fill: #474747; font-weight: bold; font-style: normal;font-family: sans-serif; @@ -1020,7 +1020,7 @@ font-size: 13.0px; } - + @@ -1131,7 +1131,7 @@ font-size: 13.0px; - + @@ -1149,7 +1149,7 @@ font-size: 13.0px; - + @@ -1264,7 +1264,7 @@ font-size: 13.0px; - + @@ -1279,117 +1279,117 @@ font-size: 13.0px; text { text-rendering: optimizeLegibility; } -#xXxprefixXx10 .plot-title { +#_sample_helper_static_id_prefix_10 .plot-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx10 .plot-subtitle { +#_sample_helper_static_id_prefix_10 .plot-subtitle { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx10 .plot-caption { +#_sample_helper_static_id_prefix_10 .plot-caption { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx10 .hyperlink-element { +#_sample_helper_static_id_prefix_10 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx10 .legend-title { +#_sample_helper_static_id_prefix_10 .legend-title { fill: #31a354; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx10 .legend-item { +#_sample_helper_static_id_prefix_10 .legend-item { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx10 .axis-title-x { +#_sample_helper_static_id_prefix_10 .axis-title-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx10 .axis-text-x { +#_sample_helper_static_id_prefix_10 .axis-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx12 .axis-tooltip-text-x { +#_sample_helper_static_id_prefix_12 .axis-tooltip-text-x { fill: #ffffff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx10 .axis-title-y { +#_sample_helper_static_id_prefix_10 .axis-title-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx10 .axis-text-y { +#_sample_helper_static_id_prefix_10 .axis-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx12 .axis-tooltip-text-y { +#_sample_helper_static_id_prefix_12 .axis-tooltip-text-y { fill: #ffffff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx10 .facet-strip-text-x { +#_sample_helper_static_id_prefix_10 .facet-strip-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx10 .facet-strip-text-y { +#_sample_helper_static_id_prefix_10 .facet-strip-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx12 .tooltip-text { +#_sample_helper_static_id_prefix_12 .tooltip-text { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx12 .tooltip-title { +#_sample_helper_static_id_prefix_12 .tooltip-title { fill: #474747; font-weight: bold; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx12 .tooltip-label { +#_sample_helper_static_id_prefix_12 .tooltip-label { fill: #474747; font-weight: bold; font-style: normal;font-family: sans-serif; @@ -1398,7 +1398,7 @@ font-size: 13.0px; } - + @@ -1509,7 +1509,7 @@ font-size: 13.0px; - + @@ -1527,7 +1527,7 @@ font-size: 13.0px; - + @@ -1642,7 +1642,7 @@ font-size: 13.0px; - + \ No newline at end of file diff --git a/docs/images/guides/layout/guideStylesTextTitleLegend_dark.svg b/docs/images/guides/layout/guideStylesTextTitleLegend_dark.svg index 9f8c24021..91cbc02c3 100644 --- a/docs/images/guides/layout/guideStylesTextTitleLegend_dark.svg +++ b/docs/images/guides/layout/guideStylesTextTitleLegend_dark.svg @@ -10,54 +10,54 @@ text { text-rendering: optimizeLegibility; } -#xXxprefixXx0 .plot-title { +#_sample_helper_static_id_prefix_0 .plot-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; @@ -71,14 +71,14 @@ font-weight: normal; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; @@ -92,14 +92,14 @@ font-weight: normal; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; @@ -129,7 +129,7 @@ font-size: 13.0px; } - + @@ -145,117 +145,117 @@ font-size: 13.0px; text { text-rendering: optimizeLegibility; } -#xXxprefixXx1 .plot-title { +#_sample_helper_static_id_prefix_1 .plot-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx1 .plot-subtitle { +#_sample_helper_static_id_prefix_1 .plot-subtitle { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx1 .plot-caption { +#_sample_helper_static_id_prefix_1 .plot-caption { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx1 .hyperlink-element { +#_sample_helper_static_id_prefix_1 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx1 .legend-title { +#_sample_helper_static_id_prefix_1 .legend-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx1 .legend-item { +#_sample_helper_static_id_prefix_1 .legend-item { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx1 .axis-title-x { +#_sample_helper_static_id_prefix_1 .axis-title-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx1 .axis-text-x { +#_sample_helper_static_id_prefix_1 .axis-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx3 .axis-tooltip-text-x { +#_sample_helper_static_id_prefix_3 .axis-tooltip-text-x { fill: #303030; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx1 .axis-title-y { +#_sample_helper_static_id_prefix_1 .axis-title-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx1 .axis-text-y { +#_sample_helper_static_id_prefix_1 .axis-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx3 .axis-tooltip-text-y { +#_sample_helper_static_id_prefix_3 .axis-tooltip-text-y { fill: #303030; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx1 .facet-strip-text-x { +#_sample_helper_static_id_prefix_1 .facet-strip-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx1 .facet-strip-text-y { +#_sample_helper_static_id_prefix_1 .facet-strip-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx3 .tooltip-text { +#_sample_helper_static_id_prefix_3 .tooltip-text { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx3 .tooltip-title { +#_sample_helper_static_id_prefix_3 .tooltip-title { fill: #bbbbbb; font-weight: bold; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx3 .tooltip-label { +#_sample_helper_static_id_prefix_3 .tooltip-label { fill: #bbbbbb; font-weight: bold; font-style: normal;font-family: sans-serif; @@ -264,7 +264,7 @@ font-size: 13.0px; } - + @@ -375,7 +375,7 @@ font-size: 13.0px; - + @@ -393,7 +393,7 @@ font-size: 13.0px; - + @@ -508,7 +508,7 @@ font-size: 13.0px; - + @@ -523,117 +523,117 @@ font-size: 13.0px; text { text-rendering: optimizeLegibility; } -#xXxprefixXx4 .plot-title { +#_sample_helper_static_id_prefix_4 .plot-title { fill: #31a354; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx4 .plot-subtitle { +#_sample_helper_static_id_prefix_4 .plot-subtitle { fill: #31a354; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx4 .plot-caption { +#_sample_helper_static_id_prefix_4 .plot-caption { fill: #31a354; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx4 .hyperlink-element { +#_sample_helper_static_id_prefix_4 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx4 .legend-title { +#_sample_helper_static_id_prefix_4 .legend-title { fill: #31a354; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx4 .legend-item { +#_sample_helper_static_id_prefix_4 .legend-item { fill: #31a354; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx4 .axis-title-x { +#_sample_helper_static_id_prefix_4 .axis-title-x { fill: #31a354; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx4 .axis-text-x { +#_sample_helper_static_id_prefix_4 .axis-text-x { fill: #31a354; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx6 .axis-tooltip-text-x { +#_sample_helper_static_id_prefix_6 .axis-tooltip-text-x { fill: #303030; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx4 .axis-title-y { +#_sample_helper_static_id_prefix_4 .axis-title-y { fill: #31a354; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx4 .axis-text-y { +#_sample_helper_static_id_prefix_4 .axis-text-y { fill: #31a354; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx6 .axis-tooltip-text-y { +#_sample_helper_static_id_prefix_6 .axis-tooltip-text-y { fill: #303030; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx4 .facet-strip-text-x { +#_sample_helper_static_id_prefix_4 .facet-strip-text-x { fill: #31a354; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx4 .facet-strip-text-y { +#_sample_helper_static_id_prefix_4 .facet-strip-text-y { fill: #31a354; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx6 .tooltip-text { +#_sample_helper_static_id_prefix_6 .tooltip-text { fill: #31a354; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx6 .tooltip-title { +#_sample_helper_static_id_prefix_6 .tooltip-title { fill: #31a354; font-weight: bold; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx6 .tooltip-label { +#_sample_helper_static_id_prefix_6 .tooltip-label { fill: #31a354; font-weight: bold; font-style: normal;font-family: sans-serif; @@ -642,7 +642,7 @@ font-size: 13.0px; } - + @@ -753,7 +753,7 @@ font-size: 13.0px; - + @@ -771,7 +771,7 @@ font-size: 13.0px; - + @@ -886,7 +886,7 @@ font-size: 13.0px; - + @@ -901,117 +901,117 @@ font-size: 13.0px; text { text-rendering: optimizeLegibility; } -#xXxprefixXx7 .plot-title { +#_sample_helper_static_id_prefix_7 .plot-title { fill: #31a354; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx7 .plot-subtitle { +#_sample_helper_static_id_prefix_7 .plot-subtitle { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx7 .plot-caption { +#_sample_helper_static_id_prefix_7 .plot-caption { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx7 .hyperlink-element { +#_sample_helper_static_id_prefix_7 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx7 .legend-title { +#_sample_helper_static_id_prefix_7 .legend-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx7 .legend-item { +#_sample_helper_static_id_prefix_7 .legend-item { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx7 .axis-title-x { +#_sample_helper_static_id_prefix_7 .axis-title-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx7 .axis-text-x { +#_sample_helper_static_id_prefix_7 .axis-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx9 .axis-tooltip-text-x { +#_sample_helper_static_id_prefix_9 .axis-tooltip-text-x { fill: #303030; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx7 .axis-title-y { +#_sample_helper_static_id_prefix_7 .axis-title-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx7 .axis-text-y { +#_sample_helper_static_id_prefix_7 .axis-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx9 .axis-tooltip-text-y { +#_sample_helper_static_id_prefix_9 .axis-tooltip-text-y { fill: #303030; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx7 .facet-strip-text-x { +#_sample_helper_static_id_prefix_7 .facet-strip-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx7 .facet-strip-text-y { +#_sample_helper_static_id_prefix_7 .facet-strip-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx9 .tooltip-text { +#_sample_helper_static_id_prefix_9 .tooltip-text { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx9 .tooltip-title { +#_sample_helper_static_id_prefix_9 .tooltip-title { fill: #bbbbbb; font-weight: bold; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx9 .tooltip-label { +#_sample_helper_static_id_prefix_9 .tooltip-label { fill: #bbbbbb; font-weight: bold; font-style: normal;font-family: sans-serif; @@ -1020,7 +1020,7 @@ font-size: 13.0px; } - + @@ -1131,7 +1131,7 @@ font-size: 13.0px; - + @@ -1149,7 +1149,7 @@ font-size: 13.0px; - + @@ -1264,7 +1264,7 @@ font-size: 13.0px; - + @@ -1279,117 +1279,117 @@ font-size: 13.0px; text { text-rendering: optimizeLegibility; } -#xXxprefixXx10 .plot-title { +#_sample_helper_static_id_prefix_10 .plot-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx10 .plot-subtitle { +#_sample_helper_static_id_prefix_10 .plot-subtitle { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx10 .plot-caption { +#_sample_helper_static_id_prefix_10 .plot-caption { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx10 .hyperlink-element { +#_sample_helper_static_id_prefix_10 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx10 .legend-title { +#_sample_helper_static_id_prefix_10 .legend-title { fill: #31a354; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx10 .legend-item { +#_sample_helper_static_id_prefix_10 .legend-item { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx10 .axis-title-x { +#_sample_helper_static_id_prefix_10 .axis-title-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx10 .axis-text-x { +#_sample_helper_static_id_prefix_10 .axis-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx12 .axis-tooltip-text-x { +#_sample_helper_static_id_prefix_12 .axis-tooltip-text-x { fill: #303030; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx10 .axis-title-y { +#_sample_helper_static_id_prefix_10 .axis-title-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx10 .axis-text-y { +#_sample_helper_static_id_prefix_10 .axis-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx12 .axis-tooltip-text-y { +#_sample_helper_static_id_prefix_12 .axis-tooltip-text-y { fill: #303030; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx10 .facet-strip-text-x { +#_sample_helper_static_id_prefix_10 .facet-strip-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx10 .facet-strip-text-y { +#_sample_helper_static_id_prefix_10 .facet-strip-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx12 .tooltip-text { +#_sample_helper_static_id_prefix_12 .tooltip-text { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx12 .tooltip-title { +#_sample_helper_static_id_prefix_12 .tooltip-title { fill: #bbbbbb; font-weight: bold; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx12 .tooltip-label { +#_sample_helper_static_id_prefix_12 .tooltip-label { fill: #bbbbbb; font-weight: bold; font-style: normal;font-family: sans-serif; @@ -1398,7 +1398,7 @@ font-size: 13.0px; } - + @@ -1509,7 +1509,7 @@ font-size: 13.0px; - + @@ -1527,7 +1527,7 @@ font-size: 13.0px; - + @@ -1642,7 +1642,7 @@ font-size: 13.0px; - + \ No newline at end of file diff --git a/docs/images/guides/layout/guideStylesTooltipAndBackground.svg b/docs/images/guides/layout/guideStylesTooltipAndBackground.svg index 580d3220f..f216df7db 100644 --- a/docs/images/guides/layout/guideStylesTooltipAndBackground.svg +++ b/docs/images/guides/layout/guideStylesTooltipAndBackground.svg @@ -10,54 +10,54 @@ text { text-rendering: optimizeLegibility; } -#xXxprefixXx0 .plot-title { +#_sample_helper_static_id_prefix_0 .plot-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; @@ -71,14 +71,14 @@ font-weight: normal; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; @@ -92,14 +92,14 @@ font-weight: normal; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; @@ -129,7 +129,7 @@ font-size: 13.0px; } - + @@ -145,117 +145,117 @@ font-size: 13.0px; text { text-rendering: optimizeLegibility; } -#xXxprefixXx1 .plot-title { +#_sample_helper_static_id_prefix_1 .plot-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx1 .plot-subtitle { +#_sample_helper_static_id_prefix_1 .plot-subtitle { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx1 .plot-caption { +#_sample_helper_static_id_prefix_1 .plot-caption { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx1 .hyperlink-element { +#_sample_helper_static_id_prefix_1 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx1 .legend-title { +#_sample_helper_static_id_prefix_1 .legend-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx1 .legend-item { +#_sample_helper_static_id_prefix_1 .legend-item { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx1 .axis-title-x { +#_sample_helper_static_id_prefix_1 .axis-title-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx1 .axis-text-x { +#_sample_helper_static_id_prefix_1 .axis-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx3 .axis-tooltip-text-x { +#_sample_helper_static_id_prefix_3 .axis-tooltip-text-x { fill: #ffffff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx1 .axis-title-y { +#_sample_helper_static_id_prefix_1 .axis-title-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx1 .axis-text-y { +#_sample_helper_static_id_prefix_1 .axis-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx3 .axis-tooltip-text-y { +#_sample_helper_static_id_prefix_3 .axis-tooltip-text-y { fill: #ffffff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx1 .facet-strip-text-x { +#_sample_helper_static_id_prefix_1 .facet-strip-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx1 .facet-strip-text-y { +#_sample_helper_static_id_prefix_1 .facet-strip-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx3 .tooltip-text { +#_sample_helper_static_id_prefix_3 .tooltip-text { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx3 .tooltip-title { +#_sample_helper_static_id_prefix_3 .tooltip-title { fill: #474747; font-weight: bold; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx3 .tooltip-label { +#_sample_helper_static_id_prefix_3 .tooltip-label { fill: #474747; font-weight: bold; font-style: normal;font-family: sans-serif; @@ -264,7 +264,7 @@ font-size: 13.0px; } - + @@ -304,7 +304,7 @@ font-size: 13.0px; - + @@ -550,7 +550,7 @@ font-size: 13.0px; - + @@ -779,7 +779,7 @@ font-size: 13.0px; - + @@ -794,117 +794,117 @@ font-size: 13.0px; text { text-rendering: optimizeLegibility; } -#xXxprefixXx4 .plot-title { +#_sample_helper_static_id_prefix_4 .plot-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx4 .plot-subtitle { +#_sample_helper_static_id_prefix_4 .plot-subtitle { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx4 .plot-caption { +#_sample_helper_static_id_prefix_4 .plot-caption { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx4 .hyperlink-element { +#_sample_helper_static_id_prefix_4 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx4 .legend-title { +#_sample_helper_static_id_prefix_4 .legend-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx4 .legend-item { +#_sample_helper_static_id_prefix_4 .legend-item { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx4 .axis-title-x { +#_sample_helper_static_id_prefix_4 .axis-title-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx4 .axis-text-x { +#_sample_helper_static_id_prefix_4 .axis-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx6 .axis-tooltip-text-x { +#_sample_helper_static_id_prefix_6 .axis-tooltip-text-x { fill: #ffffff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx4 .axis-title-y { +#_sample_helper_static_id_prefix_4 .axis-title-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx4 .axis-text-y { +#_sample_helper_static_id_prefix_4 .axis-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx6 .axis-tooltip-text-y { +#_sample_helper_static_id_prefix_6 .axis-tooltip-text-y { fill: #ffffff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx4 .facet-strip-text-x { +#_sample_helper_static_id_prefix_4 .facet-strip-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx4 .facet-strip-text-y { +#_sample_helper_static_id_prefix_4 .facet-strip-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx6 .tooltip-text { +#_sample_helper_static_id_prefix_6 .tooltip-text { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx6 .tooltip-title { +#_sample_helper_static_id_prefix_6 .tooltip-title { fill: #474747; font-weight: bold; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx6 .tooltip-label { +#_sample_helper_static_id_prefix_6 .tooltip-label { fill: #474747; font-weight: bold; font-style: normal;font-family: sans-serif; @@ -913,7 +913,7 @@ font-size: 13.0px; } - + @@ -1064,7 +1064,7 @@ font-size: 13.0px; - + @@ -1310,7 +1310,7 @@ font-size: 13.0px; - + @@ -1442,7 +1442,7 @@ font-size: 13.0px; - + \ No newline at end of file diff --git a/docs/images/guides/layout/guideStylesTooltipAndBackground_dark.svg b/docs/images/guides/layout/guideStylesTooltipAndBackground_dark.svg index 786f6f54a..a0c4ffa57 100644 --- a/docs/images/guides/layout/guideStylesTooltipAndBackground_dark.svg +++ b/docs/images/guides/layout/guideStylesTooltipAndBackground_dark.svg @@ -10,54 +10,54 @@ text { text-rendering: optimizeLegibility; } -#xXxprefixXx0 .plot-title { +#_sample_helper_static_id_prefix_0 .plot-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; @@ -71,14 +71,14 @@ font-weight: normal; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; @@ -92,14 +92,14 @@ font-weight: normal; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; @@ -129,7 +129,7 @@ font-size: 13.0px; } - + @@ -145,117 +145,117 @@ font-size: 13.0px; text { text-rendering: optimizeLegibility; } -#xXxprefixXx1 .plot-title { +#_sample_helper_static_id_prefix_1 .plot-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx1 .plot-subtitle { +#_sample_helper_static_id_prefix_1 .plot-subtitle { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx1 .plot-caption { +#_sample_helper_static_id_prefix_1 .plot-caption { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx1 .hyperlink-element { +#_sample_helper_static_id_prefix_1 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx1 .legend-title { +#_sample_helper_static_id_prefix_1 .legend-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx1 .legend-item { +#_sample_helper_static_id_prefix_1 .legend-item { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx1 .axis-title-x { +#_sample_helper_static_id_prefix_1 .axis-title-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx1 .axis-text-x { +#_sample_helper_static_id_prefix_1 .axis-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx3 .axis-tooltip-text-x { +#_sample_helper_static_id_prefix_3 .axis-tooltip-text-x { fill: #303030; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx1 .axis-title-y { +#_sample_helper_static_id_prefix_1 .axis-title-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx1 .axis-text-y { +#_sample_helper_static_id_prefix_1 .axis-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx3 .axis-tooltip-text-y { +#_sample_helper_static_id_prefix_3 .axis-tooltip-text-y { fill: #303030; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx1 .facet-strip-text-x { +#_sample_helper_static_id_prefix_1 .facet-strip-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx1 .facet-strip-text-y { +#_sample_helper_static_id_prefix_1 .facet-strip-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx3 .tooltip-text { +#_sample_helper_static_id_prefix_3 .tooltip-text { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx3 .tooltip-title { +#_sample_helper_static_id_prefix_3 .tooltip-title { fill: #bbbbbb; font-weight: bold; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx3 .tooltip-label { +#_sample_helper_static_id_prefix_3 .tooltip-label { fill: #bbbbbb; font-weight: bold; font-style: normal;font-family: sans-serif; @@ -264,7 +264,7 @@ font-size: 13.0px; } - + @@ -413,7 +413,7 @@ font-size: 13.0px; - + @@ -659,7 +659,7 @@ font-size: 13.0px; - + @@ -779,7 +779,7 @@ font-size: 13.0px; - + @@ -794,117 +794,117 @@ font-size: 13.0px; text { text-rendering: optimizeLegibility; } -#xXxprefixXx4 .plot-title { +#_sample_helper_static_id_prefix_4 .plot-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx4 .plot-subtitle { +#_sample_helper_static_id_prefix_4 .plot-subtitle { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx4 .plot-caption { +#_sample_helper_static_id_prefix_4 .plot-caption { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx4 .hyperlink-element { +#_sample_helper_static_id_prefix_4 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx4 .legend-title { +#_sample_helper_static_id_prefix_4 .legend-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx4 .legend-item { +#_sample_helper_static_id_prefix_4 .legend-item { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx4 .axis-title-x { +#_sample_helper_static_id_prefix_4 .axis-title-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx4 .axis-text-x { +#_sample_helper_static_id_prefix_4 .axis-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx6 .axis-tooltip-text-x { +#_sample_helper_static_id_prefix_6 .axis-tooltip-text-x { fill: #303030; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx4 .axis-title-y { +#_sample_helper_static_id_prefix_4 .axis-title-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx4 .axis-text-y { +#_sample_helper_static_id_prefix_4 .axis-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx6 .axis-tooltip-text-y { +#_sample_helper_static_id_prefix_6 .axis-tooltip-text-y { fill: #303030; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx4 .facet-strip-text-x { +#_sample_helper_static_id_prefix_4 .facet-strip-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx4 .facet-strip-text-y { +#_sample_helper_static_id_prefix_4 .facet-strip-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx6 .tooltip-text { +#_sample_helper_static_id_prefix_6 .tooltip-text { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx6 .tooltip-title { +#_sample_helper_static_id_prefix_6 .tooltip-title { fill: #bbbbbb; font-weight: bold; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx6 .tooltip-label { +#_sample_helper_static_id_prefix_6 .tooltip-label { fill: #bbbbbb; font-weight: bold; font-style: normal;font-family: sans-serif; @@ -913,7 +913,7 @@ font-size: 13.0px; } - + @@ -1064,7 +1064,7 @@ font-size: 13.0px; - + @@ -1310,7 +1310,7 @@ font-size: 13.0px; - + @@ -1442,7 +1442,7 @@ font-size: 13.0px; - + \ No newline at end of file diff --git a/docs/images/guides/layout/guideTitleChangeColorAndFontFace.svg b/docs/images/guides/layout/guideTitleChangeColorAndFontFace.svg index 252201f4f..72cbfbead 100644 --- a/docs/images/guides/layout/guideTitleChangeColorAndFontFace.svg +++ b/docs/images/guides/layout/guideTitleChangeColorAndFontFace.svg @@ -10,117 +10,117 @@ text { text-rendering: optimizeLegibility; } -#xXxprefixXx0 .plot-title { +#_sample_helper_static_id_prefix_0 .plot-title { fill: #5470c6; font-weight: normal; font-style: italic;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #474747; font-weight: normal; font-style: italic;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #474747; font-weight: normal; font-style: italic;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #474747; font-weight: normal; font-style: italic;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #474747; font-weight: normal; font-style: italic;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #474747; font-weight: normal; font-style: italic;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #474747; font-weight: normal; font-style: italic;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-x { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-x { fill: #ffffff; font-weight: normal; font-style: italic;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #474747; font-weight: normal; font-style: italic;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #474747; font-weight: normal; font-style: italic;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-y { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-y { fill: #ffffff; font-weight: normal; font-style: italic;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #474747; font-weight: normal; font-style: italic;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #474747; font-weight: normal; font-style: italic;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-text { +#_sample_helper_static_id_prefix_2 .tooltip-text { fill: #474747; font-weight: normal; font-style: italic;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-title { +#_sample_helper_static_id_prefix_2 .tooltip-title { fill: #474747; font-weight: bold; font-style: italic;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-label { +#_sample_helper_static_id_prefix_2 .tooltip-label { fill: #474747; font-weight: bold; font-style: italic;font-family: sans-serif; @@ -129,7 +129,7 @@ font-size: 13.0px; } - + @@ -278,7 +278,7 @@ font-size: 13.0px; - + @@ -524,7 +524,7 @@ font-size: 13.0px; - + @@ -622,6 +622,6 @@ font-size: 13.0px; - + \ No newline at end of file diff --git a/docs/images/guides/layout/guideTitleChangeColorAndFontFace_dark.svg b/docs/images/guides/layout/guideTitleChangeColorAndFontFace_dark.svg index bbf74980d..a59b27390 100644 --- a/docs/images/guides/layout/guideTitleChangeColorAndFontFace_dark.svg +++ b/docs/images/guides/layout/guideTitleChangeColorAndFontFace_dark.svg @@ -10,117 +10,117 @@ text { text-rendering: optimizeLegibility; } -#xXxprefixXx0 .plot-title { +#_sample_helper_static_id_prefix_0 .plot-title { fill: #5470c6; font-weight: normal; font-style: italic;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #bbbbbb; font-weight: normal; font-style: italic;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #bbbbbb; font-weight: normal; font-style: italic;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #bbbbbb; font-weight: normal; font-style: italic;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #bbbbbb; font-weight: normal; font-style: italic;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #bbbbbb; font-weight: normal; font-style: italic;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #bbbbbb; font-weight: normal; font-style: italic;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-x { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-x { fill: #303030; font-weight: normal; font-style: italic;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #bbbbbb; font-weight: normal; font-style: italic;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #bbbbbb; font-weight: normal; font-style: italic;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-y { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-y { fill: #303030; font-weight: normal; font-style: italic;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #bbbbbb; font-weight: normal; font-style: italic;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #bbbbbb; font-weight: normal; font-style: italic;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-text { +#_sample_helper_static_id_prefix_2 .tooltip-text { fill: #bbbbbb; font-weight: normal; font-style: italic;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-title { +#_sample_helper_static_id_prefix_2 .tooltip-title { fill: #bbbbbb; font-weight: bold; font-style: italic;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-label { +#_sample_helper_static_id_prefix_2 .tooltip-label { fill: #bbbbbb; font-weight: bold; font-style: italic;font-family: sans-serif; @@ -129,7 +129,7 @@ font-size: 13.0px; } - + @@ -278,7 +278,7 @@ font-size: 13.0px; - + @@ -524,7 +524,7 @@ font-size: 13.0px; - + @@ -622,6 +622,6 @@ font-size: 13.0px; - + \ No newline at end of file diff --git a/docs/images/guides/layout/guideTitleChangeTitlesColor.svg b/docs/images/guides/layout/guideTitleChangeTitlesColor.svg index c9be7c1ea..993fcee57 100644 --- a/docs/images/guides/layout/guideTitleChangeTitlesColor.svg +++ b/docs/images/guides/layout/guideTitleChangeTitlesColor.svg @@ -10,117 +10,117 @@ text { text-rendering: optimizeLegibility; } -#xXxprefixXx0 .plot-title { +#_sample_helper_static_id_prefix_0 .plot-title { fill: #5470c6; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #5470c6; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #5470c6; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #5470c6; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #5470c6; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-x { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-x { fill: #ffffff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #5470c6; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-y { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-y { fill: #ffffff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-text { +#_sample_helper_static_id_prefix_2 .tooltip-text { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-title { +#_sample_helper_static_id_prefix_2 .tooltip-title { fill: #474747; font-weight: bold; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-label { +#_sample_helper_static_id_prefix_2 .tooltip-label { fill: #474747; font-weight: bold; font-style: normal;font-family: sans-serif; @@ -129,7 +129,7 @@ font-size: 13.0px; } - + @@ -278,7 +278,7 @@ font-size: 13.0px; - + @@ -524,7 +524,7 @@ font-size: 13.0px; - + @@ -622,6 +622,6 @@ font-size: 13.0px; - + \ No newline at end of file diff --git a/docs/images/guides/layout/guideTitleChangeTitlesColor_dark.svg b/docs/images/guides/layout/guideTitleChangeTitlesColor_dark.svg index 51e947e76..86fc93e20 100644 --- a/docs/images/guides/layout/guideTitleChangeTitlesColor_dark.svg +++ b/docs/images/guides/layout/guideTitleChangeTitlesColor_dark.svg @@ -10,117 +10,117 @@ text { text-rendering: optimizeLegibility; } -#xXxprefixXx0 .plot-title { +#_sample_helper_static_id_prefix_0 .plot-title { fill: #5470c6; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #5470c6; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #5470c6; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #5470c6; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #5470c6; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-x { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-x { fill: #303030; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #5470c6; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-y { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-y { fill: #303030; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-text { +#_sample_helper_static_id_prefix_2 .tooltip-text { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-title { +#_sample_helper_static_id_prefix_2 .tooltip-title { fill: #bbbbbb; font-weight: bold; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-label { +#_sample_helper_static_id_prefix_2 .tooltip-label { fill: #bbbbbb; font-weight: bold; font-style: normal;font-family: sans-serif; @@ -129,7 +129,7 @@ font-size: 13.0px; } - + @@ -278,7 +278,7 @@ font-size: 13.0px; - + @@ -524,7 +524,7 @@ font-size: 13.0px; - + @@ -622,6 +622,6 @@ font-size: 13.0px; - + \ No newline at end of file diff --git a/docs/images/guides/layout/guideTitleComplexLegendBottom.svg b/docs/images/guides/layout/guideTitleComplexLegendBottom.svg index 67ef31131..bbf08b68d 100644 --- a/docs/images/guides/layout/guideTitleComplexLegendBottom.svg +++ b/docs/images/guides/layout/guideTitleComplexLegendBottom.svg @@ -10,117 +10,117 @@ text { text-rendering: optimizeLegibility; } -#xXxprefixXx0 .plot-title { +#_sample_helper_static_id_prefix_0 .plot-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-x { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-x { fill: #ffffff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-y { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-y { fill: #ffffff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-text { +#_sample_helper_static_id_prefix_2 .tooltip-text { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-title { +#_sample_helper_static_id_prefix_2 .tooltip-title { fill: #474747; font-weight: bold; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-label { +#_sample_helper_static_id_prefix_2 .tooltip-label { fill: #474747; font-weight: bold; font-style: normal;font-family: sans-serif; @@ -129,7 +129,7 @@ font-size: 13.0px; } - + @@ -344,7 +344,7 @@ font-size: 13.0px; - + @@ -590,7 +590,7 @@ font-size: 13.0px; - + @@ -788,6 +788,6 @@ font-size: 13.0px; - + \ No newline at end of file diff --git a/docs/images/guides/layout/guideTitleComplexLegendBottom_dark.svg b/docs/images/guides/layout/guideTitleComplexLegendBottom_dark.svg index 3ea6df858..dbbdbd898 100644 --- a/docs/images/guides/layout/guideTitleComplexLegendBottom_dark.svg +++ b/docs/images/guides/layout/guideTitleComplexLegendBottom_dark.svg @@ -10,117 +10,117 @@ text { text-rendering: optimizeLegibility; } -#xXxprefixXx0 .plot-title { +#_sample_helper_static_id_prefix_0 .plot-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-x { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-x { fill: #303030; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-y { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-y { fill: #303030; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-text { +#_sample_helper_static_id_prefix_2 .tooltip-text { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-title { +#_sample_helper_static_id_prefix_2 .tooltip-title { fill: #bbbbbb; font-weight: bold; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-label { +#_sample_helper_static_id_prefix_2 .tooltip-label { fill: #bbbbbb; font-weight: bold; font-style: normal;font-family: sans-serif; @@ -129,7 +129,7 @@ font-size: 13.0px; } - + @@ -344,7 +344,7 @@ font-size: 13.0px; - + @@ -590,7 +590,7 @@ font-size: 13.0px; - + @@ -788,6 +788,6 @@ font-size: 13.0px; - + \ No newline at end of file diff --git a/docs/images/guides/layout/guideTitleComplexLegendNames.svg b/docs/images/guides/layout/guideTitleComplexLegendNames.svg index 8387ab881..d7b0a3f77 100644 --- a/docs/images/guides/layout/guideTitleComplexLegendNames.svg +++ b/docs/images/guides/layout/guideTitleComplexLegendNames.svg @@ -10,117 +10,117 @@ text { text-rendering: optimizeLegibility; } -#xXxprefixXx0 .plot-title { +#_sample_helper_static_id_prefix_0 .plot-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-x { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-x { fill: #ffffff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-y { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-y { fill: #ffffff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-text { +#_sample_helper_static_id_prefix_2 .tooltip-text { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-title { +#_sample_helper_static_id_prefix_2 .tooltip-title { fill: #474747; font-weight: bold; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-label { +#_sample_helper_static_id_prefix_2 .tooltip-label { fill: #474747; font-weight: bold; font-style: normal;font-family: sans-serif; @@ -129,7 +129,7 @@ font-size: 13.0px; } - + @@ -169,7 +169,7 @@ font-size: 13.0px; - + @@ -415,7 +415,7 @@ font-size: 13.0px; - + @@ -722,6 +722,6 @@ font-size: 13.0px; - + \ No newline at end of file diff --git a/docs/images/guides/layout/guideTitleComplexLegendNames_dark.svg b/docs/images/guides/layout/guideTitleComplexLegendNames_dark.svg index cbcb2e684..34b95aa1b 100644 --- a/docs/images/guides/layout/guideTitleComplexLegendNames_dark.svg +++ b/docs/images/guides/layout/guideTitleComplexLegendNames_dark.svg @@ -10,117 +10,117 @@ text { text-rendering: optimizeLegibility; } -#xXxprefixXx0 .plot-title { +#_sample_helper_static_id_prefix_0 .plot-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-x { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-x { fill: #303030; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-y { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-y { fill: #303030; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-text { +#_sample_helper_static_id_prefix_2 .tooltip-text { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-title { +#_sample_helper_static_id_prefix_2 .tooltip-title { fill: #bbbbbb; font-weight: bold; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-label { +#_sample_helper_static_id_prefix_2 .tooltip-label { fill: #bbbbbb; font-weight: bold; font-style: normal;font-family: sans-serif; @@ -129,7 +129,7 @@ font-size: 13.0px; } - + @@ -278,7 +278,7 @@ font-size: 13.0px; - + @@ -524,7 +524,7 @@ font-size: 13.0px; - + @@ -722,6 +722,6 @@ font-size: 13.0px; - + \ No newline at end of file diff --git a/docs/images/guides/layout/guideTitleComplexTitles.svg b/docs/images/guides/layout/guideTitleComplexTitles.svg index 64484a1c6..305e08be3 100644 --- a/docs/images/guides/layout/guideTitleComplexTitles.svg +++ b/docs/images/guides/layout/guideTitleComplexTitles.svg @@ -10,117 +10,117 @@ text { text-rendering: optimizeLegibility; } -#xXxprefixXx0 .plot-title { +#_sample_helper_static_id_prefix_0 .plot-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #a39999; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-x { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-x { fill: #ffffff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-y { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-y { fill: #ffffff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-text { +#_sample_helper_static_id_prefix_2 .tooltip-text { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-title { +#_sample_helper_static_id_prefix_2 .tooltip-title { fill: #474747; font-weight: bold; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-label { +#_sample_helper_static_id_prefix_2 .tooltip-label { fill: #474747; font-weight: bold; font-style: normal;font-family: sans-serif; @@ -129,7 +129,7 @@ font-size: 13.0px; } - + @@ -278,7 +278,7 @@ font-size: 13.0px; - + @@ -524,7 +524,7 @@ font-size: 13.0px; - + @@ -631,6 +631,6 @@ font-size: 13.0px; - + \ No newline at end of file diff --git a/docs/images/guides/layout/guideTitleComplexTitles_dark.svg b/docs/images/guides/layout/guideTitleComplexTitles_dark.svg index 935b1a593..f432a0da9 100644 --- a/docs/images/guides/layout/guideTitleComplexTitles_dark.svg +++ b/docs/images/guides/layout/guideTitleComplexTitles_dark.svg @@ -10,117 +10,117 @@ text { text-rendering: optimizeLegibility; } -#xXxprefixXx0 .plot-title { +#_sample_helper_static_id_prefix_0 .plot-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #a39999; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-x { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-x { fill: #303030; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-y { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-y { fill: #303030; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-text { +#_sample_helper_static_id_prefix_2 .tooltip-text { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-title { +#_sample_helper_static_id_prefix_2 .tooltip-title { fill: #bbbbbb; font-weight: bold; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-label { +#_sample_helper_static_id_prefix_2 .tooltip-label { fill: #bbbbbb; font-weight: bold; font-style: normal;font-family: sans-serif; @@ -129,7 +129,7 @@ font-size: 13.0px; } - + @@ -278,7 +278,7 @@ font-size: 13.0px; - + @@ -524,7 +524,7 @@ font-size: 13.0px; - + @@ -631,6 +631,6 @@ font-size: 13.0px; - + \ No newline at end of file diff --git a/docs/images/guides/layout/guideTitleDefaultPointPlot.svg b/docs/images/guides/layout/guideTitleDefaultPointPlot.svg index 8919a3ecb..b092d2b50 100644 --- a/docs/images/guides/layout/guideTitleDefaultPointPlot.svg +++ b/docs/images/guides/layout/guideTitleDefaultPointPlot.svg @@ -10,117 +10,117 @@ text { text-rendering: optimizeLegibility; } -#xXxprefixXx0 .plot-title { +#_sample_helper_static_id_prefix_0 .plot-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-x { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-x { fill: #ffffff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-y { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-y { fill: #ffffff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-text { +#_sample_helper_static_id_prefix_2 .tooltip-text { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-title { +#_sample_helper_static_id_prefix_2 .tooltip-title { fill: #474747; font-weight: bold; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-label { +#_sample_helper_static_id_prefix_2 .tooltip-label { fill: #474747; font-weight: bold; font-style: normal;font-family: sans-serif; @@ -129,7 +129,7 @@ font-size: 13.0px; } - + @@ -169,7 +169,7 @@ font-size: 13.0px; - + @@ -415,7 +415,7 @@ font-size: 13.0px; - + @@ -607,6 +607,6 @@ font-size: 13.0px; - + \ No newline at end of file diff --git a/docs/images/guides/layout/guideTitleDefaultPointPlot_dark.svg b/docs/images/guides/layout/guideTitleDefaultPointPlot_dark.svg index 1df876ac1..e94809f24 100644 --- a/docs/images/guides/layout/guideTitleDefaultPointPlot_dark.svg +++ b/docs/images/guides/layout/guideTitleDefaultPointPlot_dark.svg @@ -10,117 +10,117 @@ text { text-rendering: optimizeLegibility; } -#xXxprefixXx0 .plot-title { +#_sample_helper_static_id_prefix_0 .plot-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-x { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-x { fill: #303030; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-y { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-y { fill: #303030; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-text { +#_sample_helper_static_id_prefix_2 .tooltip-text { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-title { +#_sample_helper_static_id_prefix_2 .tooltip-title { fill: #bbbbbb; font-weight: bold; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-label { +#_sample_helper_static_id_prefix_2 .tooltip-label { fill: #bbbbbb; font-weight: bold; font-style: normal;font-family: sans-serif; @@ -129,7 +129,7 @@ font-size: 13.0px; } - + @@ -278,7 +278,7 @@ font-size: 13.0px; - + @@ -524,7 +524,7 @@ font-size: 13.0px; - + @@ -607,6 +607,6 @@ font-size: 13.0px; - + \ No newline at end of file diff --git a/docs/images/guides/layout/guideTitleLegendName.svg b/docs/images/guides/layout/guideTitleLegendName.svg index 13e0c1088..5c14044bd 100644 --- a/docs/images/guides/layout/guideTitleLegendName.svg +++ b/docs/images/guides/layout/guideTitleLegendName.svg @@ -10,117 +10,117 @@ text { text-rendering: optimizeLegibility; } -#xXxprefixXx0 .plot-title { +#_sample_helper_static_id_prefix_0 .plot-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-x { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-x { fill: #ffffff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-y { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-y { fill: #ffffff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-text { +#_sample_helper_static_id_prefix_2 .tooltip-text { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-title { +#_sample_helper_static_id_prefix_2 .tooltip-title { fill: #474747; font-weight: bold; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-label { +#_sample_helper_static_id_prefix_2 .tooltip-label { fill: #474747; font-weight: bold; font-style: normal;font-family: sans-serif; @@ -129,7 +129,7 @@ font-size: 13.0px; } - + @@ -169,7 +169,7 @@ font-size: 13.0px; - + @@ -415,7 +415,7 @@ font-size: 13.0px; - + @@ -716,6 +716,6 @@ font-size: 13.0px; - + \ No newline at end of file diff --git a/docs/images/guides/layout/guideTitleLegendName_dark.svg b/docs/images/guides/layout/guideTitleLegendName_dark.svg index e79bec15e..64e06b992 100644 --- a/docs/images/guides/layout/guideTitleLegendName_dark.svg +++ b/docs/images/guides/layout/guideTitleLegendName_dark.svg @@ -10,117 +10,117 @@ text { text-rendering: optimizeLegibility; } -#xXxprefixXx0 .plot-title { +#_sample_helper_static_id_prefix_0 .plot-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-x { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-x { fill: #303030; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-y { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-y { fill: #303030; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-text { +#_sample_helper_static_id_prefix_2 .tooltip-text { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-title { +#_sample_helper_static_id_prefix_2 .tooltip-title { fill: #bbbbbb; font-weight: bold; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-label { +#_sample_helper_static_id_prefix_2 .tooltip-label { fill: #bbbbbb; font-weight: bold; font-style: normal;font-family: sans-serif; @@ -129,7 +129,7 @@ font-size: 13.0px; } - + @@ -278,7 +278,7 @@ font-size: 13.0px; - + @@ -524,7 +524,7 @@ font-size: 13.0px; - + @@ -716,6 +716,6 @@ font-size: 13.0px; - + \ No newline at end of file diff --git a/docs/images/guides/layout/guideTitleLegendPosition.svg b/docs/images/guides/layout/guideTitleLegendPosition.svg index e55e30c2a..e4953e531 100644 --- a/docs/images/guides/layout/guideTitleLegendPosition.svg +++ b/docs/images/guides/layout/guideTitleLegendPosition.svg @@ -10,117 +10,117 @@ text { text-rendering: optimizeLegibility; } -#xXxprefixXx0 .plot-title { +#_sample_helper_static_id_prefix_0 .plot-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-x { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-x { fill: #ffffff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-y { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-y { fill: #ffffff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-text { +#_sample_helper_static_id_prefix_2 .tooltip-text { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-title { +#_sample_helper_static_id_prefix_2 .tooltip-title { fill: #474747; font-weight: bold; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-label { +#_sample_helper_static_id_prefix_2 .tooltip-label { fill: #474747; font-weight: bold; font-style: normal;font-family: sans-serif; @@ -129,7 +129,7 @@ font-size: 13.0px; } - + @@ -344,7 +344,7 @@ font-size: 13.0px; - + @@ -590,7 +590,7 @@ font-size: 13.0px; - + @@ -782,6 +782,6 @@ font-size: 13.0px; - + \ No newline at end of file diff --git a/docs/images/guides/layout/guideTitleLegendPosition_dark.svg b/docs/images/guides/layout/guideTitleLegendPosition_dark.svg index 67e185117..a30e744cd 100644 --- a/docs/images/guides/layout/guideTitleLegendPosition_dark.svg +++ b/docs/images/guides/layout/guideTitleLegendPosition_dark.svg @@ -10,117 +10,117 @@ text { text-rendering: optimizeLegibility; } -#xXxprefixXx0 .plot-title { +#_sample_helper_static_id_prefix_0 .plot-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-x { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-x { fill: #303030; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-y { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-y { fill: #303030; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-text { +#_sample_helper_static_id_prefix_2 .tooltip-text { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-title { +#_sample_helper_static_id_prefix_2 .tooltip-title { fill: #bbbbbb; font-weight: bold; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-label { +#_sample_helper_static_id_prefix_2 .tooltip-label { fill: #bbbbbb; font-weight: bold; font-style: normal;font-family: sans-serif; @@ -129,7 +129,7 @@ font-size: 13.0px; } - + @@ -344,7 +344,7 @@ font-size: 13.0px; - + @@ -590,7 +590,7 @@ font-size: 13.0px; - + @@ -782,6 +782,6 @@ font-size: 13.0px; - + \ No newline at end of file diff --git a/docs/images/guides/layout/guideTitleSetColorsForTitleSubtitleCaption.svg b/docs/images/guides/layout/guideTitleSetColorsForTitleSubtitleCaption.svg index 141e92a3b..44a3829cb 100644 --- a/docs/images/guides/layout/guideTitleSetColorsForTitleSubtitleCaption.svg +++ b/docs/images/guides/layout/guideTitleSetColorsForTitleSubtitleCaption.svg @@ -10,117 +10,117 @@ text { text-rendering: optimizeLegibility; } -#xXxprefixXx0 .plot-title { +#_sample_helper_static_id_prefix_0 .plot-title { fill: #5470c6; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #ee6666; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #006400; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-x { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-x { fill: #ffffff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-y { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-y { fill: #ffffff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-text { +#_sample_helper_static_id_prefix_2 .tooltip-text { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-title { +#_sample_helper_static_id_prefix_2 .tooltip-title { fill: #474747; font-weight: bold; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-label { +#_sample_helper_static_id_prefix_2 .tooltip-label { fill: #474747; font-weight: bold; font-style: normal;font-family: sans-serif; @@ -129,7 +129,7 @@ font-size: 13.0px; } - + @@ -278,7 +278,7 @@ font-size: 13.0px; - + @@ -524,7 +524,7 @@ font-size: 13.0px; - + @@ -622,6 +622,6 @@ font-size: 13.0px; - + \ No newline at end of file diff --git a/docs/images/guides/layout/guideTitleSetColorsForTitleSubtitleCaption_dark.svg b/docs/images/guides/layout/guideTitleSetColorsForTitleSubtitleCaption_dark.svg index 751cc4d0d..8f4ac3bd1 100644 --- a/docs/images/guides/layout/guideTitleSetColorsForTitleSubtitleCaption_dark.svg +++ b/docs/images/guides/layout/guideTitleSetColorsForTitleSubtitleCaption_dark.svg @@ -10,117 +10,117 @@ text { text-rendering: optimizeLegibility; } -#xXxprefixXx0 .plot-title { +#_sample_helper_static_id_prefix_0 .plot-title { fill: #5470c6; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #ee6666; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #006400; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-x { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-x { fill: #303030; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-y { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-y { fill: #303030; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-text { +#_sample_helper_static_id_prefix_2 .tooltip-text { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-title { +#_sample_helper_static_id_prefix_2 .tooltip-title { fill: #bbbbbb; font-weight: bold; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-label { +#_sample_helper_static_id_prefix_2 .tooltip-label { fill: #bbbbbb; font-weight: bold; font-style: normal;font-family: sans-serif; @@ -129,7 +129,7 @@ font-size: 13.0px; } - + @@ -278,7 +278,7 @@ font-size: 13.0px; - + @@ -524,7 +524,7 @@ font-size: 13.0px; - + @@ -622,6 +622,6 @@ font-size: 13.0px; - + \ No newline at end of file diff --git a/docs/images/guides/layout/guideTitleSetTitle1.svg b/docs/images/guides/layout/guideTitleSetTitle1.svg index 776ff1e9f..bee3e22bc 100644 --- a/docs/images/guides/layout/guideTitleSetTitle1.svg +++ b/docs/images/guides/layout/guideTitleSetTitle1.svg @@ -10,117 +10,117 @@ text { text-rendering: optimizeLegibility; } -#xXxprefixXx0 .plot-title { +#_sample_helper_static_id_prefix_0 .plot-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-x { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-x { fill: #ffffff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-y { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-y { fill: #ffffff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-text { +#_sample_helper_static_id_prefix_2 .tooltip-text { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-title { +#_sample_helper_static_id_prefix_2 .tooltip-title { fill: #474747; font-weight: bold; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-label { +#_sample_helper_static_id_prefix_2 .tooltip-label { fill: #474747; font-weight: bold; font-style: normal;font-family: sans-serif; @@ -129,7 +129,7 @@ font-size: 13.0px; } - + @@ -169,7 +169,7 @@ font-size: 13.0px; - + @@ -415,7 +415,7 @@ font-size: 13.0px; - + @@ -612,6 +612,6 @@ font-size: 13.0px; - + \ No newline at end of file diff --git a/docs/images/guides/layout/guideTitleSetTitle1_dark.svg b/docs/images/guides/layout/guideTitleSetTitle1_dark.svg index dc73ca5a0..f05acb506 100644 --- a/docs/images/guides/layout/guideTitleSetTitle1_dark.svg +++ b/docs/images/guides/layout/guideTitleSetTitle1_dark.svg @@ -10,117 +10,117 @@ text { text-rendering: optimizeLegibility; } -#xXxprefixXx0 .plot-title { +#_sample_helper_static_id_prefix_0 .plot-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-x { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-x { fill: #303030; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-y { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-y { fill: #303030; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-text { +#_sample_helper_static_id_prefix_2 .tooltip-text { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-title { +#_sample_helper_static_id_prefix_2 .tooltip-title { fill: #bbbbbb; font-weight: bold; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-label { +#_sample_helper_static_id_prefix_2 .tooltip-label { fill: #bbbbbb; font-weight: bold; font-style: normal;font-family: sans-serif; @@ -129,7 +129,7 @@ font-size: 13.0px; } - + @@ -278,7 +278,7 @@ font-size: 13.0px; - + @@ -524,7 +524,7 @@ font-size: 13.0px; - + @@ -612,6 +612,6 @@ font-size: 13.0px; - + \ No newline at end of file diff --git a/docs/images/guides/layout/guideTitleSetTitle2.svg b/docs/images/guides/layout/guideTitleSetTitle2.svg index beeb5c282..28e28a93e 100644 --- a/docs/images/guides/layout/guideTitleSetTitle2.svg +++ b/docs/images/guides/layout/guideTitleSetTitle2.svg @@ -10,117 +10,117 @@ text { text-rendering: optimizeLegibility; } -#xXxprefixXx0 .plot-title { +#_sample_helper_static_id_prefix_0 .plot-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-x { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-x { fill: #ffffff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-y { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-y { fill: #ffffff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-text { +#_sample_helper_static_id_prefix_2 .tooltip-text { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-title { +#_sample_helper_static_id_prefix_2 .tooltip-title { fill: #474747; font-weight: bold; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-label { +#_sample_helper_static_id_prefix_2 .tooltip-label { fill: #474747; font-weight: bold; font-style: normal;font-family: sans-serif; @@ -129,7 +129,7 @@ font-size: 13.0px; } - + @@ -169,7 +169,7 @@ font-size: 13.0px; - + @@ -415,7 +415,7 @@ font-size: 13.0px; - + @@ -612,6 +612,6 @@ font-size: 13.0px; - + \ No newline at end of file diff --git a/docs/images/guides/layout/guideTitleSetTitle2_dark.svg b/docs/images/guides/layout/guideTitleSetTitle2_dark.svg index 3939da18a..078b9b090 100644 --- a/docs/images/guides/layout/guideTitleSetTitle2_dark.svg +++ b/docs/images/guides/layout/guideTitleSetTitle2_dark.svg @@ -10,117 +10,117 @@ text { text-rendering: optimizeLegibility; } -#xXxprefixXx0 .plot-title { +#_sample_helper_static_id_prefix_0 .plot-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-x { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-x { fill: #303030; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-y { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-y { fill: #303030; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-text { +#_sample_helper_static_id_prefix_2 .tooltip-text { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-title { +#_sample_helper_static_id_prefix_2 .tooltip-title { fill: #bbbbbb; font-weight: bold; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-label { +#_sample_helper_static_id_prefix_2 .tooltip-label { fill: #bbbbbb; font-weight: bold; font-style: normal;font-family: sans-serif; @@ -129,7 +129,7 @@ font-size: 13.0px; } - + @@ -278,7 +278,7 @@ font-size: 13.0px; - + @@ -524,7 +524,7 @@ font-size: 13.0px; - + @@ -612,6 +612,6 @@ font-size: 13.0px; - + \ No newline at end of file diff --git a/docs/images/guides/layout/guideTitleSetTitleAndSubtitle.svg b/docs/images/guides/layout/guideTitleSetTitleAndSubtitle.svg index edaa1bfe7..1745ebd35 100644 --- a/docs/images/guides/layout/guideTitleSetTitleAndSubtitle.svg +++ b/docs/images/guides/layout/guideTitleSetTitleAndSubtitle.svg @@ -10,117 +10,117 @@ text { text-rendering: optimizeLegibility; } -#xXxprefixXx0 .plot-title { +#_sample_helper_static_id_prefix_0 .plot-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-x { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-x { fill: #ffffff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-y { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-y { fill: #ffffff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-text { +#_sample_helper_static_id_prefix_2 .tooltip-text { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-title { +#_sample_helper_static_id_prefix_2 .tooltip-title { fill: #474747; font-weight: bold; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-label { +#_sample_helper_static_id_prefix_2 .tooltip-label { fill: #474747; font-weight: bold; font-style: normal;font-family: sans-serif; @@ -129,7 +129,7 @@ font-size: 13.0px; } - + @@ -169,7 +169,7 @@ font-size: 13.0px; - + @@ -415,7 +415,7 @@ font-size: 13.0px; - + @@ -617,6 +617,6 @@ font-size: 13.0px; - + \ No newline at end of file diff --git a/docs/images/guides/layout/guideTitleSetTitleAndSubtitle_dark.svg b/docs/images/guides/layout/guideTitleSetTitleAndSubtitle_dark.svg index bcc8e7238..2ade558c1 100644 --- a/docs/images/guides/layout/guideTitleSetTitleAndSubtitle_dark.svg +++ b/docs/images/guides/layout/guideTitleSetTitleAndSubtitle_dark.svg @@ -10,117 +10,117 @@ text { text-rendering: optimizeLegibility; } -#xXxprefixXx0 .plot-title { +#_sample_helper_static_id_prefix_0 .plot-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-x { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-x { fill: #303030; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-y { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-y { fill: #303030; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-text { +#_sample_helper_static_id_prefix_2 .tooltip-text { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-title { +#_sample_helper_static_id_prefix_2 .tooltip-title { fill: #bbbbbb; font-weight: bold; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-label { +#_sample_helper_static_id_prefix_2 .tooltip-label { fill: #bbbbbb; font-weight: bold; font-style: normal;font-family: sans-serif; @@ -129,7 +129,7 @@ font-size: 13.0px; } - + @@ -278,7 +278,7 @@ font-size: 13.0px; - + @@ -524,7 +524,7 @@ font-size: 13.0px; - + @@ -617,6 +617,6 @@ font-size: 13.0px; - + \ No newline at end of file diff --git a/docs/images/guides/layout/guideTitleSetTitleSubtitleCaption.svg b/docs/images/guides/layout/guideTitleSetTitleSubtitleCaption.svg index b1105c964..a3c55c7c4 100644 --- a/docs/images/guides/layout/guideTitleSetTitleSubtitleCaption.svg +++ b/docs/images/guides/layout/guideTitleSetTitleSubtitleCaption.svg @@ -10,117 +10,117 @@ text { text-rendering: optimizeLegibility; } -#xXxprefixXx0 .plot-title { +#_sample_helper_static_id_prefix_0 .plot-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-x { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-x { fill: #ffffff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-y { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-y { fill: #ffffff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-text { +#_sample_helper_static_id_prefix_2 .tooltip-text { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-title { +#_sample_helper_static_id_prefix_2 .tooltip-title { fill: #474747; font-weight: bold; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-label { +#_sample_helper_static_id_prefix_2 .tooltip-label { fill: #474747; font-weight: bold; font-style: normal;font-family: sans-serif; @@ -129,7 +129,7 @@ font-size: 13.0px; } - + @@ -169,7 +169,7 @@ font-size: 13.0px; - + @@ -415,7 +415,7 @@ font-size: 13.0px; - + @@ -622,6 +622,6 @@ font-size: 13.0px; - + \ No newline at end of file diff --git a/docs/images/guides/layout/guideTitleSetTitleSubtitleCaption_dark.svg b/docs/images/guides/layout/guideTitleSetTitleSubtitleCaption_dark.svg index 82585d3b4..45ae46733 100644 --- a/docs/images/guides/layout/guideTitleSetTitleSubtitleCaption_dark.svg +++ b/docs/images/guides/layout/guideTitleSetTitleSubtitleCaption_dark.svg @@ -10,117 +10,117 @@ text { text-rendering: optimizeLegibility; } -#xXxprefixXx0 .plot-title { +#_sample_helper_static_id_prefix_0 .plot-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-x { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-x { fill: #303030; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-y { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-y { fill: #303030; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-text { +#_sample_helper_static_id_prefix_2 .tooltip-text { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-title { +#_sample_helper_static_id_prefix_2 .tooltip-title { fill: #bbbbbb; font-weight: bold; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-label { +#_sample_helper_static_id_prefix_2 .tooltip-label { fill: #bbbbbb; font-weight: bold; font-style: normal;font-family: sans-serif; @@ -129,7 +129,7 @@ font-size: 13.0px; } - + @@ -278,7 +278,7 @@ font-size: 13.0px; - + @@ -524,7 +524,7 @@ font-size: 13.0px; - + @@ -622,6 +622,6 @@ font-size: 13.0px; - + \ No newline at end of file diff --git a/docs/images/guides/layout/guideTitleTypeOfLegend.svg b/docs/images/guides/layout/guideTitleTypeOfLegend.svg index 3be45ae0a..ab497b866 100644 --- a/docs/images/guides/layout/guideTitleTypeOfLegend.svg +++ b/docs/images/guides/layout/guideTitleTypeOfLegend.svg @@ -10,117 +10,117 @@ text { text-rendering: optimizeLegibility; } -#xXxprefixXx0 .plot-title { +#_sample_helper_static_id_prefix_0 .plot-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-x { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-x { fill: #ffffff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-y { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-y { fill: #ffffff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-text { +#_sample_helper_static_id_prefix_2 .tooltip-text { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-title { +#_sample_helper_static_id_prefix_2 .tooltip-title { fill: #474747; font-weight: bold; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-label { +#_sample_helper_static_id_prefix_2 .tooltip-label { fill: #474747; font-weight: bold; font-style: normal;font-family: sans-serif; @@ -129,7 +129,7 @@ font-size: 13.0px; } - + @@ -344,7 +344,7 @@ font-size: 13.0px; - + @@ -590,7 +590,7 @@ font-size: 13.0px; - + @@ -788,6 +788,6 @@ font-size: 13.0px; - + \ No newline at end of file diff --git a/docs/images/guides/layout/guideTitleTypeOfLegend_dark.svg b/docs/images/guides/layout/guideTitleTypeOfLegend_dark.svg index 841c0fcd3..3f046ea08 100644 --- a/docs/images/guides/layout/guideTitleTypeOfLegend_dark.svg +++ b/docs/images/guides/layout/guideTitleTypeOfLegend_dark.svg @@ -10,117 +10,117 @@ text { text-rendering: optimizeLegibility; } -#xXxprefixXx0 .plot-title { +#_sample_helper_static_id_prefix_0 .plot-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-x { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-x { fill: #303030; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-y { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-y { fill: #303030; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-text { +#_sample_helper_static_id_prefix_2 .tooltip-text { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-title { +#_sample_helper_static_id_prefix_2 .tooltip-title { fill: #bbbbbb; font-weight: bold; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-label { +#_sample_helper_static_id_prefix_2 .tooltip-label { fill: #bbbbbb; font-weight: bold; font-style: normal;font-family: sans-serif; @@ -129,7 +129,7 @@ font-size: 13.0px; } - + @@ -344,7 +344,7 @@ font-size: 13.0px; - + @@ -590,7 +590,7 @@ font-size: 13.0px; - + @@ -788,6 +788,6 @@ font-size: 13.0px; - + \ No newline at end of file diff --git a/docs/images/guides/multiplot/guideAnscombesQuartetPlot.svg b/docs/images/guides/multiplot/guideAnscombesQuartetPlot.svg index b543632c8..91c8e87af 100644 --- a/docs/images/guides/multiplot/guideAnscombesQuartetPlot.svg +++ b/docs/images/guides/multiplot/guideAnscombesQuartetPlot.svg @@ -10,117 +10,117 @@ text { text-rendering: optimizeLegibility; } -#xXxprefixXx0 .plot-title { +#_sample_helper_static_id_prefix_0 .plot-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx9 .axis-tooltip-text-x { +#_sample_helper_static_id_prefix_9 .axis-tooltip-text-x { fill: #ffffff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx9 .axis-tooltip-text-y { +#_sample_helper_static_id_prefix_9 .axis-tooltip-text-y { fill: #ffffff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx9 .tooltip-text { +#_sample_helper_static_id_prefix_9 .tooltip-text { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx9 .tooltip-title { +#_sample_helper_static_id_prefix_9 .tooltip-title { fill: #474747; font-weight: bold; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx9 .tooltip-label { +#_sample_helper_static_id_prefix_9 .tooltip-label { fill: #474747; font-weight: bold; font-style: normal;font-family: sans-serif; @@ -129,7 +129,7 @@ font-size: 13.0px; } - + @@ -163,7 +163,7 @@ font-size: 13.0px; - + @@ -190,13 +190,13 @@ font-size: 13.0px; - + - + @@ -280,7 +280,7 @@ font-size: 13.0px; - + @@ -307,13 +307,13 @@ font-size: 13.0px; - + - + @@ -362,7 +362,7 @@ font-size: 13.0px; - + @@ -389,13 +389,13 @@ font-size: 13.0px; - + - + @@ -526,7 +526,7 @@ font-size: 13.0px; - + @@ -553,13 +553,13 @@ font-size: 13.0px; - + - + @@ -714,6 +714,6 @@ font-size: 13.0px; - + \ No newline at end of file diff --git a/docs/images/guides/multiplot/guideAnscombesQuartetPlot_dark.svg b/docs/images/guides/multiplot/guideAnscombesQuartetPlot_dark.svg index 0eab269a8..cf108355c 100644 --- a/docs/images/guides/multiplot/guideAnscombesQuartetPlot_dark.svg +++ b/docs/images/guides/multiplot/guideAnscombesQuartetPlot_dark.svg @@ -10,117 +10,117 @@ text { text-rendering: optimizeLegibility; } -#xXxprefixXx0 .plot-title { +#_sample_helper_static_id_prefix_0 .plot-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx9 .axis-tooltip-text-x { +#_sample_helper_static_id_prefix_9 .axis-tooltip-text-x { fill: #303030; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx9 .axis-tooltip-text-y { +#_sample_helper_static_id_prefix_9 .axis-tooltip-text-y { fill: #303030; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx9 .tooltip-text { +#_sample_helper_static_id_prefix_9 .tooltip-text { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx9 .tooltip-title { +#_sample_helper_static_id_prefix_9 .tooltip-title { fill: #bbbbbb; font-weight: bold; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx9 .tooltip-label { +#_sample_helper_static_id_prefix_9 .tooltip-label { fill: #bbbbbb; font-weight: bold; font-style: normal;font-family: sans-serif; @@ -129,7 +129,7 @@ font-size: 13.0px; } - + @@ -202,7 +202,7 @@ font-size: 13.0px; - + @@ -229,13 +229,13 @@ font-size: 13.0px; - + - + @@ -284,7 +284,7 @@ font-size: 13.0px; - + @@ -311,13 +311,13 @@ font-size: 13.0px; - + - + @@ -448,7 +448,7 @@ font-size: 13.0px; - + @@ -475,13 +475,13 @@ font-size: 13.0px; - + - + @@ -577,7 +577,7 @@ font-size: 13.0px; - + @@ -604,13 +604,13 @@ font-size: 13.0px; - + - + @@ -714,6 +714,6 @@ font-size: 13.0px; - + \ No newline at end of file diff --git a/docs/images/guides/multiplot/guideBunchCombineWithStyles.svg b/docs/images/guides/multiplot/guideBunchCombineWithStyles.svg index c96c0993b..9f0af5cb7 100644 --- a/docs/images/guides/multiplot/guideBunchCombineWithStyles.svg +++ b/docs/images/guides/multiplot/guideBunchCombineWithStyles.svg @@ -10,54 +10,54 @@ text { text-rendering: optimizeLegibility; } -#xXxprefixXx0 .plot-title { +#_sample_helper_static_id_prefix_0 .plot-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; @@ -71,14 +71,14 @@ font-weight: normal; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; @@ -92,14 +92,14 @@ font-weight: normal; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; @@ -129,7 +129,7 @@ font-size: 13.0px; } - + @@ -145,117 +145,117 @@ font-size: 13.0px; text { text-rendering: optimizeLegibility; } -#xXxprefixXx1 .plot-title { +#_sample_helper_static_id_prefix_1 .plot-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx1 .plot-subtitle { +#_sample_helper_static_id_prefix_1 .plot-subtitle { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx1 .plot-caption { +#_sample_helper_static_id_prefix_1 .plot-caption { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx1 .hyperlink-element { +#_sample_helper_static_id_prefix_1 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx1 .legend-title { +#_sample_helper_static_id_prefix_1 .legend-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx1 .legend-item { +#_sample_helper_static_id_prefix_1 .legend-item { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx1 .axis-title-x { +#_sample_helper_static_id_prefix_1 .axis-title-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx1 .axis-text-x { +#_sample_helper_static_id_prefix_1 .axis-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx3 .axis-tooltip-text-x { +#_sample_helper_static_id_prefix_3 .axis-tooltip-text-x { fill: #ffffff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx1 .axis-title-y { +#_sample_helper_static_id_prefix_1 .axis-title-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx1 .axis-text-y { +#_sample_helper_static_id_prefix_1 .axis-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx3 .axis-tooltip-text-y { +#_sample_helper_static_id_prefix_3 .axis-tooltip-text-y { fill: #ffffff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx1 .facet-strip-text-x { +#_sample_helper_static_id_prefix_1 .facet-strip-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx1 .facet-strip-text-y { +#_sample_helper_static_id_prefix_1 .facet-strip-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx3 .tooltip-text { +#_sample_helper_static_id_prefix_3 .tooltip-text { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx3 .tooltip-title { +#_sample_helper_static_id_prefix_3 .tooltip-title { fill: #474747; font-weight: bold; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx3 .tooltip-label { +#_sample_helper_static_id_prefix_3 .tooltip-label { fill: #474747; font-weight: bold; font-style: normal;font-family: sans-serif; @@ -264,7 +264,7 @@ font-size: 13.0px; } - + @@ -474,7 +474,7 @@ font-size: 13.0px; - + @@ -522,7 +522,7 @@ font-size: 13.0px; - + @@ -539,7 +539,7 @@ font-size: 13.0px; - + @@ -554,117 +554,117 @@ font-size: 13.0px; text { text-rendering: optimizeLegibility; } -#xXxprefixXx4 .plot-title { +#_sample_helper_static_id_prefix_4 .plot-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx4 .plot-subtitle { +#_sample_helper_static_id_prefix_4 .plot-subtitle { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx4 .plot-caption { +#_sample_helper_static_id_prefix_4 .plot-caption { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx4 .hyperlink-element { +#_sample_helper_static_id_prefix_4 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx4 .legend-title { +#_sample_helper_static_id_prefix_4 .legend-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx4 .legend-item { +#_sample_helper_static_id_prefix_4 .legend-item { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx4 .axis-title-x { +#_sample_helper_static_id_prefix_4 .axis-title-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx4 .axis-text-x { +#_sample_helper_static_id_prefix_4 .axis-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx6 .axis-tooltip-text-x { +#_sample_helper_static_id_prefix_6 .axis-tooltip-text-x { fill: #ffffff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx4 .axis-title-y { +#_sample_helper_static_id_prefix_4 .axis-title-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx4 .axis-text-y { +#_sample_helper_static_id_prefix_4 .axis-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx6 .axis-tooltip-text-y { +#_sample_helper_static_id_prefix_6 .axis-tooltip-text-y { fill: #ffffff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx4 .facet-strip-text-x { +#_sample_helper_static_id_prefix_4 .facet-strip-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx4 .facet-strip-text-y { +#_sample_helper_static_id_prefix_4 .facet-strip-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx6 .tooltip-text { +#_sample_helper_static_id_prefix_6 .tooltip-text { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx6 .tooltip-title { +#_sample_helper_static_id_prefix_6 .tooltip-title { fill: #474747; font-weight: bold; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx6 .tooltip-label { +#_sample_helper_static_id_prefix_6 .tooltip-label { fill: #474747; font-weight: bold; font-style: normal;font-family: sans-serif; @@ -673,7 +673,7 @@ font-size: 13.0px; } - + @@ -751,7 +751,7 @@ font-size: 13.0px; - + @@ -1163,7 +1163,7 @@ font-size: 13.0px; - + @@ -1185,7 +1185,7 @@ font-size: 13.0px; - + \ No newline at end of file diff --git a/docs/images/guides/multiplot/guideBunchCombineWithStyles_dark.svg b/docs/images/guides/multiplot/guideBunchCombineWithStyles_dark.svg index b285be557..48a69a09b 100644 --- a/docs/images/guides/multiplot/guideBunchCombineWithStyles_dark.svg +++ b/docs/images/guides/multiplot/guideBunchCombineWithStyles_dark.svg @@ -10,54 +10,54 @@ text { text-rendering: optimizeLegibility; } -#xXxprefixXx0 .plot-title { +#_sample_helper_static_id_prefix_0 .plot-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; @@ -71,14 +71,14 @@ font-weight: normal; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; @@ -92,14 +92,14 @@ font-weight: normal; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; @@ -129,7 +129,7 @@ font-size: 13.0px; } - + @@ -145,117 +145,117 @@ font-size: 13.0px; text { text-rendering: optimizeLegibility; } -#xXxprefixXx1 .plot-title { +#_sample_helper_static_id_prefix_1 .plot-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx1 .plot-subtitle { +#_sample_helper_static_id_prefix_1 .plot-subtitle { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx1 .plot-caption { +#_sample_helper_static_id_prefix_1 .plot-caption { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx1 .hyperlink-element { +#_sample_helper_static_id_prefix_1 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx1 .legend-title { +#_sample_helper_static_id_prefix_1 .legend-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx1 .legend-item { +#_sample_helper_static_id_prefix_1 .legend-item { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx1 .axis-title-x { +#_sample_helper_static_id_prefix_1 .axis-title-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx1 .axis-text-x { +#_sample_helper_static_id_prefix_1 .axis-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx3 .axis-tooltip-text-x { +#_sample_helper_static_id_prefix_3 .axis-tooltip-text-x { fill: #303030; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx1 .axis-title-y { +#_sample_helper_static_id_prefix_1 .axis-title-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx1 .axis-text-y { +#_sample_helper_static_id_prefix_1 .axis-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx3 .axis-tooltip-text-y { +#_sample_helper_static_id_prefix_3 .axis-tooltip-text-y { fill: #303030; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx1 .facet-strip-text-x { +#_sample_helper_static_id_prefix_1 .facet-strip-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx1 .facet-strip-text-y { +#_sample_helper_static_id_prefix_1 .facet-strip-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx3 .tooltip-text { +#_sample_helper_static_id_prefix_3 .tooltip-text { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx3 .tooltip-title { +#_sample_helper_static_id_prefix_3 .tooltip-title { fill: #bbbbbb; font-weight: bold; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx3 .tooltip-label { +#_sample_helper_static_id_prefix_3 .tooltip-label { fill: #bbbbbb; font-weight: bold; font-style: normal;font-family: sans-serif; @@ -264,7 +264,7 @@ font-size: 13.0px; } - + @@ -474,7 +474,7 @@ font-size: 13.0px; - + @@ -522,7 +522,7 @@ font-size: 13.0px; - + @@ -539,7 +539,7 @@ font-size: 13.0px; - + @@ -554,117 +554,117 @@ font-size: 13.0px; text { text-rendering: optimizeLegibility; } -#xXxprefixXx4 .plot-title { +#_sample_helper_static_id_prefix_4 .plot-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx4 .plot-subtitle { +#_sample_helper_static_id_prefix_4 .plot-subtitle { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx4 .plot-caption { +#_sample_helper_static_id_prefix_4 .plot-caption { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx4 .hyperlink-element { +#_sample_helper_static_id_prefix_4 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx4 .legend-title { +#_sample_helper_static_id_prefix_4 .legend-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx4 .legend-item { +#_sample_helper_static_id_prefix_4 .legend-item { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx4 .axis-title-x { +#_sample_helper_static_id_prefix_4 .axis-title-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx4 .axis-text-x { +#_sample_helper_static_id_prefix_4 .axis-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx6 .axis-tooltip-text-x { +#_sample_helper_static_id_prefix_6 .axis-tooltip-text-x { fill: #303030; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx4 .axis-title-y { +#_sample_helper_static_id_prefix_4 .axis-title-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx4 .axis-text-y { +#_sample_helper_static_id_prefix_4 .axis-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx6 .axis-tooltip-text-y { +#_sample_helper_static_id_prefix_6 .axis-tooltip-text-y { fill: #303030; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx4 .facet-strip-text-x { +#_sample_helper_static_id_prefix_4 .facet-strip-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx4 .facet-strip-text-y { +#_sample_helper_static_id_prefix_4 .facet-strip-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx6 .tooltip-text { +#_sample_helper_static_id_prefix_6 .tooltip-text { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx6 .tooltip-title { +#_sample_helper_static_id_prefix_6 .tooltip-title { fill: #bbbbbb; font-weight: bold; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx6 .tooltip-label { +#_sample_helper_static_id_prefix_6 .tooltip-label { fill: #bbbbbb; font-weight: bold; font-style: normal;font-family: sans-serif; @@ -673,7 +673,7 @@ font-size: 13.0px; } - + @@ -751,7 +751,7 @@ font-size: 13.0px; - + @@ -1163,7 +1163,7 @@ font-size: 13.0px; - + @@ -1185,7 +1185,7 @@ font-size: 13.0px; - + \ No newline at end of file diff --git a/docs/images/guides/multiplot/guideFacetsArrangeVertically.svg b/docs/images/guides/multiplot/guideFacetsArrangeVertically.svg index 63cac276a..af734cf31 100644 --- a/docs/images/guides/multiplot/guideFacetsArrangeVertically.svg +++ b/docs/images/guides/multiplot/guideFacetsArrangeVertically.svg @@ -10,117 +10,117 @@ text { text-rendering: optimizeLegibility; } -#xXxprefixXx0 .plot-title { +#_sample_helper_static_id_prefix_0 .plot-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx10 .axis-tooltip-text-x { +#_sample_helper_static_id_prefix_10 .axis-tooltip-text-x { fill: #ffffff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx10 .axis-tooltip-text-y { +#_sample_helper_static_id_prefix_10 .axis-tooltip-text-y { fill: #ffffff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx10 .tooltip-text { +#_sample_helper_static_id_prefix_10 .tooltip-text { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx10 .tooltip-title { +#_sample_helper_static_id_prefix_10 .tooltip-title { fill: #474747; font-weight: bold; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx10 .tooltip-label { +#_sample_helper_static_id_prefix_10 .tooltip-label { fill: #474747; font-weight: bold; font-style: normal;font-family: sans-serif; @@ -129,7 +129,7 @@ font-size: 13.0px; } - + @@ -183,7 +183,7 @@ font-size: 13.0px; - + @@ -201,7 +201,7 @@ font-size: 13.0px; - + @@ -259,7 +259,7 @@ font-size: 13.0px; - + @@ -275,7 +275,7 @@ font-size: 13.0px; - + @@ -333,7 +333,7 @@ font-size: 13.0px; - + @@ -448,7 +448,7 @@ font-size: 13.0px; - + @@ -524,7 +524,7 @@ font-size: 13.0px; - + @@ -605,7 +605,7 @@ font-size: 13.0px; - + @@ -663,7 +663,7 @@ font-size: 13.0px; - + @@ -678,7 +678,7 @@ font-size: 13.0px; - + @@ -736,7 +736,7 @@ font-size: 13.0px; - + @@ -821,7 +821,7 @@ font-size: 13.0px; - + @@ -915,7 +915,7 @@ font-size: 13.0px; - + @@ -931,7 +931,7 @@ font-size: 13.0px; - + @@ -1007,7 +1007,7 @@ font-size: 13.0px; - + @@ -1080,7 +1080,7 @@ font-size: 13.0px; - + @@ -1156,7 +1156,7 @@ font-size: 13.0px; - + @@ -1237,7 +1237,7 @@ font-size: 13.0px; - + @@ -1342,6 +1342,6 @@ font-size: 13.0px; - + \ No newline at end of file diff --git a/docs/images/guides/multiplot/guideFacetsArrangeVertically_dark.svg b/docs/images/guides/multiplot/guideFacetsArrangeVertically_dark.svg index 717e6cc73..e01f80ec6 100644 --- a/docs/images/guides/multiplot/guideFacetsArrangeVertically_dark.svg +++ b/docs/images/guides/multiplot/guideFacetsArrangeVertically_dark.svg @@ -10,117 +10,117 @@ text { text-rendering: optimizeLegibility; } -#xXxprefixXx0 .plot-title { +#_sample_helper_static_id_prefix_0 .plot-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx10 .axis-tooltip-text-x { +#_sample_helper_static_id_prefix_10 .axis-tooltip-text-x { fill: #303030; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx10 .axis-tooltip-text-y { +#_sample_helper_static_id_prefix_10 .axis-tooltip-text-y { fill: #303030; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx10 .tooltip-text { +#_sample_helper_static_id_prefix_10 .tooltip-text { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx10 .tooltip-title { +#_sample_helper_static_id_prefix_10 .tooltip-title { fill: #bbbbbb; font-weight: bold; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx10 .tooltip-label { +#_sample_helper_static_id_prefix_10 .tooltip-label { fill: #bbbbbb; font-weight: bold; font-style: normal;font-family: sans-serif; @@ -129,7 +129,7 @@ font-size: 13.0px; } - + @@ -183,7 +183,7 @@ font-size: 13.0px; - + @@ -201,7 +201,7 @@ font-size: 13.0px; - + @@ -259,7 +259,7 @@ font-size: 13.0px; - + @@ -275,7 +275,7 @@ font-size: 13.0px; - + @@ -333,7 +333,7 @@ font-size: 13.0px; - + @@ -448,7 +448,7 @@ font-size: 13.0px; - + @@ -524,7 +524,7 @@ font-size: 13.0px; - + @@ -605,7 +605,7 @@ font-size: 13.0px; - + @@ -663,7 +663,7 @@ font-size: 13.0px; - + @@ -678,7 +678,7 @@ font-size: 13.0px; - + @@ -736,7 +736,7 @@ font-size: 13.0px; - + @@ -821,7 +821,7 @@ font-size: 13.0px; - + @@ -915,7 +915,7 @@ font-size: 13.0px; - + @@ -931,7 +931,7 @@ font-size: 13.0px; - + @@ -1007,7 +1007,7 @@ font-size: 13.0px; - + @@ -1080,7 +1080,7 @@ font-size: 13.0px; - + @@ -1156,7 +1156,7 @@ font-size: 13.0px; - + @@ -1237,7 +1237,7 @@ font-size: 13.0px; - + @@ -1342,6 +1342,6 @@ font-size: 13.0px; - + \ No newline at end of file diff --git a/docs/images/guides/multiplot/guideFacetsGridXPlot.svg b/docs/images/guides/multiplot/guideFacetsGridXPlot.svg index 43550a7e3..266386b8f 100644 --- a/docs/images/guides/multiplot/guideFacetsGridXPlot.svg +++ b/docs/images/guides/multiplot/guideFacetsGridXPlot.svg @@ -10,117 +10,117 @@ text { text-rendering: optimizeLegibility; } -#xXxprefixXx0 .plot-title { +#_sample_helper_static_id_prefix_0 .plot-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx6 .axis-tooltip-text-x { +#_sample_helper_static_id_prefix_6 .axis-tooltip-text-x { fill: #ffffff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx6 .axis-tooltip-text-y { +#_sample_helper_static_id_prefix_6 .axis-tooltip-text-y { fill: #ffffff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx6 .tooltip-text { +#_sample_helper_static_id_prefix_6 .tooltip-text { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx6 .tooltip-title { +#_sample_helper_static_id_prefix_6 .tooltip-title { fill: #474747; font-weight: bold; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx6 .tooltip-label { +#_sample_helper_static_id_prefix_6 .tooltip-label { fill: #474747; font-weight: bold; font-style: normal;font-family: sans-serif; @@ -129,7 +129,7 @@ font-size: 13.0px; } - + @@ -266,7 +266,7 @@ font-size: 13.0px; - + @@ -282,7 +282,7 @@ font-size: 13.0px; - + @@ -362,7 +362,7 @@ font-size: 13.0px; - + @@ -573,7 +573,7 @@ font-size: 13.0px; - + @@ -653,7 +653,7 @@ font-size: 13.0px; - + @@ -668,7 +668,7 @@ font-size: 13.0px; - + @@ -748,7 +748,7 @@ font-size: 13.0px; - + @@ -843,7 +843,7 @@ font-size: 13.0px; - + @@ -923,7 +923,7 @@ font-size: 13.0px; - + @@ -1038,7 +1038,7 @@ font-size: 13.0px; - + @@ -1136,6 +1136,6 @@ font-size: 13.0px; - + \ No newline at end of file diff --git a/docs/images/guides/multiplot/guideFacetsGridXPlot_dark.svg b/docs/images/guides/multiplot/guideFacetsGridXPlot_dark.svg index f99f3c21e..6f95b7a0f 100644 --- a/docs/images/guides/multiplot/guideFacetsGridXPlot_dark.svg +++ b/docs/images/guides/multiplot/guideFacetsGridXPlot_dark.svg @@ -10,117 +10,117 @@ text { text-rendering: optimizeLegibility; } -#xXxprefixXx0 .plot-title { +#_sample_helper_static_id_prefix_0 .plot-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx6 .axis-tooltip-text-x { +#_sample_helper_static_id_prefix_6 .axis-tooltip-text-x { fill: #303030; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx6 .axis-tooltip-text-y { +#_sample_helper_static_id_prefix_6 .axis-tooltip-text-y { fill: #303030; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx6 .tooltip-text { +#_sample_helper_static_id_prefix_6 .tooltip-text { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx6 .tooltip-title { +#_sample_helper_static_id_prefix_6 .tooltip-title { fill: #bbbbbb; font-weight: bold; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx6 .tooltip-label { +#_sample_helper_static_id_prefix_6 .tooltip-label { fill: #bbbbbb; font-weight: bold; font-style: normal;font-family: sans-serif; @@ -129,7 +129,7 @@ font-size: 13.0px; } - + @@ -266,7 +266,7 @@ font-size: 13.0px; - + @@ -282,7 +282,7 @@ font-size: 13.0px; - + @@ -362,7 +362,7 @@ font-size: 13.0px; - + @@ -573,7 +573,7 @@ font-size: 13.0px; - + @@ -653,7 +653,7 @@ font-size: 13.0px; - + @@ -668,7 +668,7 @@ font-size: 13.0px; - + @@ -748,7 +748,7 @@ font-size: 13.0px; - + @@ -843,7 +843,7 @@ font-size: 13.0px; - + @@ -923,7 +923,7 @@ font-size: 13.0px; - + @@ -1038,7 +1038,7 @@ font-size: 13.0px; - + @@ -1136,6 +1136,6 @@ font-size: 13.0px; - + \ No newline at end of file diff --git a/docs/images/guides/multiplot/guideFacetsScatterPlotByHorsePower.svg b/docs/images/guides/multiplot/guideFacetsScatterPlotByHorsePower.svg index 57b849072..9a6ab16ab 100644 --- a/docs/images/guides/multiplot/guideFacetsScatterPlotByHorsePower.svg +++ b/docs/images/guides/multiplot/guideFacetsScatterPlotByHorsePower.svg @@ -10,117 +10,117 @@ text { text-rendering: optimizeLegibility; } -#xXxprefixXx0 .plot-title { +#_sample_helper_static_id_prefix_0 .plot-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-x { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-x { fill: #ffffff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-y { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-y { fill: #ffffff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-text { +#_sample_helper_static_id_prefix_2 .tooltip-text { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-title { +#_sample_helper_static_id_prefix_2 .tooltip-title { fill: #474747; font-weight: bold; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-label { +#_sample_helper_static_id_prefix_2 .tooltip-label { fill: #474747; font-weight: bold; font-style: normal;font-family: sans-serif; @@ -129,7 +129,7 @@ font-size: 13.0px; } - + @@ -331,7 +331,7 @@ font-size: 13.0px; - + @@ -735,7 +735,7 @@ font-size: 13.0px; - + @@ -826,6 +826,6 @@ font-size: 13.0px; - + \ No newline at end of file diff --git a/docs/images/guides/multiplot/guideFacetsScatterPlotByHorsePower_dark.svg b/docs/images/guides/multiplot/guideFacetsScatterPlotByHorsePower_dark.svg index 19e8e3a1a..fb6c60e0c 100644 --- a/docs/images/guides/multiplot/guideFacetsScatterPlotByHorsePower_dark.svg +++ b/docs/images/guides/multiplot/guideFacetsScatterPlotByHorsePower_dark.svg @@ -10,117 +10,117 @@ text { text-rendering: optimizeLegibility; } -#xXxprefixXx0 .plot-title { +#_sample_helper_static_id_prefix_0 .plot-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-x { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-x { fill: #303030; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-y { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-y { fill: #303030; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-text { +#_sample_helper_static_id_prefix_2 .tooltip-text { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-title { +#_sample_helper_static_id_prefix_2 .tooltip-title { fill: #bbbbbb; font-weight: bold; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-label { +#_sample_helper_static_id_prefix_2 .tooltip-label { fill: #bbbbbb; font-weight: bold; font-style: normal;font-family: sans-serif; @@ -129,7 +129,7 @@ font-size: 13.0px; } - + @@ -331,7 +331,7 @@ font-size: 13.0px; - + @@ -735,7 +735,7 @@ font-size: 13.0px; - + @@ -826,6 +826,6 @@ font-size: 13.0px; - + \ No newline at end of file diff --git a/docs/images/guides/multiplot/guideFacetsTwoPlotsGrid.svg b/docs/images/guides/multiplot/guideFacetsTwoPlotsGrid.svg index 43992a642..bb7413e60 100644 --- a/docs/images/guides/multiplot/guideFacetsTwoPlotsGrid.svg +++ b/docs/images/guides/multiplot/guideFacetsTwoPlotsGrid.svg @@ -10,117 +10,117 @@ text { text-rendering: optimizeLegibility; } -#xXxprefixXx0 .plot-title { +#_sample_helper_static_id_prefix_0 .plot-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx16 .axis-tooltip-text-x { +#_sample_helper_static_id_prefix_16 .axis-tooltip-text-x { fill: #ffffff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx16 .axis-tooltip-text-y { +#_sample_helper_static_id_prefix_16 .axis-tooltip-text-y { fill: #ffffff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx16 .tooltip-text { +#_sample_helper_static_id_prefix_16 .tooltip-text { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx16 .tooltip-title { +#_sample_helper_static_id_prefix_16 .tooltip-title { fill: #474747; font-weight: bold; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx16 .tooltip-label { +#_sample_helper_static_id_prefix_16 .tooltip-label { fill: #474747; font-weight: bold; font-style: normal;font-family: sans-serif; @@ -129,7 +129,7 @@ font-size: 13.0px; } - + @@ -177,7 +177,7 @@ font-size: 13.0px; - + @@ -193,7 +193,7 @@ font-size: 13.0px; - + @@ -238,7 +238,7 @@ font-size: 13.0px; - + @@ -319,7 +319,7 @@ font-size: 13.0px; - + @@ -364,7 +364,7 @@ font-size: 13.0px; - + @@ -376,7 +376,7 @@ font-size: 13.0px; - + @@ -421,7 +421,7 @@ font-size: 13.0px; - + @@ -439,7 +439,7 @@ font-size: 13.0px; - + @@ -484,7 +484,7 @@ font-size: 13.0px; - + @@ -496,7 +496,7 @@ font-size: 13.0px; - + @@ -566,7 +566,7 @@ font-size: 13.0px; - + @@ -578,7 +578,7 @@ font-size: 13.0px; - + @@ -616,7 +616,7 @@ font-size: 13.0px; - + @@ -689,7 +689,7 @@ font-size: 13.0px; - + @@ -727,7 +727,7 @@ font-size: 13.0px; - + @@ -742,7 +742,7 @@ font-size: 13.0px; - + @@ -780,7 +780,7 @@ font-size: 13.0px; - + @@ -796,7 +796,7 @@ font-size: 13.0px; - + @@ -834,7 +834,7 @@ font-size: 13.0px; - + @@ -846,7 +846,7 @@ font-size: 13.0px; - + @@ -918,7 +918,7 @@ font-size: 13.0px; - + @@ -930,7 +930,7 @@ font-size: 13.0px; - + @@ -977,7 +977,7 @@ font-size: 13.0px; - + @@ -1058,7 +1058,7 @@ font-size: 13.0px; - + @@ -1105,7 +1105,7 @@ font-size: 13.0px; - + @@ -1117,7 +1117,7 @@ font-size: 13.0px; - + @@ -1164,7 +1164,7 @@ font-size: 13.0px; - + @@ -1249,7 +1249,7 @@ font-size: 13.0px; - + @@ -1296,7 +1296,7 @@ font-size: 13.0px; - + @@ -1411,7 +1411,7 @@ font-size: 13.0px; - + @@ -1509,6 +1509,6 @@ font-size: 13.0px; - + \ No newline at end of file diff --git a/docs/images/guides/multiplot/guideFacetsTwoPlotsGrid_dark.svg b/docs/images/guides/multiplot/guideFacetsTwoPlotsGrid_dark.svg index 8d47a1ba7..86fba7181 100644 --- a/docs/images/guides/multiplot/guideFacetsTwoPlotsGrid_dark.svg +++ b/docs/images/guides/multiplot/guideFacetsTwoPlotsGrid_dark.svg @@ -10,117 +10,117 @@ text { text-rendering: optimizeLegibility; } -#xXxprefixXx0 .plot-title { +#_sample_helper_static_id_prefix_0 .plot-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx16 .axis-tooltip-text-x { +#_sample_helper_static_id_prefix_16 .axis-tooltip-text-x { fill: #303030; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx16 .axis-tooltip-text-y { +#_sample_helper_static_id_prefix_16 .axis-tooltip-text-y { fill: #303030; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx16 .tooltip-text { +#_sample_helper_static_id_prefix_16 .tooltip-text { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx16 .tooltip-title { +#_sample_helper_static_id_prefix_16 .tooltip-title { fill: #bbbbbb; font-weight: bold; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx16 .tooltip-label { +#_sample_helper_static_id_prefix_16 .tooltip-label { fill: #bbbbbb; font-weight: bold; font-style: normal;font-family: sans-serif; @@ -129,7 +129,7 @@ font-size: 13.0px; } - + @@ -177,7 +177,7 @@ font-size: 13.0px; - + @@ -193,7 +193,7 @@ font-size: 13.0px; - + @@ -238,7 +238,7 @@ font-size: 13.0px; - + @@ -319,7 +319,7 @@ font-size: 13.0px; - + @@ -364,7 +364,7 @@ font-size: 13.0px; - + @@ -376,7 +376,7 @@ font-size: 13.0px; - + @@ -421,7 +421,7 @@ font-size: 13.0px; - + @@ -439,7 +439,7 @@ font-size: 13.0px; - + @@ -484,7 +484,7 @@ font-size: 13.0px; - + @@ -496,7 +496,7 @@ font-size: 13.0px; - + @@ -566,7 +566,7 @@ font-size: 13.0px; - + @@ -578,7 +578,7 @@ font-size: 13.0px; - + @@ -616,7 +616,7 @@ font-size: 13.0px; - + @@ -689,7 +689,7 @@ font-size: 13.0px; - + @@ -727,7 +727,7 @@ font-size: 13.0px; - + @@ -742,7 +742,7 @@ font-size: 13.0px; - + @@ -780,7 +780,7 @@ font-size: 13.0px; - + @@ -796,7 +796,7 @@ font-size: 13.0px; - + @@ -834,7 +834,7 @@ font-size: 13.0px; - + @@ -846,7 +846,7 @@ font-size: 13.0px; - + @@ -918,7 +918,7 @@ font-size: 13.0px; - + @@ -930,7 +930,7 @@ font-size: 13.0px; - + @@ -977,7 +977,7 @@ font-size: 13.0px; - + @@ -1058,7 +1058,7 @@ font-size: 13.0px; - + @@ -1105,7 +1105,7 @@ font-size: 13.0px; - + @@ -1117,7 +1117,7 @@ font-size: 13.0px; - + @@ -1164,7 +1164,7 @@ font-size: 13.0px; - + @@ -1249,7 +1249,7 @@ font-size: 13.0px; - + @@ -1296,7 +1296,7 @@ font-size: 13.0px; - + @@ -1411,7 +1411,7 @@ font-size: 13.0px; - + @@ -1509,6 +1509,6 @@ font-size: 13.0px; - + \ No newline at end of file diff --git a/docs/images/guides/multiplot/guideFacetsWithFormattingAndSorting.svg b/docs/images/guides/multiplot/guideFacetsWithFormattingAndSorting.svg index 266b2ffc1..5e75bd197 100644 --- a/docs/images/guides/multiplot/guideFacetsWithFormattingAndSorting.svg +++ b/docs/images/guides/multiplot/guideFacetsWithFormattingAndSorting.svg @@ -10,117 +10,117 @@ text { text-rendering: optimizeLegibility; } -#xXxprefixXx0 .plot-title { +#_sample_helper_static_id_prefix_0 .plot-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx16 .axis-tooltip-text-x { +#_sample_helper_static_id_prefix_16 .axis-tooltip-text-x { fill: #ffffff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx16 .axis-tooltip-text-y { +#_sample_helper_static_id_prefix_16 .axis-tooltip-text-y { fill: #ffffff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx16 .tooltip-text { +#_sample_helper_static_id_prefix_16 .tooltip-text { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx16 .tooltip-title { +#_sample_helper_static_id_prefix_16 .tooltip-title { fill: #474747; font-weight: bold; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx16 .tooltip-label { +#_sample_helper_static_id_prefix_16 .tooltip-label { fill: #474747; font-weight: bold; font-style: normal;font-family: sans-serif; @@ -129,7 +129,7 @@ font-size: 13.0px; } - + @@ -177,7 +177,7 @@ font-size: 13.0px; - + @@ -189,7 +189,7 @@ font-size: 13.0px; - + @@ -234,7 +234,7 @@ font-size: 13.0px; - + @@ -315,7 +315,7 @@ font-size: 13.0px; - + @@ -360,7 +360,7 @@ font-size: 13.0px; - + @@ -372,7 +372,7 @@ font-size: 13.0px; - + @@ -417,7 +417,7 @@ font-size: 13.0px; - + @@ -502,7 +502,7 @@ font-size: 13.0px; - + @@ -547,7 +547,7 @@ font-size: 13.0px; - + @@ -662,7 +662,7 @@ font-size: 13.0px; - + @@ -732,7 +732,7 @@ font-size: 13.0px; - + @@ -744,7 +744,7 @@ font-size: 13.0px; - + @@ -782,7 +782,7 @@ font-size: 13.0px; - + @@ -855,7 +855,7 @@ font-size: 13.0px; - + @@ -893,7 +893,7 @@ font-size: 13.0px; - + @@ -908,7 +908,7 @@ font-size: 13.0px; - + @@ -946,7 +946,7 @@ font-size: 13.0px; - + @@ -962,7 +962,7 @@ font-size: 13.0px; - + @@ -1000,7 +1000,7 @@ font-size: 13.0px; - + @@ -1012,7 +1012,7 @@ font-size: 13.0px; - + @@ -1084,7 +1084,7 @@ font-size: 13.0px; - + @@ -1100,7 +1100,7 @@ font-size: 13.0px; - + @@ -1147,7 +1147,7 @@ font-size: 13.0px; - + @@ -1228,7 +1228,7 @@ font-size: 13.0px; - + @@ -1275,7 +1275,7 @@ font-size: 13.0px; - + @@ -1287,7 +1287,7 @@ font-size: 13.0px; - + @@ -1334,7 +1334,7 @@ font-size: 13.0px; - + @@ -1352,7 +1352,7 @@ font-size: 13.0px; - + @@ -1399,7 +1399,7 @@ font-size: 13.0px; - + @@ -1411,7 +1411,7 @@ font-size: 13.0px; - + @@ -1509,6 +1509,6 @@ font-size: 13.0px; - + \ No newline at end of file diff --git a/docs/images/guides/multiplot/guideFacetsWithFormattingAndSorting_dark.svg b/docs/images/guides/multiplot/guideFacetsWithFormattingAndSorting_dark.svg index 15a04de3a..f4610ac8d 100644 --- a/docs/images/guides/multiplot/guideFacetsWithFormattingAndSorting_dark.svg +++ b/docs/images/guides/multiplot/guideFacetsWithFormattingAndSorting_dark.svg @@ -10,117 +10,117 @@ text { text-rendering: optimizeLegibility; } -#xXxprefixXx0 .plot-title { +#_sample_helper_static_id_prefix_0 .plot-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx16 .axis-tooltip-text-x { +#_sample_helper_static_id_prefix_16 .axis-tooltip-text-x { fill: #303030; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx16 .axis-tooltip-text-y { +#_sample_helper_static_id_prefix_16 .axis-tooltip-text-y { fill: #303030; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx16 .tooltip-text { +#_sample_helper_static_id_prefix_16 .tooltip-text { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx16 .tooltip-title { +#_sample_helper_static_id_prefix_16 .tooltip-title { fill: #bbbbbb; font-weight: bold; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx16 .tooltip-label { +#_sample_helper_static_id_prefix_16 .tooltip-label { fill: #bbbbbb; font-weight: bold; font-style: normal;font-family: sans-serif; @@ -129,7 +129,7 @@ font-size: 13.0px; } - + @@ -177,7 +177,7 @@ font-size: 13.0px; - + @@ -189,7 +189,7 @@ font-size: 13.0px; - + @@ -234,7 +234,7 @@ font-size: 13.0px; - + @@ -315,7 +315,7 @@ font-size: 13.0px; - + @@ -360,7 +360,7 @@ font-size: 13.0px; - + @@ -372,7 +372,7 @@ font-size: 13.0px; - + @@ -417,7 +417,7 @@ font-size: 13.0px; - + @@ -502,7 +502,7 @@ font-size: 13.0px; - + @@ -547,7 +547,7 @@ font-size: 13.0px; - + @@ -662,7 +662,7 @@ font-size: 13.0px; - + @@ -732,7 +732,7 @@ font-size: 13.0px; - + @@ -744,7 +744,7 @@ font-size: 13.0px; - + @@ -782,7 +782,7 @@ font-size: 13.0px; - + @@ -855,7 +855,7 @@ font-size: 13.0px; - + @@ -893,7 +893,7 @@ font-size: 13.0px; - + @@ -908,7 +908,7 @@ font-size: 13.0px; - + @@ -946,7 +946,7 @@ font-size: 13.0px; - + @@ -962,7 +962,7 @@ font-size: 13.0px; - + @@ -1000,7 +1000,7 @@ font-size: 13.0px; - + @@ -1012,7 +1012,7 @@ font-size: 13.0px; - + @@ -1084,7 +1084,7 @@ font-size: 13.0px; - + @@ -1100,7 +1100,7 @@ font-size: 13.0px; - + @@ -1147,7 +1147,7 @@ font-size: 13.0px; - + @@ -1228,7 +1228,7 @@ font-size: 13.0px; - + @@ -1275,7 +1275,7 @@ font-size: 13.0px; - + @@ -1287,7 +1287,7 @@ font-size: 13.0px; - + @@ -1334,7 +1334,7 @@ font-size: 13.0px; - + @@ -1352,7 +1352,7 @@ font-size: 13.0px; - + @@ -1399,7 +1399,7 @@ font-size: 13.0px; - + @@ -1411,7 +1411,7 @@ font-size: 13.0px; - + @@ -1509,6 +1509,6 @@ font-size: 13.0px; - + \ No newline at end of file diff --git a/docs/images/guides/multiplot/guideFacetsWrapOnePlot.svg b/docs/images/guides/multiplot/guideFacetsWrapOnePlot.svg index 9bea2f9ca..3fe73704b 100644 --- a/docs/images/guides/multiplot/guideFacetsWrapOnePlot.svg +++ b/docs/images/guides/multiplot/guideFacetsWrapOnePlot.svg @@ -10,117 +10,117 @@ text { text-rendering: optimizeLegibility; } -#xXxprefixXx0 .plot-title { +#_sample_helper_static_id_prefix_0 .plot-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx6 .axis-tooltip-text-x { +#_sample_helper_static_id_prefix_6 .axis-tooltip-text-x { fill: #ffffff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx6 .axis-tooltip-text-y { +#_sample_helper_static_id_prefix_6 .axis-tooltip-text-y { fill: #ffffff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx6 .tooltip-text { +#_sample_helper_static_id_prefix_6 .tooltip-text { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx6 .tooltip-title { +#_sample_helper_static_id_prefix_6 .tooltip-title { fill: #474747; font-weight: bold; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx6 .tooltip-label { +#_sample_helper_static_id_prefix_6 .tooltip-label { fill: #474747; font-weight: bold; font-style: normal;font-family: sans-serif; @@ -129,7 +129,7 @@ font-size: 13.0px; } - + @@ -209,7 +209,7 @@ font-size: 13.0px; - + @@ -225,7 +225,7 @@ font-size: 13.0px; - + @@ -284,7 +284,7 @@ font-size: 13.0px; - + @@ -495,7 +495,7 @@ font-size: 13.0px; - + @@ -572,7 +572,7 @@ font-size: 13.0px; - + @@ -587,7 +587,7 @@ font-size: 13.0px; - + @@ -700,7 +700,7 @@ font-size: 13.0px; - + @@ -795,7 +795,7 @@ font-size: 13.0px; - + @@ -872,7 +872,7 @@ font-size: 13.0px; - + @@ -987,7 +987,7 @@ font-size: 13.0px; - + @@ -1085,6 +1085,6 @@ font-size: 13.0px; - + \ No newline at end of file diff --git a/docs/images/guides/multiplot/guideFacetsWrapOnePlot_dark.svg b/docs/images/guides/multiplot/guideFacetsWrapOnePlot_dark.svg index e24186e42..181be2c13 100644 --- a/docs/images/guides/multiplot/guideFacetsWrapOnePlot_dark.svg +++ b/docs/images/guides/multiplot/guideFacetsWrapOnePlot_dark.svg @@ -10,117 +10,117 @@ text { text-rendering: optimizeLegibility; } -#xXxprefixXx0 .plot-title { +#_sample_helper_static_id_prefix_0 .plot-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx6 .axis-tooltip-text-x { +#_sample_helper_static_id_prefix_6 .axis-tooltip-text-x { fill: #303030; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx6 .axis-tooltip-text-y { +#_sample_helper_static_id_prefix_6 .axis-tooltip-text-y { fill: #303030; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx6 .tooltip-text { +#_sample_helper_static_id_prefix_6 .tooltip-text { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx6 .tooltip-title { +#_sample_helper_static_id_prefix_6 .tooltip-title { fill: #bbbbbb; font-weight: bold; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx6 .tooltip-label { +#_sample_helper_static_id_prefix_6 .tooltip-label { fill: #bbbbbb; font-weight: bold; font-style: normal;font-family: sans-serif; @@ -129,7 +129,7 @@ font-size: 13.0px; } - + @@ -209,7 +209,7 @@ font-size: 13.0px; - + @@ -225,7 +225,7 @@ font-size: 13.0px; - + @@ -284,7 +284,7 @@ font-size: 13.0px; - + @@ -495,7 +495,7 @@ font-size: 13.0px; - + @@ -572,7 +572,7 @@ font-size: 13.0px; - + @@ -587,7 +587,7 @@ font-size: 13.0px; - + @@ -700,7 +700,7 @@ font-size: 13.0px; - + @@ -795,7 +795,7 @@ font-size: 13.0px; - + @@ -872,7 +872,7 @@ font-size: 13.0px; - + @@ -987,7 +987,7 @@ font-size: 13.0px; - + @@ -1085,6 +1085,6 @@ font-size: 13.0px; - + \ No newline at end of file diff --git a/docs/images/guides/multiplot/guideFacetsWrapTwoPlots.svg b/docs/images/guides/multiplot/guideFacetsWrapTwoPlots.svg index 05211130e..056d681dd 100644 --- a/docs/images/guides/multiplot/guideFacetsWrapTwoPlots.svg +++ b/docs/images/guides/multiplot/guideFacetsWrapTwoPlots.svg @@ -10,117 +10,117 @@ text { text-rendering: optimizeLegibility; } -#xXxprefixXx0 .plot-title { +#_sample_helper_static_id_prefix_0 .plot-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx10 .axis-tooltip-text-x { +#_sample_helper_static_id_prefix_10 .axis-tooltip-text-x { fill: #ffffff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx10 .axis-tooltip-text-y { +#_sample_helper_static_id_prefix_10 .axis-tooltip-text-y { fill: #ffffff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx10 .tooltip-text { +#_sample_helper_static_id_prefix_10 .tooltip-text { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx10 .tooltip-title { +#_sample_helper_static_id_prefix_10 .tooltip-title { fill: #474747; font-weight: bold; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx10 .tooltip-label { +#_sample_helper_static_id_prefix_10 .tooltip-label { fill: #474747; font-weight: bold; font-style: normal;font-family: sans-serif; @@ -129,7 +129,7 @@ font-size: 13.0px; } - + @@ -203,7 +203,7 @@ font-size: 13.0px; - + @@ -219,7 +219,7 @@ font-size: 13.0px; - + @@ -279,7 +279,7 @@ font-size: 13.0px; - + @@ -360,7 +360,7 @@ font-size: 13.0px; - + @@ -420,7 +420,7 @@ font-size: 13.0px; - + @@ -438,7 +438,7 @@ font-size: 13.0px; - + @@ -498,7 +498,7 @@ font-size: 13.0px; - + @@ -571,7 +571,7 @@ font-size: 13.0px; - + @@ -640,7 +640,7 @@ font-size: 13.0px; - + @@ -655,7 +655,7 @@ font-size: 13.0px; - + @@ -760,7 +760,7 @@ font-size: 13.0px; - + @@ -776,7 +776,7 @@ font-size: 13.0px; - + @@ -845,7 +845,7 @@ font-size: 13.0px; - + @@ -926,7 +926,7 @@ font-size: 13.0px; - + @@ -995,7 +995,7 @@ font-size: 13.0px; - + @@ -1080,7 +1080,7 @@ font-size: 13.0px; - + @@ -1149,7 +1149,7 @@ font-size: 13.0px; - + @@ -1264,7 +1264,7 @@ font-size: 13.0px; - + @@ -1369,6 +1369,6 @@ font-size: 13.0px; - + \ No newline at end of file diff --git a/docs/images/guides/multiplot/guideFacetsWrapTwoPlots_dark.svg b/docs/images/guides/multiplot/guideFacetsWrapTwoPlots_dark.svg index e33a6107e..9120e1268 100644 --- a/docs/images/guides/multiplot/guideFacetsWrapTwoPlots_dark.svg +++ b/docs/images/guides/multiplot/guideFacetsWrapTwoPlots_dark.svg @@ -10,117 +10,117 @@ text { text-rendering: optimizeLegibility; } -#xXxprefixXx0 .plot-title { +#_sample_helper_static_id_prefix_0 .plot-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx10 .axis-tooltip-text-x { +#_sample_helper_static_id_prefix_10 .axis-tooltip-text-x { fill: #303030; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx10 .axis-tooltip-text-y { +#_sample_helper_static_id_prefix_10 .axis-tooltip-text-y { fill: #303030; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx10 .tooltip-text { +#_sample_helper_static_id_prefix_10 .tooltip-text { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx10 .tooltip-title { +#_sample_helper_static_id_prefix_10 .tooltip-title { fill: #bbbbbb; font-weight: bold; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx10 .tooltip-label { +#_sample_helper_static_id_prefix_10 .tooltip-label { fill: #bbbbbb; font-weight: bold; font-style: normal;font-family: sans-serif; @@ -129,7 +129,7 @@ font-size: 13.0px; } - + @@ -203,7 +203,7 @@ font-size: 13.0px; - + @@ -219,7 +219,7 @@ font-size: 13.0px; - + @@ -279,7 +279,7 @@ font-size: 13.0px; - + @@ -360,7 +360,7 @@ font-size: 13.0px; - + @@ -420,7 +420,7 @@ font-size: 13.0px; - + @@ -438,7 +438,7 @@ font-size: 13.0px; - + @@ -498,7 +498,7 @@ font-size: 13.0px; - + @@ -571,7 +571,7 @@ font-size: 13.0px; - + @@ -640,7 +640,7 @@ font-size: 13.0px; - + @@ -655,7 +655,7 @@ font-size: 13.0px; - + @@ -760,7 +760,7 @@ font-size: 13.0px; - + @@ -776,7 +776,7 @@ font-size: 13.0px; - + @@ -845,7 +845,7 @@ font-size: 13.0px; - + @@ -926,7 +926,7 @@ font-size: 13.0px; - + @@ -995,7 +995,7 @@ font-size: 13.0px; - + @@ -1080,7 +1080,7 @@ font-size: 13.0px; - + @@ -1149,7 +1149,7 @@ font-size: 13.0px; - + @@ -1264,7 +1264,7 @@ font-size: 13.0px; - + @@ -1369,6 +1369,6 @@ font-size: 13.0px; - + \ No newline at end of file diff --git a/docs/images/guides/multiplot/guideFreeFacetGridYFree.svg b/docs/images/guides/multiplot/guideFreeFacetGridYFree.svg index fd8962258..dd75c3ce9 100644 --- a/docs/images/guides/multiplot/guideFreeFacetGridYFree.svg +++ b/docs/images/guides/multiplot/guideFreeFacetGridYFree.svg @@ -10,117 +10,117 @@ text { text-rendering: optimizeLegibility; } -#xXxprefixXx0 .plot-title { +#_sample_helper_static_id_prefix_0 .plot-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx4 .axis-tooltip-text-x { +#_sample_helper_static_id_prefix_4 .axis-tooltip-text-x { fill: #ffffff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx4 .axis-tooltip-text-y { +#_sample_helper_static_id_prefix_4 .axis-tooltip-text-y { fill: #ffffff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx4 .tooltip-text { +#_sample_helper_static_id_prefix_4 .tooltip-text { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx4 .tooltip-title { +#_sample_helper_static_id_prefix_4 .tooltip-title { fill: #474747; font-weight: bold; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx4 .tooltip-label { +#_sample_helper_static_id_prefix_4 .tooltip-label { fill: #474747; font-weight: bold; font-style: normal;font-family: sans-serif; @@ -129,7 +129,7 @@ font-size: 13.0px; } - + @@ -215,7 +215,7 @@ font-size: 13.0px; - + @@ -306,7 +306,7 @@ font-size: 13.0px; - + @@ -409,7 +409,7 @@ font-size: 13.0px; - + @@ -489,7 +489,7 @@ font-size: 13.0px; - + @@ -680,7 +680,7 @@ font-size: 13.0px; - + @@ -937,7 +937,7 @@ font-size: 13.0px; - + @@ -1035,6 +1035,6 @@ font-size: 13.0px; - + \ No newline at end of file diff --git a/docs/images/guides/multiplot/guideFreeFacetGridYFree_dark.svg b/docs/images/guides/multiplot/guideFreeFacetGridYFree_dark.svg index 3b33ba6ea..979ad1215 100644 --- a/docs/images/guides/multiplot/guideFreeFacetGridYFree_dark.svg +++ b/docs/images/guides/multiplot/guideFreeFacetGridYFree_dark.svg @@ -10,117 +10,117 @@ text { text-rendering: optimizeLegibility; } -#xXxprefixXx0 .plot-title { +#_sample_helper_static_id_prefix_0 .plot-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx4 .axis-tooltip-text-x { +#_sample_helper_static_id_prefix_4 .axis-tooltip-text-x { fill: #303030; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx4 .axis-tooltip-text-y { +#_sample_helper_static_id_prefix_4 .axis-tooltip-text-y { fill: #303030; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx4 .tooltip-text { +#_sample_helper_static_id_prefix_4 .tooltip-text { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx4 .tooltip-title { +#_sample_helper_static_id_prefix_4 .tooltip-title { fill: #bbbbbb; font-weight: bold; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx4 .tooltip-label { +#_sample_helper_static_id_prefix_4 .tooltip-label { fill: #bbbbbb; font-weight: bold; font-style: normal;font-family: sans-serif; @@ -129,7 +129,7 @@ font-size: 13.0px; } - + @@ -215,7 +215,7 @@ font-size: 13.0px; - + @@ -306,7 +306,7 @@ font-size: 13.0px; - + @@ -409,7 +409,7 @@ font-size: 13.0px; - + @@ -489,7 +489,7 @@ font-size: 13.0px; - + @@ -680,7 +680,7 @@ font-size: 13.0px; - + @@ -937,7 +937,7 @@ font-size: 13.0px; - + @@ -1035,6 +1035,6 @@ font-size: 13.0px; - + \ No newline at end of file diff --git a/docs/images/guides/multiplot/guideFreeFacetSimplePlot.svg b/docs/images/guides/multiplot/guideFreeFacetSimplePlot.svg index 86a39e42c..415bc3814 100644 --- a/docs/images/guides/multiplot/guideFreeFacetSimplePlot.svg +++ b/docs/images/guides/multiplot/guideFreeFacetSimplePlot.svg @@ -10,117 +10,117 @@ text { text-rendering: optimizeLegibility; } -#xXxprefixXx0 .plot-title { +#_sample_helper_static_id_prefix_0 .plot-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-x { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-x { fill: #ffffff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-y { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-y { fill: #ffffff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-text { +#_sample_helper_static_id_prefix_2 .tooltip-text { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-title { +#_sample_helper_static_id_prefix_2 .tooltip-title { fill: #474747; font-weight: bold; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-label { +#_sample_helper_static_id_prefix_2 .tooltip-label { fill: #474747; font-weight: bold; font-style: normal;font-family: sans-serif; @@ -129,7 +129,7 @@ font-size: 13.0px; } - + @@ -331,7 +331,7 @@ font-size: 13.0px; - + @@ -735,7 +735,7 @@ font-size: 13.0px; - + @@ -826,6 +826,6 @@ font-size: 13.0px; - + \ No newline at end of file diff --git a/docs/images/guides/multiplot/guideFreeFacetSimplePlot_dark.svg b/docs/images/guides/multiplot/guideFreeFacetSimplePlot_dark.svg index 69a376eb6..e055f5c5f 100644 --- a/docs/images/guides/multiplot/guideFreeFacetSimplePlot_dark.svg +++ b/docs/images/guides/multiplot/guideFreeFacetSimplePlot_dark.svg @@ -10,117 +10,117 @@ text { text-rendering: optimizeLegibility; } -#xXxprefixXx0 .plot-title { +#_sample_helper_static_id_prefix_0 .plot-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-x { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-x { fill: #303030; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-y { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-y { fill: #303030; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-text { +#_sample_helper_static_id_prefix_2 .tooltip-text { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-title { +#_sample_helper_static_id_prefix_2 .tooltip-title { fill: #bbbbbb; font-weight: bold; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-label { +#_sample_helper_static_id_prefix_2 .tooltip-label { fill: #bbbbbb; font-weight: bold; font-style: normal;font-family: sans-serif; @@ -129,7 +129,7 @@ font-size: 13.0px; } - + @@ -331,7 +331,7 @@ font-size: 13.0px; - + @@ -735,7 +735,7 @@ font-size: 13.0px; - + @@ -826,6 +826,6 @@ font-size: 13.0px; - + \ No newline at end of file diff --git a/docs/images/guides/multiplot/guideFreeFacetWithFixedScales.svg b/docs/images/guides/multiplot/guideFreeFacetWithFixedScales.svg index 8bdaa03d5..a9aaf894d 100644 --- a/docs/images/guides/multiplot/guideFreeFacetWithFixedScales.svg +++ b/docs/images/guides/multiplot/guideFreeFacetWithFixedScales.svg @@ -10,117 +10,117 @@ text { text-rendering: optimizeLegibility; } -#xXxprefixXx0 .plot-title { +#_sample_helper_static_id_prefix_0 .plot-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx4 .axis-tooltip-text-x { +#_sample_helper_static_id_prefix_4 .axis-tooltip-text-x { fill: #ffffff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx4 .axis-tooltip-text-y { +#_sample_helper_static_id_prefix_4 .axis-tooltip-text-y { fill: #ffffff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx4 .tooltip-text { +#_sample_helper_static_id_prefix_4 .tooltip-text { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx4 .tooltip-title { +#_sample_helper_static_id_prefix_4 .tooltip-title { fill: #474747; font-weight: bold; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx4 .tooltip-label { +#_sample_helper_static_id_prefix_4 .tooltip-label { fill: #474747; font-weight: bold; font-style: normal;font-family: sans-serif; @@ -129,7 +129,7 @@ font-size: 13.0px; } - + @@ -215,7 +215,7 @@ font-size: 13.0px; - + @@ -306,7 +306,7 @@ font-size: 13.0px; - + @@ -407,7 +407,7 @@ font-size: 13.0px; - + @@ -487,7 +487,7 @@ font-size: 13.0px; - + @@ -678,7 +678,7 @@ font-size: 13.0px; - + @@ -935,7 +935,7 @@ font-size: 13.0px; - + @@ -1033,6 +1033,6 @@ font-size: 13.0px; - + \ No newline at end of file diff --git a/docs/images/guides/multiplot/guideFreeFacetWithFixedScales_dark.svg b/docs/images/guides/multiplot/guideFreeFacetWithFixedScales_dark.svg index d80b7064e..cc84e5861 100644 --- a/docs/images/guides/multiplot/guideFreeFacetWithFixedScales_dark.svg +++ b/docs/images/guides/multiplot/guideFreeFacetWithFixedScales_dark.svg @@ -10,117 +10,117 @@ text { text-rendering: optimizeLegibility; } -#xXxprefixXx0 .plot-title { +#_sample_helper_static_id_prefix_0 .plot-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx4 .axis-tooltip-text-x { +#_sample_helper_static_id_prefix_4 .axis-tooltip-text-x { fill: #303030; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx4 .axis-tooltip-text-y { +#_sample_helper_static_id_prefix_4 .axis-tooltip-text-y { fill: #303030; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx4 .tooltip-text { +#_sample_helper_static_id_prefix_4 .tooltip-text { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx4 .tooltip-title { +#_sample_helper_static_id_prefix_4 .tooltip-title { fill: #bbbbbb; font-weight: bold; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx4 .tooltip-label { +#_sample_helper_static_id_prefix_4 .tooltip-label { fill: #bbbbbb; font-weight: bold; font-style: normal;font-family: sans-serif; @@ -129,7 +129,7 @@ font-size: 13.0px; } - + @@ -215,7 +215,7 @@ font-size: 13.0px; - + @@ -306,7 +306,7 @@ font-size: 13.0px; - + @@ -407,7 +407,7 @@ font-size: 13.0px; - + @@ -487,7 +487,7 @@ font-size: 13.0px; - + @@ -678,7 +678,7 @@ font-size: 13.0px; - + @@ -935,7 +935,7 @@ font-size: 13.0px; - + @@ -1033,6 +1033,6 @@ font-size: 13.0px; - + \ No newline at end of file diff --git a/docs/images/guides/multiplot/guideFreeFacetWrapWithFixedScale.svg b/docs/images/guides/multiplot/guideFreeFacetWrapWithFixedScale.svg index 826381f1e..fec94efe2 100644 --- a/docs/images/guides/multiplot/guideFreeFacetWrapWithFixedScale.svg +++ b/docs/images/guides/multiplot/guideFreeFacetWrapWithFixedScale.svg @@ -10,117 +10,117 @@ text { text-rendering: optimizeLegibility; } -#xXxprefixXx0 .plot-title { +#_sample_helper_static_id_prefix_0 .plot-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx6 .axis-tooltip-text-x { +#_sample_helper_static_id_prefix_6 .axis-tooltip-text-x { fill: #ffffff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx6 .axis-tooltip-text-y { +#_sample_helper_static_id_prefix_6 .axis-tooltip-text-y { fill: #ffffff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx6 .tooltip-text { +#_sample_helper_static_id_prefix_6 .tooltip-text { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx6 .tooltip-title { +#_sample_helper_static_id_prefix_6 .tooltip-title { fill: #474747; font-weight: bold; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx6 .tooltip-label { +#_sample_helper_static_id_prefix_6 .tooltip-label { fill: #474747; font-weight: bold; font-style: normal;font-family: sans-serif; @@ -129,7 +129,7 @@ font-size: 13.0px; } - + @@ -191,7 +191,7 @@ font-size: 13.0px; - + @@ -207,7 +207,7 @@ font-size: 13.0px; - + @@ -266,7 +266,7 @@ font-size: 13.0px; - + @@ -477,7 +477,7 @@ font-size: 13.0px; - + @@ -554,7 +554,7 @@ font-size: 13.0px; - + @@ -569,7 +569,7 @@ font-size: 13.0px; - + @@ -664,7 +664,7 @@ font-size: 13.0px; - + @@ -759,7 +759,7 @@ font-size: 13.0px; - + @@ -872,7 +872,7 @@ font-size: 13.0px; - + @@ -987,7 +987,7 @@ font-size: 13.0px; - + @@ -1085,6 +1085,6 @@ font-size: 13.0px; - + \ No newline at end of file diff --git a/docs/images/guides/multiplot/guideFreeFacetWrapWithFixedScale_dark.svg b/docs/images/guides/multiplot/guideFreeFacetWrapWithFixedScale_dark.svg index 5e9a887e9..4a538613b 100644 --- a/docs/images/guides/multiplot/guideFreeFacetWrapWithFixedScale_dark.svg +++ b/docs/images/guides/multiplot/guideFreeFacetWrapWithFixedScale_dark.svg @@ -10,117 +10,117 @@ text { text-rendering: optimizeLegibility; } -#xXxprefixXx0 .plot-title { +#_sample_helper_static_id_prefix_0 .plot-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx6 .axis-tooltip-text-x { +#_sample_helper_static_id_prefix_6 .axis-tooltip-text-x { fill: #303030; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx6 .axis-tooltip-text-y { +#_sample_helper_static_id_prefix_6 .axis-tooltip-text-y { fill: #303030; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx6 .tooltip-text { +#_sample_helper_static_id_prefix_6 .tooltip-text { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx6 .tooltip-title { +#_sample_helper_static_id_prefix_6 .tooltip-title { fill: #bbbbbb; font-weight: bold; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx6 .tooltip-label { +#_sample_helper_static_id_prefix_6 .tooltip-label { fill: #bbbbbb; font-weight: bold; font-style: normal;font-family: sans-serif; @@ -129,7 +129,7 @@ font-size: 13.0px; } - + @@ -191,7 +191,7 @@ font-size: 13.0px; - + @@ -207,7 +207,7 @@ font-size: 13.0px; - + @@ -266,7 +266,7 @@ font-size: 13.0px; - + @@ -477,7 +477,7 @@ font-size: 13.0px; - + @@ -554,7 +554,7 @@ font-size: 13.0px; - + @@ -569,7 +569,7 @@ font-size: 13.0px; - + @@ -664,7 +664,7 @@ font-size: 13.0px; - + @@ -759,7 +759,7 @@ font-size: 13.0px; - + @@ -872,7 +872,7 @@ font-size: 13.0px; - + @@ -987,7 +987,7 @@ font-size: 13.0px; - + @@ -1085,6 +1085,6 @@ font-size: 13.0px; - + \ No newline at end of file diff --git a/docs/images/guides/multiplot/guideFreeFacetWrapWithFreeScale.svg b/docs/images/guides/multiplot/guideFreeFacetWrapWithFreeScale.svg index fcfebd16d..7ee85fe1e 100644 --- a/docs/images/guides/multiplot/guideFreeFacetWrapWithFreeScale.svg +++ b/docs/images/guides/multiplot/guideFreeFacetWrapWithFreeScale.svg @@ -10,117 +10,117 @@ text { text-rendering: optimizeLegibility; } -#xXxprefixXx0 .plot-title { +#_sample_helper_static_id_prefix_0 .plot-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx6 .axis-tooltip-text-x { +#_sample_helper_static_id_prefix_6 .axis-tooltip-text-x { fill: #ffffff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx6 .axis-tooltip-text-y { +#_sample_helper_static_id_prefix_6 .axis-tooltip-text-y { fill: #ffffff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx6 .tooltip-text { +#_sample_helper_static_id_prefix_6 .tooltip-text { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx6 .tooltip-title { +#_sample_helper_static_id_prefix_6 .tooltip-title { fill: #474747; font-weight: bold; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx6 .tooltip-label { +#_sample_helper_static_id_prefix_6 .tooltip-label { fill: #474747; font-weight: bold; font-style: normal;font-family: sans-serif; @@ -129,7 +129,7 @@ font-size: 13.0px; } - + @@ -210,7 +210,7 @@ font-size: 13.0px; - + @@ -226,7 +226,7 @@ font-size: 13.0px; - + @@ -328,7 +328,7 @@ font-size: 13.0px; - + @@ -539,7 +539,7 @@ font-size: 13.0px; - + @@ -635,7 +635,7 @@ font-size: 13.0px; - + @@ -650,7 +650,7 @@ font-size: 13.0px; - + @@ -722,7 +722,7 @@ font-size: 13.0px; - + @@ -817,7 +817,7 @@ font-size: 13.0px; - + @@ -917,7 +917,7 @@ font-size: 13.0px; - + @@ -1032,7 +1032,7 @@ font-size: 13.0px; - + @@ -1130,6 +1130,6 @@ font-size: 13.0px; - + \ No newline at end of file diff --git a/docs/images/guides/multiplot/guideFreeFacetWrapWithFreeScale_dark.svg b/docs/images/guides/multiplot/guideFreeFacetWrapWithFreeScale_dark.svg index bab82379d..f60019af0 100644 --- a/docs/images/guides/multiplot/guideFreeFacetWrapWithFreeScale_dark.svg +++ b/docs/images/guides/multiplot/guideFreeFacetWrapWithFreeScale_dark.svg @@ -10,117 +10,117 @@ text { text-rendering: optimizeLegibility; } -#xXxprefixXx0 .plot-title { +#_sample_helper_static_id_prefix_0 .plot-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx6 .axis-tooltip-text-x { +#_sample_helper_static_id_prefix_6 .axis-tooltip-text-x { fill: #303030; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx6 .axis-tooltip-text-y { +#_sample_helper_static_id_prefix_6 .axis-tooltip-text-y { fill: #303030; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx6 .tooltip-text { +#_sample_helper_static_id_prefix_6 .tooltip-text { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx6 .tooltip-title { +#_sample_helper_static_id_prefix_6 .tooltip-title { fill: #bbbbbb; font-weight: bold; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx6 .tooltip-label { +#_sample_helper_static_id_prefix_6 .tooltip-label { fill: #bbbbbb; font-weight: bold; font-style: normal;font-family: sans-serif; @@ -129,7 +129,7 @@ font-size: 13.0px; } - + @@ -210,7 +210,7 @@ font-size: 13.0px; - + @@ -226,7 +226,7 @@ font-size: 13.0px; - + @@ -328,7 +328,7 @@ font-size: 13.0px; - + @@ -539,7 +539,7 @@ font-size: 13.0px; - + @@ -635,7 +635,7 @@ font-size: 13.0px; - + @@ -650,7 +650,7 @@ font-size: 13.0px; - + @@ -722,7 +722,7 @@ font-size: 13.0px; - + @@ -817,7 +817,7 @@ font-size: 13.0px; - + @@ -917,7 +917,7 @@ font-size: 13.0px; - + @@ -1032,7 +1032,7 @@ font-size: 13.0px; - + @@ -1130,6 +1130,6 @@ font-size: 13.0px; - + \ No newline at end of file diff --git a/docs/images/guides/other/guideExportDensityPlot.svg b/docs/images/guides/other/guideExportDensityPlot.svg index 278e74c27..9130c6e8c 100644 --- a/docs/images/guides/other/guideExportDensityPlot.svg +++ b/docs/images/guides/other/guideExportDensityPlot.svg @@ -10,117 +10,117 @@ text { text-rendering: optimizeLegibility; } -#xXxprefixXx0 .plot-title { +#_sample_helper_static_id_prefix_0 .plot-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-x { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-x { fill: #ffffff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-y { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-y { fill: #ffffff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-text { +#_sample_helper_static_id_prefix_2 .tooltip-text { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-title { +#_sample_helper_static_id_prefix_2 .tooltip-title { fill: #474747; font-weight: bold; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-label { +#_sample_helper_static_id_prefix_2 .tooltip-label { fill: #474747; font-weight: bold; font-style: normal;font-family: sans-serif; @@ -129,7 +129,7 @@ font-size: 13.0px; } - + @@ -175,7 +175,7 @@ font-size: 13.0px; - + @@ -199,7 +199,7 @@ font-size: 13.0px; - + @@ -398,6 +398,6 @@ font-size: 13.0px; - + \ No newline at end of file diff --git a/docs/images/guides/other/guideExportDensityPlot_dark.svg b/docs/images/guides/other/guideExportDensityPlot_dark.svg index 23ae0d335..d688a0c51 100644 --- a/docs/images/guides/other/guideExportDensityPlot_dark.svg +++ b/docs/images/guides/other/guideExportDensityPlot_dark.svg @@ -10,117 +10,117 @@ text { text-rendering: optimizeLegibility; } -#xXxprefixXx0 .plot-title { +#_sample_helper_static_id_prefix_0 .plot-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-x { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-x { fill: #303030; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-y { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-y { fill: #303030; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-text { +#_sample_helper_static_id_prefix_2 .tooltip-text { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-title { +#_sample_helper_static_id_prefix_2 .tooltip-title { fill: #bbbbbb; font-weight: bold; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-label { +#_sample_helper_static_id_prefix_2 .tooltip-label { fill: #bbbbbb; font-weight: bold; font-style: normal;font-family: sans-serif; @@ -129,7 +129,7 @@ font-size: 13.0px; } - + @@ -309,7 +309,7 @@ font-size: 13.0px; - + @@ -333,7 +333,7 @@ font-size: 13.0px; - + @@ -398,6 +398,6 @@ font-size: 13.0px; - + \ No newline at end of file diff --git a/docs/images/guides/other/guideSeriesHackBarOnGatheredDf.svg b/docs/images/guides/other/guideSeriesHackBarOnGatheredDf.svg index 5b74b11d6..eabe03b6f 100644 --- a/docs/images/guides/other/guideSeriesHackBarOnGatheredDf.svg +++ b/docs/images/guides/other/guideSeriesHackBarOnGatheredDf.svg @@ -10,117 +10,117 @@ text { text-rendering: optimizeLegibility; } -#xXxprefixXx0 .plot-title { +#_sample_helper_static_id_prefix_0 .plot-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-x { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-x { fill: #ffffff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-y { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-y { fill: #ffffff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-text { +#_sample_helper_static_id_prefix_2 .tooltip-text { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-title { +#_sample_helper_static_id_prefix_2 .tooltip-title { fill: #474747; font-weight: bold; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-label { +#_sample_helper_static_id_prefix_2 .tooltip-label { fill: #474747; font-weight: bold; font-style: normal;font-family: sans-serif; @@ -129,7 +129,7 @@ font-size: 13.0px; } - + @@ -187,7 +187,7 @@ font-size: 13.0px; - + @@ -225,7 +225,7 @@ font-size: 13.0px; - + @@ -487,6 +487,6 @@ font-size: 13.0px; - + \ No newline at end of file diff --git a/docs/images/guides/other/guideSeriesHackBarOnGatheredDf_dark.svg b/docs/images/guides/other/guideSeriesHackBarOnGatheredDf_dark.svg index b0a7198ae..4376cdcc2 100644 --- a/docs/images/guides/other/guideSeriesHackBarOnGatheredDf_dark.svg +++ b/docs/images/guides/other/guideSeriesHackBarOnGatheredDf_dark.svg @@ -10,117 +10,117 @@ text { text-rendering: optimizeLegibility; } -#xXxprefixXx0 .plot-title { +#_sample_helper_static_id_prefix_0 .plot-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-x { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-x { fill: #303030; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-y { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-y { fill: #303030; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-text { +#_sample_helper_static_id_prefix_2 .tooltip-text { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-title { +#_sample_helper_static_id_prefix_2 .tooltip-title { fill: #bbbbbb; font-weight: bold; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-label { +#_sample_helper_static_id_prefix_2 .tooltip-label { fill: #bbbbbb; font-weight: bold; font-style: normal;font-family: sans-serif; @@ -129,7 +129,7 @@ font-size: 13.0px; } - + @@ -369,7 +369,7 @@ font-size: 13.0px; - + @@ -407,7 +407,7 @@ font-size: 13.0px; - + @@ -487,6 +487,6 @@ font-size: 13.0px; - + \ No newline at end of file diff --git a/docs/images/guides/other/guideSeriesHackBarsSeries.svg b/docs/images/guides/other/guideSeriesHackBarsSeries.svg index 6125d1f7e..bcc4ec8e8 100644 --- a/docs/images/guides/other/guideSeriesHackBarsSeries.svg +++ b/docs/images/guides/other/guideSeriesHackBarsSeries.svg @@ -10,117 +10,117 @@ text { text-rendering: optimizeLegibility; } -#xXxprefixXx0 .plot-title { +#_sample_helper_static_id_prefix_0 .plot-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx4 .axis-tooltip-text-x { +#_sample_helper_static_id_prefix_4 .axis-tooltip-text-x { fill: #ffffff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx4 .axis-tooltip-text-y { +#_sample_helper_static_id_prefix_4 .axis-tooltip-text-y { fill: #ffffff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx4 .tooltip-text { +#_sample_helper_static_id_prefix_4 .tooltip-text { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx4 .tooltip-title { +#_sample_helper_static_id_prefix_4 .tooltip-title { fill: #474747; font-weight: bold; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx4 .tooltip-label { +#_sample_helper_static_id_prefix_4 .tooltip-label { fill: #474747; font-weight: bold; font-style: normal;font-family: sans-serif; @@ -129,7 +129,7 @@ font-size: 13.0px; } - + @@ -187,7 +187,7 @@ font-size: 13.0px; - + @@ -229,19 +229,19 @@ font-size: 13.0px; - + - + - + @@ -445,6 +445,6 @@ font-size: 13.0px; - + \ No newline at end of file diff --git a/docs/images/guides/other/guideSeriesHackBarsSeries_dark.svg b/docs/images/guides/other/guideSeriesHackBarsSeries_dark.svg index e971abe46..c565658ff 100644 --- a/docs/images/guides/other/guideSeriesHackBarsSeries_dark.svg +++ b/docs/images/guides/other/guideSeriesHackBarsSeries_dark.svg @@ -10,117 +10,117 @@ text { text-rendering: optimizeLegibility; } -#xXxprefixXx0 .plot-title { +#_sample_helper_static_id_prefix_0 .plot-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx4 .axis-tooltip-text-x { +#_sample_helper_static_id_prefix_4 .axis-tooltip-text-x { fill: #303030; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx4 .axis-tooltip-text-y { +#_sample_helper_static_id_prefix_4 .axis-tooltip-text-y { fill: #303030; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx4 .tooltip-text { +#_sample_helper_static_id_prefix_4 .tooltip-text { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx4 .tooltip-title { +#_sample_helper_static_id_prefix_4 .tooltip-title { fill: #bbbbbb; font-weight: bold; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx4 .tooltip-label { +#_sample_helper_static_id_prefix_4 .tooltip-label { fill: #bbbbbb; font-weight: bold; font-style: normal;font-family: sans-serif; @@ -129,7 +129,7 @@ font-size: 13.0px; } - + @@ -369,7 +369,7 @@ font-size: 13.0px; - + @@ -411,19 +411,19 @@ font-size: 13.0px; - + - + - + @@ -445,6 +445,6 @@ font-size: 13.0px; - + \ No newline at end of file diff --git a/docs/images/guides/other/guideSeriesHackGatheredLines.svg b/docs/images/guides/other/guideSeriesHackGatheredLines.svg index b48992d63..8cfcac26d 100644 --- a/docs/images/guides/other/guideSeriesHackGatheredLines.svg +++ b/docs/images/guides/other/guideSeriesHackGatheredLines.svg @@ -10,117 +10,117 @@ text { text-rendering: optimizeLegibility; } -#xXxprefixXx0 .plot-title { +#_sample_helper_static_id_prefix_0 .plot-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-x { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-x { fill: #ffffff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-y { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-y { fill: #ffffff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-text { +#_sample_helper_static_id_prefix_2 .tooltip-text { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-title { +#_sample_helper_static_id_prefix_2 .tooltip-title { fill: #474747; font-weight: bold; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-label { +#_sample_helper_static_id_prefix_2 .tooltip-label { fill: #474747; font-weight: bold; font-style: normal;font-family: sans-serif; @@ -129,7 +129,7 @@ font-size: 13.0px; } - + @@ -183,7 +183,7 @@ font-size: 13.0px; - + @@ -203,7 +203,7 @@ font-size: 13.0px; - + @@ -447,6 +447,6 @@ font-size: 13.0px; - + \ No newline at end of file diff --git a/docs/images/guides/other/guideSeriesHackGatheredLines_dark.svg b/docs/images/guides/other/guideSeriesHackGatheredLines_dark.svg index d9d68b34d..ed1985bae 100644 --- a/docs/images/guides/other/guideSeriesHackGatheredLines_dark.svg +++ b/docs/images/guides/other/guideSeriesHackGatheredLines_dark.svg @@ -10,117 +10,117 @@ text { text-rendering: optimizeLegibility; } -#xXxprefixXx0 .plot-title { +#_sample_helper_static_id_prefix_0 .plot-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-x { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-x { fill: #303030; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-y { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-y { fill: #303030; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-text { +#_sample_helper_static_id_prefix_2 .tooltip-text { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-title { +#_sample_helper_static_id_prefix_2 .tooltip-title { fill: #bbbbbb; font-weight: bold; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-label { +#_sample_helper_static_id_prefix_2 .tooltip-label { fill: #bbbbbb; font-weight: bold; font-style: normal;font-family: sans-serif; @@ -129,7 +129,7 @@ font-size: 13.0px; } - + @@ -347,7 +347,7 @@ font-size: 13.0px; - + @@ -367,7 +367,7 @@ font-size: 13.0px; - + @@ -447,6 +447,6 @@ font-size: 13.0px; - + \ No newline at end of file diff --git a/docs/images/guides/other/guideSeriesHackLinesPlot.svg b/docs/images/guides/other/guideSeriesHackLinesPlot.svg index 696ab000c..d6d110d3c 100644 --- a/docs/images/guides/other/guideSeriesHackLinesPlot.svg +++ b/docs/images/guides/other/guideSeriesHackLinesPlot.svg @@ -10,117 +10,117 @@ text { text-rendering: optimizeLegibility; } -#xXxprefixXx0 .plot-title { +#_sample_helper_static_id_prefix_0 .plot-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx4 .axis-tooltip-text-x { +#_sample_helper_static_id_prefix_4 .axis-tooltip-text-x { fill: #ffffff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx4 .axis-tooltip-text-y { +#_sample_helper_static_id_prefix_4 .axis-tooltip-text-y { fill: #ffffff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx4 .tooltip-text { +#_sample_helper_static_id_prefix_4 .tooltip-text { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx4 .tooltip-title { +#_sample_helper_static_id_prefix_4 .tooltip-title { fill: #474747; font-weight: bold; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx4 .tooltip-label { +#_sample_helper_static_id_prefix_4 .tooltip-label { fill: #474747; font-weight: bold; font-style: normal;font-family: sans-serif; @@ -129,7 +129,7 @@ font-size: 13.0px; } - + @@ -183,7 +183,7 @@ font-size: 13.0px; - + @@ -207,19 +207,19 @@ font-size: 13.0px; - + - + - + @@ -405,6 +405,6 @@ font-size: 13.0px; - + \ No newline at end of file diff --git a/docs/images/guides/other/guideSeriesHackLinesPlot_dark.svg b/docs/images/guides/other/guideSeriesHackLinesPlot_dark.svg index e79f2cd37..07aac7eb3 100644 --- a/docs/images/guides/other/guideSeriesHackLinesPlot_dark.svg +++ b/docs/images/guides/other/guideSeriesHackLinesPlot_dark.svg @@ -10,117 +10,117 @@ text { text-rendering: optimizeLegibility; } -#xXxprefixXx0 .plot-title { +#_sample_helper_static_id_prefix_0 .plot-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx4 .axis-tooltip-text-x { +#_sample_helper_static_id_prefix_4 .axis-tooltip-text-x { fill: #303030; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx4 .axis-tooltip-text-y { +#_sample_helper_static_id_prefix_4 .axis-tooltip-text-y { fill: #303030; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx4 .tooltip-text { +#_sample_helper_static_id_prefix_4 .tooltip-text { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx4 .tooltip-title { +#_sample_helper_static_id_prefix_4 .tooltip-title { fill: #bbbbbb; font-weight: bold; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx4 .tooltip-label { +#_sample_helper_static_id_prefix_4 .tooltip-label { fill: #bbbbbb; font-weight: bold; font-style: normal;font-family: sans-serif; @@ -129,7 +129,7 @@ font-size: 13.0px; } - + @@ -347,7 +347,7 @@ font-size: 13.0px; - + @@ -371,19 +371,19 @@ font-size: 13.0px; - + - + - + @@ -405,6 +405,6 @@ font-size: 13.0px; - + \ No newline at end of file diff --git a/docs/images/guides/quickStartGuide/basicsGlobalXYBoxplotWithFreeScale.svg b/docs/images/guides/quickStartGuide/basicsGlobalXYBoxplotWithFreeScale.svg index ab4a88e6d..0f503d891 100644 --- a/docs/images/guides/quickStartGuide/basicsGlobalXYBoxplotWithFreeScale.svg +++ b/docs/images/guides/quickStartGuide/basicsGlobalXYBoxplotWithFreeScale.svg @@ -10,117 +10,117 @@ text { text-rendering: optimizeLegibility; } -#xXxprefixXx0 .plot-title { +#_sample_helper_static_id_prefix_0 .plot-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-x { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-x { fill: #ffffff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-y { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-y { fill: #ffffff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-text { +#_sample_helper_static_id_prefix_2 .tooltip-text { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-title { +#_sample_helper_static_id_prefix_2 .tooltip-title { fill: #474747; font-weight: bold; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-label { +#_sample_helper_static_id_prefix_2 .tooltip-label { fill: #474747; font-weight: bold; font-style: normal;font-family: sans-serif; @@ -129,7 +129,7 @@ font-size: 13.0px; } - + @@ -171,7 +171,7 @@ font-size: 13.0px; - + @@ -215,7 +215,7 @@ font-size: 13.0px; - + @@ -347,6 +347,6 @@ font-size: 13.0px; - + \ No newline at end of file diff --git a/docs/images/guides/quickStartGuide/basicsGlobalXYBoxplotWithFreeScale_dark.svg b/docs/images/guides/quickStartGuide/basicsGlobalXYBoxplotWithFreeScale_dark.svg index 376768ace..00f91ae00 100644 --- a/docs/images/guides/quickStartGuide/basicsGlobalXYBoxplotWithFreeScale_dark.svg +++ b/docs/images/guides/quickStartGuide/basicsGlobalXYBoxplotWithFreeScale_dark.svg @@ -10,117 +10,117 @@ text { text-rendering: optimizeLegibility; } -#xXxprefixXx0 .plot-title { +#_sample_helper_static_id_prefix_0 .plot-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-x { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-x { fill: #303030; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-y { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-y { fill: #303030; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-text { +#_sample_helper_static_id_prefix_2 .tooltip-text { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-title { +#_sample_helper_static_id_prefix_2 .tooltip-title { fill: #bbbbbb; font-weight: bold; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-label { +#_sample_helper_static_id_prefix_2 .tooltip-label { fill: #bbbbbb; font-weight: bold; font-style: normal;font-family: sans-serif; @@ -129,7 +129,7 @@ font-size: 13.0px; } - + @@ -281,7 +281,7 @@ font-size: 13.0px; - + @@ -325,7 +325,7 @@ font-size: 13.0px; - + @@ -347,6 +347,6 @@ font-size: 13.0px; - + \ No newline at end of file diff --git a/docs/images/guides/quickStartGuide/basicsGlobalXYConfigureAxisScales.svg b/docs/images/guides/quickStartGuide/basicsGlobalXYConfigureAxisScales.svg index 46435854c..56bf1dfde 100644 --- a/docs/images/guides/quickStartGuide/basicsGlobalXYConfigureAxisScales.svg +++ b/docs/images/guides/quickStartGuide/basicsGlobalXYConfigureAxisScales.svg @@ -10,117 +10,117 @@ text { text-rendering: optimizeLegibility; } -#xXxprefixXx0 .plot-title { +#_sample_helper_static_id_prefix_0 .plot-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-x { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-x { fill: #ffffff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-y { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-y { fill: #ffffff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-text { +#_sample_helper_static_id_prefix_2 .tooltip-text { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-title { +#_sample_helper_static_id_prefix_2 .tooltip-title { fill: #474747; font-weight: bold; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-label { +#_sample_helper_static_id_prefix_2 .tooltip-label { fill: #474747; font-weight: bold; font-style: normal;font-family: sans-serif; @@ -129,7 +129,7 @@ font-size: 13.0px; } - + @@ -175,7 +175,7 @@ font-size: 13.0px; - + @@ -194,7 +194,7 @@ font-size: 13.0px; - + @@ -393,6 +393,6 @@ font-size: 13.0px; - + \ No newline at end of file diff --git a/docs/images/guides/quickStartGuide/basicsGlobalXYConfigureAxisScalesWithAltApi.svg b/docs/images/guides/quickStartGuide/basicsGlobalXYConfigureAxisScalesWithAltApi.svg index 61cfadc89..2b1eafba1 100644 --- a/docs/images/guides/quickStartGuide/basicsGlobalXYConfigureAxisScalesWithAltApi.svg +++ b/docs/images/guides/quickStartGuide/basicsGlobalXYConfigureAxisScalesWithAltApi.svg @@ -10,117 +10,117 @@ text { text-rendering: optimizeLegibility; } -#xXxprefixXx0 .plot-title { +#_sample_helper_static_id_prefix_0 .plot-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-x { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-x { fill: #ffffff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-y { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-y { fill: #ffffff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-text { +#_sample_helper_static_id_prefix_2 .tooltip-text { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-title { +#_sample_helper_static_id_prefix_2 .tooltip-title { fill: #474747; font-weight: bold; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-label { +#_sample_helper_static_id_prefix_2 .tooltip-label { fill: #474747; font-weight: bold; font-style: normal;font-family: sans-serif; @@ -129,7 +129,7 @@ font-size: 13.0px; } - + @@ -183,7 +183,7 @@ font-size: 13.0px; - + @@ -202,7 +202,7 @@ font-size: 13.0px; - + @@ -433,6 +433,6 @@ font-size: 13.0px; - + \ No newline at end of file diff --git a/docs/images/guides/quickStartGuide/basicsGlobalXYConfigureAxisScalesWithAltApi_dark.svg b/docs/images/guides/quickStartGuide/basicsGlobalXYConfigureAxisScalesWithAltApi_dark.svg index 11578cd59..cffc76d57 100644 --- a/docs/images/guides/quickStartGuide/basicsGlobalXYConfigureAxisScalesWithAltApi_dark.svg +++ b/docs/images/guides/quickStartGuide/basicsGlobalXYConfigureAxisScalesWithAltApi_dark.svg @@ -10,117 +10,117 @@ text { text-rendering: optimizeLegibility; } -#xXxprefixXx0 .plot-title { +#_sample_helper_static_id_prefix_0 .plot-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-x { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-x { fill: #303030; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-y { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-y { fill: #303030; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-text { +#_sample_helper_static_id_prefix_2 .tooltip-text { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-title { +#_sample_helper_static_id_prefix_2 .tooltip-title { fill: #bbbbbb; font-weight: bold; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-label { +#_sample_helper_static_id_prefix_2 .tooltip-label { fill: #bbbbbb; font-weight: bold; font-style: normal;font-family: sans-serif; @@ -129,7 +129,7 @@ font-size: 13.0px; } - + @@ -347,7 +347,7 @@ font-size: 13.0px; - + @@ -366,7 +366,7 @@ font-size: 13.0px; - + @@ -433,6 +433,6 @@ font-size: 13.0px; - + \ No newline at end of file diff --git a/docs/images/guides/quickStartGuide/basicsGlobalXYConfigureAxisScales_dark.svg b/docs/images/guides/quickStartGuide/basicsGlobalXYConfigureAxisScales_dark.svg index c45d1a131..65de54153 100644 --- a/docs/images/guides/quickStartGuide/basicsGlobalXYConfigureAxisScales_dark.svg +++ b/docs/images/guides/quickStartGuide/basicsGlobalXYConfigureAxisScales_dark.svg @@ -10,117 +10,117 @@ text { text-rendering: optimizeLegibility; } -#xXxprefixXx0 .plot-title { +#_sample_helper_static_id_prefix_0 .plot-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-x { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-x { fill: #303030; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-y { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-y { fill: #303030; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-text { +#_sample_helper_static_id_prefix_2 .tooltip-text { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-title { +#_sample_helper_static_id_prefix_2 .tooltip-title { fill: #bbbbbb; font-weight: bold; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-label { +#_sample_helper_static_id_prefix_2 .tooltip-label { fill: #bbbbbb; font-weight: bold; font-style: normal;font-family: sans-serif; @@ -129,7 +129,7 @@ font-size: 13.0px; } - + @@ -307,7 +307,7 @@ font-size: 13.0px; - + @@ -326,7 +326,7 @@ font-size: 13.0px; - + @@ -393,6 +393,6 @@ font-size: 13.0px; - + \ No newline at end of file diff --git a/docs/images/guides/quickStartGuide/basicsGlobalXYPlotLine.svg b/docs/images/guides/quickStartGuide/basicsGlobalXYPlotLine.svg index 3e44eb470..23a171a35 100644 --- a/docs/images/guides/quickStartGuide/basicsGlobalXYPlotLine.svg +++ b/docs/images/guides/quickStartGuide/basicsGlobalXYPlotLine.svg @@ -10,117 +10,117 @@ text { text-rendering: optimizeLegibility; } -#xXxprefixXx0 .plot-title { +#_sample_helper_static_id_prefix_0 .plot-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx3 .axis-tooltip-text-x { +#_sample_helper_static_id_prefix_3 .axis-tooltip-text-x { fill: #ffffff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx3 .axis-tooltip-text-y { +#_sample_helper_static_id_prefix_3 .axis-tooltip-text-y { fill: #ffffff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx3 .tooltip-text { +#_sample_helper_static_id_prefix_3 .tooltip-text { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx3 .tooltip-title { +#_sample_helper_static_id_prefix_3 .tooltip-title { fill: #474747; font-weight: bold; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx3 .tooltip-label { +#_sample_helper_static_id_prefix_3 .tooltip-label { fill: #474747; font-weight: bold; font-style: normal;font-family: sans-serif; @@ -129,7 +129,7 @@ font-size: 13.0px; } - + @@ -173,7 +173,7 @@ font-size: 13.0px; - + @@ -198,13 +198,13 @@ font-size: 13.0px; - + - + @@ -394,6 +394,6 @@ font-size: 13.0px; - + \ No newline at end of file diff --git a/docs/images/guides/quickStartGuide/basicsGlobalXYPlotLine_dark.svg b/docs/images/guides/quickStartGuide/basicsGlobalXYPlotLine_dark.svg index 24477a9b4..b2e89ad6b 100644 --- a/docs/images/guides/quickStartGuide/basicsGlobalXYPlotLine_dark.svg +++ b/docs/images/guides/quickStartGuide/basicsGlobalXYPlotLine_dark.svg @@ -10,117 +10,117 @@ text { text-rendering: optimizeLegibility; } -#xXxprefixXx0 .plot-title { +#_sample_helper_static_id_prefix_0 .plot-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx3 .axis-tooltip-text-x { +#_sample_helper_static_id_prefix_3 .axis-tooltip-text-x { fill: #303030; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx3 .axis-tooltip-text-y { +#_sample_helper_static_id_prefix_3 .axis-tooltip-text-y { fill: #303030; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx3 .tooltip-text { +#_sample_helper_static_id_prefix_3 .tooltip-text { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx3 .tooltip-title { +#_sample_helper_static_id_prefix_3 .tooltip-title { fill: #bbbbbb; font-weight: bold; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx3 .tooltip-label { +#_sample_helper_static_id_prefix_3 .tooltip-label { fill: #bbbbbb; font-weight: bold; font-style: normal;font-family: sans-serif; @@ -129,7 +129,7 @@ font-size: 13.0px; } - + @@ -296,7 +296,7 @@ font-size: 13.0px; - + @@ -321,13 +321,13 @@ font-size: 13.0px; - + - + @@ -394,6 +394,6 @@ font-size: 13.0px; - + \ No newline at end of file diff --git a/docs/images/guides/quickStartGuide/basicsLayersCustomizedScales.svg b/docs/images/guides/quickStartGuide/basicsLayersCustomizedScales.svg index 811dee450..3a1069f4e 100644 --- a/docs/images/guides/quickStartGuide/basicsLayersCustomizedScales.svg +++ b/docs/images/guides/quickStartGuide/basicsLayersCustomizedScales.svg @@ -10,117 +10,117 @@ text { text-rendering: optimizeLegibility; } -#xXxprefixXx0 .plot-title { +#_sample_helper_static_id_prefix_0 .plot-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-x { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-x { fill: #ffffff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-y { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-y { fill: #ffffff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-text { +#_sample_helper_static_id_prefix_2 .tooltip-text { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-title { +#_sample_helper_static_id_prefix_2 .tooltip-title { fill: #474747; font-weight: bold; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-label { +#_sample_helper_static_id_prefix_2 .tooltip-label { fill: #474747; font-weight: bold; font-style: normal;font-family: sans-serif; @@ -129,7 +129,7 @@ font-size: 13.0px; } - + @@ -177,7 +177,7 @@ font-size: 13.0px; - + @@ -196,7 +196,7 @@ font-size: 13.0px; - + @@ -525,6 +525,6 @@ font-size: 13.0px; - + \ No newline at end of file diff --git a/docs/images/guides/quickStartGuide/basicsLayersCustomizedScales_dark.svg b/docs/images/guides/quickStartGuide/basicsLayersCustomizedScales_dark.svg index 88ac25e27..1722086d6 100644 --- a/docs/images/guides/quickStartGuide/basicsLayersCustomizedScales_dark.svg +++ b/docs/images/guides/quickStartGuide/basicsLayersCustomizedScales_dark.svg @@ -10,117 +10,117 @@ text { text-rendering: optimizeLegibility; } -#xXxprefixXx0 .plot-title { +#_sample_helper_static_id_prefix_0 .plot-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-x { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-x { fill: #303030; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-y { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-y { fill: #303030; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-text { +#_sample_helper_static_id_prefix_2 .tooltip-text { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-title { +#_sample_helper_static_id_prefix_2 .tooltip-title { fill: #bbbbbb; font-weight: bold; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-label { +#_sample_helper_static_id_prefix_2 .tooltip-label { fill: #bbbbbb; font-weight: bold; font-style: normal;font-family: sans-serif; @@ -129,7 +129,7 @@ font-size: 13.0px; } - + @@ -314,7 +314,7 @@ font-size: 13.0px; - + @@ -333,7 +333,7 @@ font-size: 13.0px; - + @@ -525,6 +525,6 @@ font-size: 13.0px; - + \ No newline at end of file diff --git a/docs/images/guides/quickStartGuide/basicsLayersPlotWithCustomScales.svg b/docs/images/guides/quickStartGuide/basicsLayersPlotWithCustomScales.svg index f6800fd12..c794cd58b 100644 --- a/docs/images/guides/quickStartGuide/basicsLayersPlotWithCustomScales.svg +++ b/docs/images/guides/quickStartGuide/basicsLayersPlotWithCustomScales.svg @@ -10,117 +10,117 @@ text { text-rendering: optimizeLegibility; } -#xXxprefixXx0 .plot-title { +#_sample_helper_static_id_prefix_0 .plot-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-x { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-x { fill: #ffffff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-y { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-y { fill: #ffffff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-text { +#_sample_helper_static_id_prefix_2 .tooltip-text { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-title { +#_sample_helper_static_id_prefix_2 .tooltip-title { fill: #474747; font-weight: bold; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-label { +#_sample_helper_static_id_prefix_2 .tooltip-label { fill: #474747; font-weight: bold; font-style: normal;font-family: sans-serif; @@ -129,7 +129,7 @@ font-size: 13.0px; } - + @@ -173,7 +173,7 @@ font-size: 13.0px; - + @@ -213,7 +213,7 @@ font-size: 13.0px; - + @@ -407,6 +407,6 @@ font-size: 13.0px; - + \ No newline at end of file diff --git a/docs/images/guides/quickStartGuide/basicsLayersPlotWithCustomScales_dark.svg b/docs/images/guides/quickStartGuide/basicsLayersPlotWithCustomScales_dark.svg index c55aab43d..60eb5dfc8 100644 --- a/docs/images/guides/quickStartGuide/basicsLayersPlotWithCustomScales_dark.svg +++ b/docs/images/guides/quickStartGuide/basicsLayersPlotWithCustomScales_dark.svg @@ -10,117 +10,117 @@ text { text-rendering: optimizeLegibility; } -#xXxprefixXx0 .plot-title { +#_sample_helper_static_id_prefix_0 .plot-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-x { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-x { fill: #303030; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-y { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-y { fill: #303030; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-text { +#_sample_helper_static_id_prefix_2 .tooltip-text { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-title { +#_sample_helper_static_id_prefix_2 .tooltip-title { fill: #bbbbbb; font-weight: bold; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-label { +#_sample_helper_static_id_prefix_2 .tooltip-label { fill: #bbbbbb; font-weight: bold; font-style: normal;font-family: sans-serif; @@ -129,7 +129,7 @@ font-size: 13.0px; } - + @@ -294,7 +294,7 @@ font-size: 13.0px; - + @@ -334,7 +334,7 @@ font-size: 13.0px; - + @@ -407,6 +407,6 @@ font-size: 13.0px; - + \ No newline at end of file diff --git a/docs/images/guides/quickStartGuide/basicsPlotCreationHumidityData.svg b/docs/images/guides/quickStartGuide/basicsPlotCreationHumidityData.svg index b8803cb72..72d5b0f06 100644 --- a/docs/images/guides/quickStartGuide/basicsPlotCreationHumidityData.svg +++ b/docs/images/guides/quickStartGuide/basicsPlotCreationHumidityData.svg @@ -10,117 +10,117 @@ text { text-rendering: optimizeLegibility; } -#xXxprefixXx0 .plot-title { +#_sample_helper_static_id_prefix_0 .plot-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-x { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-x { fill: #ffffff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-y { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-y { fill: #ffffff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-text { +#_sample_helper_static_id_prefix_2 .tooltip-text { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-title { +#_sample_helper_static_id_prefix_2 .tooltip-title { fill: #474747; font-weight: bold; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-label { +#_sample_helper_static_id_prefix_2 .tooltip-label { fill: #474747; font-weight: bold; font-style: normal;font-family: sans-serif; @@ -129,7 +129,7 @@ font-size: 13.0px; } - + @@ -167,7 +167,7 @@ font-size: 13.0px; - + @@ -186,7 +186,7 @@ font-size: 13.0px; - + @@ -353,6 +353,6 @@ font-size: 13.0px; - + \ No newline at end of file diff --git a/docs/images/guides/quickStartGuide/basicsPlotCreationHumidityData_dark.svg b/docs/images/guides/quickStartGuide/basicsPlotCreationHumidityData_dark.svg index 007c98290..e4fa26ead 100644 --- a/docs/images/guides/quickStartGuide/basicsPlotCreationHumidityData_dark.svg +++ b/docs/images/guides/quickStartGuide/basicsPlotCreationHumidityData_dark.svg @@ -10,117 +10,117 @@ text { text-rendering: optimizeLegibility; } -#xXxprefixXx0 .plot-title { +#_sample_helper_static_id_prefix_0 .plot-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-x { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-x { fill: #303030; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-y { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-y { fill: #303030; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-text { +#_sample_helper_static_id_prefix_2 .tooltip-text { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-title { +#_sample_helper_static_id_prefix_2 .tooltip-title { fill: #bbbbbb; font-weight: bold; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-label { +#_sample_helper_static_id_prefix_2 .tooltip-label { fill: #bbbbbb; font-weight: bold; font-style: normal;font-family: sans-serif; @@ -129,7 +129,7 @@ font-size: 13.0px; } - + @@ -267,7 +267,7 @@ font-size: 13.0px; - + @@ -286,7 +286,7 @@ font-size: 13.0px; - + @@ -353,6 +353,6 @@ font-size: 13.0px; - + \ No newline at end of file diff --git a/docs/images/guides/quickStartGuide/basicsRawSourceDaysPerMonthBarPlot.svg b/docs/images/guides/quickStartGuide/basicsRawSourceDaysPerMonthBarPlot.svg index fc565d9e4..d24506479 100644 --- a/docs/images/guides/quickStartGuide/basicsRawSourceDaysPerMonthBarPlot.svg +++ b/docs/images/guides/quickStartGuide/basicsRawSourceDaysPerMonthBarPlot.svg @@ -10,117 +10,117 @@ text { text-rendering: optimizeLegibility; } -#xXxprefixXx0 .plot-title { +#_sample_helper_static_id_prefix_0 .plot-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-x { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-x { fill: #ffffff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-y { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-y { fill: #ffffff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-text { +#_sample_helper_static_id_prefix_2 .tooltip-text { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-title { +#_sample_helper_static_id_prefix_2 .tooltip-title { fill: #474747; font-weight: bold; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-label { +#_sample_helper_static_id_prefix_2 .tooltip-label { fill: #474747; font-weight: bold; font-style: normal;font-family: sans-serif; @@ -129,7 +129,7 @@ font-size: 13.0px; } - + @@ -181,7 +181,7 @@ font-size: 13.0px; - + @@ -213,7 +213,7 @@ font-size: 13.0px; - + @@ -471,6 +471,6 @@ font-size: 13.0px; - + \ No newline at end of file diff --git a/docs/images/guides/quickStartGuide/basicsRawSourceDaysPerMonthBarPlot_dark.svg b/docs/images/guides/quickStartGuide/basicsRawSourceDaysPerMonthBarPlot_dark.svg index e7add3fd7..023d6fdbd 100644 --- a/docs/images/guides/quickStartGuide/basicsRawSourceDaysPerMonthBarPlot_dark.svg +++ b/docs/images/guides/quickStartGuide/basicsRawSourceDaysPerMonthBarPlot_dark.svg @@ -10,117 +10,117 @@ text { text-rendering: optimizeLegibility; } -#xXxprefixXx0 .plot-title { +#_sample_helper_static_id_prefix_0 .plot-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-x { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-x { fill: #303030; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-y { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-y { fill: #303030; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-text { +#_sample_helper_static_id_prefix_2 .tooltip-text { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-title { +#_sample_helper_static_id_prefix_2 .tooltip-title { fill: #bbbbbb; font-weight: bold; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-label { +#_sample_helper_static_id_prefix_2 .tooltip-label { fill: #bbbbbb; font-weight: bold; font-style: normal;font-family: sans-serif; @@ -129,7 +129,7 @@ font-size: 13.0px; } - + @@ -344,7 +344,7 @@ font-size: 13.0px; - + @@ -376,7 +376,7 @@ font-size: 13.0px; - + @@ -471,6 +471,6 @@ font-size: 13.0px; - + \ No newline at end of file diff --git a/docs/images/guides/quickStartGuide/basicsScaleParamTimeHumidityGraph.svg b/docs/images/guides/quickStartGuide/basicsScaleParamTimeHumidityGraph.svg index e0b01a7dc..d90191440 100644 --- a/docs/images/guides/quickStartGuide/basicsScaleParamTimeHumidityGraph.svg +++ b/docs/images/guides/quickStartGuide/basicsScaleParamTimeHumidityGraph.svg @@ -10,117 +10,117 @@ text { text-rendering: optimizeLegibility; } -#xXxprefixXx0 .plot-title { +#_sample_helper_static_id_prefix_0 .plot-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-x { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-x { fill: #ffffff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-y { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-y { fill: #ffffff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-text { +#_sample_helper_static_id_prefix_2 .tooltip-text { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-title { +#_sample_helper_static_id_prefix_2 .tooltip-title { fill: #474747; font-weight: bold; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-label { +#_sample_helper_static_id_prefix_2 .tooltip-label { fill: #474747; font-weight: bold; font-style: normal;font-family: sans-serif; @@ -129,7 +129,7 @@ font-size: 13.0px; } - + @@ -161,7 +161,7 @@ font-size: 13.0px; - + @@ -180,7 +180,7 @@ font-size: 13.0px; - + @@ -392,6 +392,6 @@ font-size: 13.0px; - + \ No newline at end of file diff --git a/docs/images/guides/quickStartGuide/basicsScaleParamTimeHumidityGraph_dark.svg b/docs/images/guides/quickStartGuide/basicsScaleParamTimeHumidityGraph_dark.svg index 127899e4d..e36d717cd 100644 --- a/docs/images/guides/quickStartGuide/basicsScaleParamTimeHumidityGraph_dark.svg +++ b/docs/images/guides/quickStartGuide/basicsScaleParamTimeHumidityGraph_dark.svg @@ -10,117 +10,117 @@ text { text-rendering: optimizeLegibility; } -#xXxprefixXx0 .plot-title { +#_sample_helper_static_id_prefix_0 .plot-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-x { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-x { fill: #303030; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-y { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-y { fill: #303030; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-text { +#_sample_helper_static_id_prefix_2 .tooltip-text { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-title { +#_sample_helper_static_id_prefix_2 .tooltip-title { fill: #bbbbbb; font-weight: bold; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-label { +#_sample_helper_static_id_prefix_2 .tooltip-label { fill: #bbbbbb; font-weight: bold; font-style: normal;font-family: sans-serif; @@ -129,7 +129,7 @@ font-size: 13.0px; } - + @@ -240,7 +240,7 @@ font-size: 13.0px; - + @@ -259,7 +259,7 @@ font-size: 13.0px; - + @@ -392,6 +392,6 @@ font-size: 13.0px; - + \ No newline at end of file diff --git a/docs/images/guides/quickStartGuide/experimentalCustomScalesCategoricalColor.svg b/docs/images/guides/quickStartGuide/experimentalCustomScalesCategoricalColor.svg index f5c4abcb4..9caeb51d8 100644 --- a/docs/images/guides/quickStartGuide/experimentalCustomScalesCategoricalColor.svg +++ b/docs/images/guides/quickStartGuide/experimentalCustomScalesCategoricalColor.svg @@ -10,117 +10,117 @@ text { text-rendering: optimizeLegibility; } -#xXxprefixXx0 .plot-title { +#_sample_helper_static_id_prefix_0 .plot-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-x { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-x { fill: #ffffff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-y { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-y { fill: #ffffff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-text { +#_sample_helper_static_id_prefix_2 .tooltip-text { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-title { +#_sample_helper_static_id_prefix_2 .tooltip-title { fill: #474747; font-weight: bold; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-label { +#_sample_helper_static_id_prefix_2 .tooltip-label { fill: #474747; font-weight: bold; font-style: normal;font-family: sans-serif; @@ -129,7 +129,7 @@ font-size: 13.0px; } - + @@ -169,7 +169,7 @@ font-size: 13.0px; - + @@ -415,7 +415,7 @@ font-size: 13.0px; - + @@ -607,6 +607,6 @@ font-size: 13.0px; - + \ No newline at end of file diff --git a/docs/images/guides/quickStartGuide/experimentalCustomScalesCategoricalColorBrewer.svg b/docs/images/guides/quickStartGuide/experimentalCustomScalesCategoricalColorBrewer.svg index a237b506d..4d6f76a3a 100644 --- a/docs/images/guides/quickStartGuide/experimentalCustomScalesCategoricalColorBrewer.svg +++ b/docs/images/guides/quickStartGuide/experimentalCustomScalesCategoricalColorBrewer.svg @@ -10,117 +10,117 @@ text { text-rendering: optimizeLegibility; } -#xXxprefixXx0 .plot-title { +#_sample_helper_static_id_prefix_0 .plot-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-x { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-x { fill: #ffffff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-y { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-y { fill: #ffffff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-text { +#_sample_helper_static_id_prefix_2 .tooltip-text { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-title { +#_sample_helper_static_id_prefix_2 .tooltip-title { fill: #474747; font-weight: bold; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-label { +#_sample_helper_static_id_prefix_2 .tooltip-label { fill: #474747; font-weight: bold; font-style: normal;font-family: sans-serif; @@ -129,7 +129,7 @@ font-size: 13.0px; } - + @@ -169,7 +169,7 @@ font-size: 13.0px; - + @@ -415,7 +415,7 @@ font-size: 13.0px; - + @@ -607,6 +607,6 @@ font-size: 13.0px; - + \ No newline at end of file diff --git a/docs/images/guides/quickStartGuide/experimentalCustomScalesCategoricalColorBrewer_dark.svg b/docs/images/guides/quickStartGuide/experimentalCustomScalesCategoricalColorBrewer_dark.svg index 3b916a3c4..c88220635 100644 --- a/docs/images/guides/quickStartGuide/experimentalCustomScalesCategoricalColorBrewer_dark.svg +++ b/docs/images/guides/quickStartGuide/experimentalCustomScalesCategoricalColorBrewer_dark.svg @@ -10,117 +10,117 @@ text { text-rendering: optimizeLegibility; } -#xXxprefixXx0 .plot-title { +#_sample_helper_static_id_prefix_0 .plot-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-x { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-x { fill: #303030; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-y { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-y { fill: #303030; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-text { +#_sample_helper_static_id_prefix_2 .tooltip-text { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-title { +#_sample_helper_static_id_prefix_2 .tooltip-title { fill: #bbbbbb; font-weight: bold; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-label { +#_sample_helper_static_id_prefix_2 .tooltip-label { fill: #bbbbbb; font-weight: bold; font-style: normal;font-family: sans-serif; @@ -129,7 +129,7 @@ font-size: 13.0px; } - + @@ -278,7 +278,7 @@ font-size: 13.0px; - + @@ -524,7 +524,7 @@ font-size: 13.0px; - + @@ -607,6 +607,6 @@ font-size: 13.0px; - + \ No newline at end of file diff --git a/docs/images/guides/quickStartGuide/experimentalCustomScalesCategoricalColor_dark.svg b/docs/images/guides/quickStartGuide/experimentalCustomScalesCategoricalColor_dark.svg index 6d07ed542..ce0da5347 100644 --- a/docs/images/guides/quickStartGuide/experimentalCustomScalesCategoricalColor_dark.svg +++ b/docs/images/guides/quickStartGuide/experimentalCustomScalesCategoricalColor_dark.svg @@ -10,117 +10,117 @@ text { text-rendering: optimizeLegibility; } -#xXxprefixXx0 .plot-title { +#_sample_helper_static_id_prefix_0 .plot-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-x { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-x { fill: #303030; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-y { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-y { fill: #303030; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-text { +#_sample_helper_static_id_prefix_2 .tooltip-text { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-title { +#_sample_helper_static_id_prefix_2 .tooltip-title { fill: #bbbbbb; font-weight: bold; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-label { +#_sample_helper_static_id_prefix_2 .tooltip-label { fill: #bbbbbb; font-weight: bold; font-style: normal;font-family: sans-serif; @@ -129,7 +129,7 @@ font-size: 13.0px; } - + @@ -278,7 +278,7 @@ font-size: 13.0px; - + @@ -524,7 +524,7 @@ font-size: 13.0px; - + @@ -607,6 +607,6 @@ font-size: 13.0px; - + \ No newline at end of file diff --git a/docs/images/guides/quickStartGuide/experimentalCustomScalesContinuousColorGradient2.svg b/docs/images/guides/quickStartGuide/experimentalCustomScalesContinuousColorGradient2.svg index ebf0589a7..73d5d460f 100644 --- a/docs/images/guides/quickStartGuide/experimentalCustomScalesContinuousColorGradient2.svg +++ b/docs/images/guides/quickStartGuide/experimentalCustomScalesContinuousColorGradient2.svg @@ -10,117 +10,117 @@ text { text-rendering: optimizeLegibility; } -#xXxprefixXx0 .plot-title { +#_sample_helper_static_id_prefix_0 .plot-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-x { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-x { fill: #ffffff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-y { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-y { fill: #ffffff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-text { +#_sample_helper_static_id_prefix_2 .tooltip-text { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-title { +#_sample_helper_static_id_prefix_2 .tooltip-title { fill: #474747; font-weight: bold; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-label { +#_sample_helper_static_id_prefix_2 .tooltip-label { fill: #474747; font-weight: bold; font-style: normal;font-family: sans-serif; @@ -129,7 +129,7 @@ font-size: 13.0px; } - + @@ -169,7 +169,7 @@ font-size: 13.0px; - + @@ -415,7 +415,7 @@ font-size: 13.0px; - + @@ -655,6 +655,6 @@ font-size: 13.0px; - + \ No newline at end of file diff --git a/docs/images/guides/quickStartGuide/experimentalCustomScalesContinuousColorGradient2_dark.svg b/docs/images/guides/quickStartGuide/experimentalCustomScalesContinuousColorGradient2_dark.svg index 8eb0dfcac..517f6b60e 100644 --- a/docs/images/guides/quickStartGuide/experimentalCustomScalesContinuousColorGradient2_dark.svg +++ b/docs/images/guides/quickStartGuide/experimentalCustomScalesContinuousColorGradient2_dark.svg @@ -10,117 +10,117 @@ text { text-rendering: optimizeLegibility; } -#xXxprefixXx0 .plot-title { +#_sample_helper_static_id_prefix_0 .plot-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-x { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-x { fill: #303030; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-y { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-y { fill: #303030; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-text { +#_sample_helper_static_id_prefix_2 .tooltip-text { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-title { +#_sample_helper_static_id_prefix_2 .tooltip-title { fill: #bbbbbb; font-weight: bold; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-label { +#_sample_helper_static_id_prefix_2 .tooltip-label { fill: #bbbbbb; font-weight: bold; font-style: normal;font-family: sans-serif; @@ -129,7 +129,7 @@ font-size: 13.0px; } - + @@ -278,7 +278,7 @@ font-size: 13.0px; - + @@ -524,7 +524,7 @@ font-size: 13.0px; - + @@ -655,6 +655,6 @@ font-size: 13.0px; - + \ No newline at end of file diff --git a/docs/images/guides/quickStartGuide/experimentalCustomScalesContinuousColorGradientN.svg b/docs/images/guides/quickStartGuide/experimentalCustomScalesContinuousColorGradientN.svg index dbfacc350..f5f137eca 100644 --- a/docs/images/guides/quickStartGuide/experimentalCustomScalesContinuousColorGradientN.svg +++ b/docs/images/guides/quickStartGuide/experimentalCustomScalesContinuousColorGradientN.svg @@ -10,117 +10,117 @@ text { text-rendering: optimizeLegibility; } -#xXxprefixXx0 .plot-title { +#_sample_helper_static_id_prefix_0 .plot-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-x { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-x { fill: #ffffff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-y { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-y { fill: #ffffff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-text { +#_sample_helper_static_id_prefix_2 .tooltip-text { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-title { +#_sample_helper_static_id_prefix_2 .tooltip-title { fill: #474747; font-weight: bold; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-label { +#_sample_helper_static_id_prefix_2 .tooltip-label { fill: #474747; font-weight: bold; font-style: normal;font-family: sans-serif; @@ -129,7 +129,7 @@ font-size: 13.0px; } - + @@ -169,7 +169,7 @@ font-size: 13.0px; - + @@ -415,7 +415,7 @@ font-size: 13.0px; - + @@ -655,6 +655,6 @@ font-size: 13.0px; - + \ No newline at end of file diff --git a/docs/images/guides/quickStartGuide/experimentalCustomScalesContinuousColorGradientN_dark.svg b/docs/images/guides/quickStartGuide/experimentalCustomScalesContinuousColorGradientN_dark.svg index 9761f2a3c..b8685cc11 100644 --- a/docs/images/guides/quickStartGuide/experimentalCustomScalesContinuousColorGradientN_dark.svg +++ b/docs/images/guides/quickStartGuide/experimentalCustomScalesContinuousColorGradientN_dark.svg @@ -10,117 +10,117 @@ text { text-rendering: optimizeLegibility; } -#xXxprefixXx0 .plot-title { +#_sample_helper_static_id_prefix_0 .plot-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-x { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-x { fill: #303030; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-y { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-y { fill: #303030; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-text { +#_sample_helper_static_id_prefix_2 .tooltip-text { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-title { +#_sample_helper_static_id_prefix_2 .tooltip-title { fill: #bbbbbb; font-weight: bold; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-label { +#_sample_helper_static_id_prefix_2 .tooltip-label { fill: #bbbbbb; font-weight: bold; font-style: normal;font-family: sans-serif; @@ -129,7 +129,7 @@ font-size: 13.0px; } - + @@ -278,7 +278,7 @@ font-size: 13.0px; - + @@ -524,7 +524,7 @@ font-size: 13.0px; - + @@ -655,6 +655,6 @@ font-size: 13.0px; - + \ No newline at end of file diff --git a/docs/images/guides/quickStartGuide/experimentalCustomScalesContinuousColorGrey.svg b/docs/images/guides/quickStartGuide/experimentalCustomScalesContinuousColorGrey.svg index 74a2347e8..b0754d5a8 100644 --- a/docs/images/guides/quickStartGuide/experimentalCustomScalesContinuousColorGrey.svg +++ b/docs/images/guides/quickStartGuide/experimentalCustomScalesContinuousColorGrey.svg @@ -10,117 +10,117 @@ text { text-rendering: optimizeLegibility; } -#xXxprefixXx0 .plot-title { +#_sample_helper_static_id_prefix_0 .plot-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-x { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-x { fill: #ffffff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-y { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-y { fill: #ffffff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-text { +#_sample_helper_static_id_prefix_2 .tooltip-text { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-title { +#_sample_helper_static_id_prefix_2 .tooltip-title { fill: #474747; font-weight: bold; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-label { +#_sample_helper_static_id_prefix_2 .tooltip-label { fill: #474747; font-weight: bold; font-style: normal;font-family: sans-serif; @@ -129,7 +129,7 @@ font-size: 13.0px; } - + @@ -169,7 +169,7 @@ font-size: 13.0px; - + @@ -415,7 +415,7 @@ font-size: 13.0px; - + @@ -655,6 +655,6 @@ font-size: 13.0px; - + \ No newline at end of file diff --git a/docs/images/guides/quickStartGuide/experimentalCustomScalesContinuousColorGrey_dark.svg b/docs/images/guides/quickStartGuide/experimentalCustomScalesContinuousColorGrey_dark.svg index fce0b6f14..da6ddaa66 100644 --- a/docs/images/guides/quickStartGuide/experimentalCustomScalesContinuousColorGrey_dark.svg +++ b/docs/images/guides/quickStartGuide/experimentalCustomScalesContinuousColorGrey_dark.svg @@ -10,117 +10,117 @@ text { text-rendering: optimizeLegibility; } -#xXxprefixXx0 .plot-title { +#_sample_helper_static_id_prefix_0 .plot-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-x { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-x { fill: #303030; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-y { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-y { fill: #303030; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-text { +#_sample_helper_static_id_prefix_2 .tooltip-text { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-title { +#_sample_helper_static_id_prefix_2 .tooltip-title { fill: #bbbbbb; font-weight: bold; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-label { +#_sample_helper_static_id_prefix_2 .tooltip-label { fill: #bbbbbb; font-weight: bold; font-style: normal;font-family: sans-serif; @@ -129,7 +129,7 @@ font-size: 13.0px; } - + @@ -278,7 +278,7 @@ font-size: 13.0px; - + @@ -524,7 +524,7 @@ font-size: 13.0px; - + @@ -655,6 +655,6 @@ font-size: 13.0px; - + \ No newline at end of file diff --git a/docs/images/guides/quickStartGuide/experimentalExportPlotForExport.svg b/docs/images/guides/quickStartGuide/experimentalExportPlotForExport.svg index 1e6443681..99996ebef 100644 --- a/docs/images/guides/quickStartGuide/experimentalExportPlotForExport.svg +++ b/docs/images/guides/quickStartGuide/experimentalExportPlotForExport.svg @@ -10,117 +10,117 @@ text { text-rendering: optimizeLegibility; } -#xXxprefixXx0 .plot-title { +#_sample_helper_static_id_prefix_0 .plot-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-x { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-x { fill: #ffffff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-y { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-y { fill: #ffffff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-text { +#_sample_helper_static_id_prefix_2 .tooltip-text { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-title { +#_sample_helper_static_id_prefix_2 .tooltip-title { fill: #474747; font-weight: bold; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-label { +#_sample_helper_static_id_prefix_2 .tooltip-label { fill: #474747; font-weight: bold; font-style: normal;font-family: sans-serif; @@ -129,7 +129,7 @@ font-size: 13.0px; } - + @@ -169,7 +169,7 @@ font-size: 13.0px; - + @@ -415,7 +415,7 @@ font-size: 13.0px; - + @@ -612,6 +612,6 @@ font-size: 13.0px; - + \ No newline at end of file diff --git a/docs/images/guides/quickStartGuide/experimentalExportPlotForExport_dark.svg b/docs/images/guides/quickStartGuide/experimentalExportPlotForExport_dark.svg index 477c5d423..d5c4fa210 100644 --- a/docs/images/guides/quickStartGuide/experimentalExportPlotForExport_dark.svg +++ b/docs/images/guides/quickStartGuide/experimentalExportPlotForExport_dark.svg @@ -10,117 +10,117 @@ text { text-rendering: optimizeLegibility; } -#xXxprefixXx0 .plot-title { +#_sample_helper_static_id_prefix_0 .plot-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-x { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-x { fill: #303030; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-y { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-y { fill: #303030; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-text { +#_sample_helper_static_id_prefix_2 .tooltip-text { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-title { +#_sample_helper_static_id_prefix_2 .tooltip-title { fill: #bbbbbb; font-weight: bold; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-label { +#_sample_helper_static_id_prefix_2 .tooltip-label { fill: #bbbbbb; font-weight: bold; font-style: normal;font-family: sans-serif; @@ -129,7 +129,7 @@ font-size: 13.0px; } - + @@ -278,7 +278,7 @@ font-size: 13.0px; - + @@ -524,7 +524,7 @@ font-size: 13.0px; - + @@ -612,6 +612,6 @@ font-size: 13.0px; - + \ No newline at end of file diff --git a/docs/images/guides/quickStartGuide/experimentalLayoutCustomStyleBlankAxes.svg b/docs/images/guides/quickStartGuide/experimentalLayoutCustomStyleBlankAxes.svg index 83a5b82af..cc739c548 100644 --- a/docs/images/guides/quickStartGuide/experimentalLayoutCustomStyleBlankAxes.svg +++ b/docs/images/guides/quickStartGuide/experimentalLayoutCustomStyleBlankAxes.svg @@ -10,117 +10,117 @@ text { text-rendering: optimizeLegibility; } -#xXxprefixXx0 .plot-title { +#_sample_helper_static_id_prefix_0 .plot-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-x { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-x { fill: #ffffff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-y { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-y { fill: #ffffff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-text { +#_sample_helper_static_id_prefix_2 .tooltip-text { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-title { +#_sample_helper_static_id_prefix_2 .tooltip-title { fill: #474747; font-weight: bold; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-label { +#_sample_helper_static_id_prefix_2 .tooltip-label { fill: #474747; font-weight: bold; font-style: normal;font-family: sans-serif; @@ -129,7 +129,7 @@ font-size: 13.0px; } - + @@ -173,7 +173,7 @@ font-size: 13.0px; - + @@ -419,7 +419,7 @@ font-size: 13.0px; - + @@ -431,6 +431,6 @@ font-size: 13.0px; - + \ No newline at end of file diff --git a/docs/images/guides/quickStartGuide/experimentalLayoutCustomStyleBlankAxes_dark.svg b/docs/images/guides/quickStartGuide/experimentalLayoutCustomStyleBlankAxes_dark.svg index 9703495d6..7b3a87f07 100644 --- a/docs/images/guides/quickStartGuide/experimentalLayoutCustomStyleBlankAxes_dark.svg +++ b/docs/images/guides/quickStartGuide/experimentalLayoutCustomStyleBlankAxes_dark.svg @@ -10,117 +10,117 @@ text { text-rendering: optimizeLegibility; } -#xXxprefixXx0 .plot-title { +#_sample_helper_static_id_prefix_0 .plot-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-x { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-x { fill: #303030; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-y { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-y { fill: #303030; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-text { +#_sample_helper_static_id_prefix_2 .tooltip-text { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-title { +#_sample_helper_static_id_prefix_2 .tooltip-title { fill: #bbbbbb; font-weight: bold; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-label { +#_sample_helper_static_id_prefix_2 .tooltip-label { fill: #bbbbbb; font-weight: bold; font-style: normal;font-family: sans-serif; @@ -129,7 +129,7 @@ font-size: 13.0px; } - + @@ -173,7 +173,7 @@ font-size: 13.0px; - + @@ -419,7 +419,7 @@ font-size: 13.0px; - + @@ -431,6 +431,6 @@ font-size: 13.0px; - + \ No newline at end of file diff --git a/docs/images/guides/quickStartGuide/experimentalLayoutPlotAllStyles.svg b/docs/images/guides/quickStartGuide/experimentalLayoutPlotAllStyles.svg index 549a771dc..b2213e588 100644 --- a/docs/images/guides/quickStartGuide/experimentalLayoutPlotAllStyles.svg +++ b/docs/images/guides/quickStartGuide/experimentalLayoutPlotAllStyles.svg @@ -10,54 +10,54 @@ text { text-rendering: optimizeLegibility; } -#xXxprefixXx0 .plot-title { +#_sample_helper_static_id_prefix_0 .plot-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; @@ -71,14 +71,14 @@ font-weight: normal; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; @@ -92,14 +92,14 @@ font-weight: normal; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; @@ -129,7 +129,7 @@ font-size: 13.0px; } - + @@ -145,117 +145,117 @@ font-size: 13.0px; text { text-rendering: optimizeLegibility; } -#xXxprefixXx1 .plot-title { +#_sample_helper_static_id_prefix_1 .plot-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx1 .plot-subtitle { +#_sample_helper_static_id_prefix_1 .plot-subtitle { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx1 .plot-caption { +#_sample_helper_static_id_prefix_1 .plot-caption { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx1 .hyperlink-element { +#_sample_helper_static_id_prefix_1 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx1 .legend-title { +#_sample_helper_static_id_prefix_1 .legend-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx1 .legend-item { +#_sample_helper_static_id_prefix_1 .legend-item { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx1 .axis-title-x { +#_sample_helper_static_id_prefix_1 .axis-title-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx1 .axis-text-x { +#_sample_helper_static_id_prefix_1 .axis-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx3 .axis-tooltip-text-x { +#_sample_helper_static_id_prefix_3 .axis-tooltip-text-x { fill: #ffffff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx1 .axis-title-y { +#_sample_helper_static_id_prefix_1 .axis-title-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx1 .axis-text-y { +#_sample_helper_static_id_prefix_1 .axis-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx3 .axis-tooltip-text-y { +#_sample_helper_static_id_prefix_3 .axis-tooltip-text-y { fill: #ffffff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx1 .facet-strip-text-x { +#_sample_helper_static_id_prefix_1 .facet-strip-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx1 .facet-strip-text-y { +#_sample_helper_static_id_prefix_1 .facet-strip-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx3 .tooltip-text { +#_sample_helper_static_id_prefix_3 .tooltip-text { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx3 .tooltip-title { +#_sample_helper_static_id_prefix_3 .tooltip-title { fill: #474747; font-weight: bold; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx3 .tooltip-label { +#_sample_helper_static_id_prefix_3 .tooltip-label { fill: #474747; font-weight: bold; font-style: normal;font-family: sans-serif; @@ -264,7 +264,7 @@ font-size: 13.0px; } - + @@ -367,7 +367,7 @@ font-size: 13.0px; - + @@ -613,7 +613,7 @@ font-size: 13.0px; - + @@ -640,7 +640,7 @@ font-size: 13.0px; - + @@ -655,117 +655,117 @@ font-size: 13.0px; text { text-rendering: optimizeLegibility; } -#xXxprefixXx4 .plot-title { +#_sample_helper_static_id_prefix_4 .plot-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx4 .plot-subtitle { +#_sample_helper_static_id_prefix_4 .plot-subtitle { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx4 .plot-caption { +#_sample_helper_static_id_prefix_4 .plot-caption { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx4 .hyperlink-element { +#_sample_helper_static_id_prefix_4 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx4 .legend-title { +#_sample_helper_static_id_prefix_4 .legend-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx4 .legend-item { +#_sample_helper_static_id_prefix_4 .legend-item { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx4 .axis-title-x { +#_sample_helper_static_id_prefix_4 .axis-title-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx4 .axis-text-x { +#_sample_helper_static_id_prefix_4 .axis-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx6 .axis-tooltip-text-x { +#_sample_helper_static_id_prefix_6 .axis-tooltip-text-x { fill: #ffffff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx4 .axis-title-y { +#_sample_helper_static_id_prefix_4 .axis-title-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx4 .axis-text-y { +#_sample_helper_static_id_prefix_4 .axis-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx6 .axis-tooltip-text-y { +#_sample_helper_static_id_prefix_6 .axis-tooltip-text-y { fill: #ffffff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx4 .facet-strip-text-x { +#_sample_helper_static_id_prefix_4 .facet-strip-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx4 .facet-strip-text-y { +#_sample_helper_static_id_prefix_4 .facet-strip-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx6 .tooltip-text { +#_sample_helper_static_id_prefix_6 .tooltip-text { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx6 .tooltip-title { +#_sample_helper_static_id_prefix_6 .tooltip-title { fill: #474747; font-weight: bold; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx6 .tooltip-label { +#_sample_helper_static_id_prefix_6 .tooltip-label { fill: #474747; font-weight: bold; font-style: normal;font-family: sans-serif; @@ -774,7 +774,7 @@ font-size: 13.0px; } - + @@ -911,7 +911,7 @@ font-size: 13.0px; - + @@ -1157,7 +1157,7 @@ font-size: 13.0px; - + @@ -1186,7 +1186,7 @@ font-size: 13.0px; - + @@ -1201,117 +1201,117 @@ font-size: 13.0px; text { text-rendering: optimizeLegibility; } -#xXxprefixXx7 .plot-title { +#_sample_helper_static_id_prefix_7 .plot-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx7 .plot-subtitle { +#_sample_helper_static_id_prefix_7 .plot-subtitle { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx7 .plot-caption { +#_sample_helper_static_id_prefix_7 .plot-caption { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx7 .hyperlink-element { +#_sample_helper_static_id_prefix_7 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx7 .legend-title { +#_sample_helper_static_id_prefix_7 .legend-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx7 .legend-item { +#_sample_helper_static_id_prefix_7 .legend-item { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx7 .axis-title-x { +#_sample_helper_static_id_prefix_7 .axis-title-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx7 .axis-text-x { +#_sample_helper_static_id_prefix_7 .axis-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx9 .axis-tooltip-text-x { +#_sample_helper_static_id_prefix_9 .axis-tooltip-text-x { fill: #ffffff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx7 .axis-title-y { +#_sample_helper_static_id_prefix_7 .axis-title-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx7 .axis-text-y { +#_sample_helper_static_id_prefix_7 .axis-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx9 .axis-tooltip-text-y { +#_sample_helper_static_id_prefix_9 .axis-tooltip-text-y { fill: #ffffff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx7 .facet-strip-text-x { +#_sample_helper_static_id_prefix_7 .facet-strip-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx7 .facet-strip-text-y { +#_sample_helper_static_id_prefix_7 .facet-strip-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx9 .tooltip-text { +#_sample_helper_static_id_prefix_9 .tooltip-text { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx9 .tooltip-title { +#_sample_helper_static_id_prefix_9 .tooltip-title { fill: #474747; font-weight: bold; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx9 .tooltip-label { +#_sample_helper_static_id_prefix_9 .tooltip-label { fill: #474747; font-weight: bold; font-style: normal;font-family: sans-serif; @@ -1320,7 +1320,7 @@ font-size: 13.0px; } - + @@ -1457,7 +1457,7 @@ font-size: 13.0px; - + @@ -1703,7 +1703,7 @@ font-size: 13.0px; - + @@ -1732,7 +1732,7 @@ font-size: 13.0px; - + @@ -1747,117 +1747,117 @@ font-size: 13.0px; text { text-rendering: optimizeLegibility; } -#xXxprefixXx10 .plot-title { +#_sample_helper_static_id_prefix_10 .plot-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx10 .plot-subtitle { +#_sample_helper_static_id_prefix_10 .plot-subtitle { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx10 .plot-caption { +#_sample_helper_static_id_prefix_10 .plot-caption { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx10 .hyperlink-element { +#_sample_helper_static_id_prefix_10 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx10 .legend-title { +#_sample_helper_static_id_prefix_10 .legend-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx10 .legend-item { +#_sample_helper_static_id_prefix_10 .legend-item { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx10 .axis-title-x { +#_sample_helper_static_id_prefix_10 .axis-title-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx10 .axis-text-x { +#_sample_helper_static_id_prefix_10 .axis-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx12 .axis-tooltip-text-x { +#_sample_helper_static_id_prefix_12 .axis-tooltip-text-x { fill: #ffffff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx10 .axis-title-y { +#_sample_helper_static_id_prefix_10 .axis-title-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx10 .axis-text-y { +#_sample_helper_static_id_prefix_10 .axis-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx12 .axis-tooltip-text-y { +#_sample_helper_static_id_prefix_12 .axis-tooltip-text-y { fill: #ffffff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx10 .facet-strip-text-x { +#_sample_helper_static_id_prefix_10 .facet-strip-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx10 .facet-strip-text-y { +#_sample_helper_static_id_prefix_10 .facet-strip-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx12 .tooltip-text { +#_sample_helper_static_id_prefix_12 .tooltip-text { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx12 .tooltip-title { +#_sample_helper_static_id_prefix_12 .tooltip-title { fill: #474747; font-weight: bold; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx12 .tooltip-label { +#_sample_helper_static_id_prefix_12 .tooltip-label { fill: #474747; font-weight: bold; font-style: normal;font-family: sans-serif; @@ -1866,7 +1866,7 @@ font-size: 13.0px; } - + @@ -1983,7 +1983,7 @@ font-size: 13.0px; - + @@ -2229,7 +2229,7 @@ font-size: 13.0px; - + @@ -2256,7 +2256,7 @@ font-size: 13.0px; - + @@ -2271,117 +2271,117 @@ font-size: 13.0px; text { text-rendering: optimizeLegibility; } -#xXxprefixXx13 .plot-title { +#_sample_helper_static_id_prefix_13 .plot-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx13 .plot-subtitle { +#_sample_helper_static_id_prefix_13 .plot-subtitle { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx13 .plot-caption { +#_sample_helper_static_id_prefix_13 .plot-caption { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx13 .hyperlink-element { +#_sample_helper_static_id_prefix_13 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx13 .legend-title { +#_sample_helper_static_id_prefix_13 .legend-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx13 .legend-item { +#_sample_helper_static_id_prefix_13 .legend-item { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx13 .axis-title-x { +#_sample_helper_static_id_prefix_13 .axis-title-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx13 .axis-text-x { +#_sample_helper_static_id_prefix_13 .axis-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx15 .axis-tooltip-text-x { +#_sample_helper_static_id_prefix_15 .axis-tooltip-text-x { fill: #ffffff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx13 .axis-title-y { +#_sample_helper_static_id_prefix_13 .axis-title-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx13 .axis-text-y { +#_sample_helper_static_id_prefix_13 .axis-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx15 .axis-tooltip-text-y { +#_sample_helper_static_id_prefix_15 .axis-tooltip-text-y { fill: #ffffff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx13 .facet-strip-text-x { +#_sample_helper_static_id_prefix_13 .facet-strip-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx13 .facet-strip-text-y { +#_sample_helper_static_id_prefix_13 .facet-strip-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx15 .tooltip-text { +#_sample_helper_static_id_prefix_15 .tooltip-text { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx15 .tooltip-title { +#_sample_helper_static_id_prefix_15 .tooltip-title { fill: #474747; font-weight: bold; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx15 .tooltip-label { +#_sample_helper_static_id_prefix_15 .tooltip-label { fill: #474747; font-weight: bold; font-style: normal;font-family: sans-serif; @@ -2390,7 +2390,7 @@ font-size: 13.0px; } - + @@ -2503,7 +2503,7 @@ font-size: 13.0px; - + @@ -2749,7 +2749,7 @@ font-size: 13.0px; - + @@ -2776,7 +2776,7 @@ font-size: 13.0px; - + @@ -2791,117 +2791,117 @@ font-size: 13.0px; text { text-rendering: optimizeLegibility; } -#xXxprefixXx16 .plot-title { +#_sample_helper_static_id_prefix_16 .plot-title { fill: #0000ff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx16 .plot-subtitle { +#_sample_helper_static_id_prefix_16 .plot-subtitle { fill: #0000ff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx16 .plot-caption { +#_sample_helper_static_id_prefix_16 .plot-caption { fill: #0000ff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx16 .hyperlink-element { +#_sample_helper_static_id_prefix_16 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx16 .legend-title { +#_sample_helper_static_id_prefix_16 .legend-title { fill: #0000ff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx16 .legend-item { +#_sample_helper_static_id_prefix_16 .legend-item { fill: #0000ff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx16 .axis-title-x { +#_sample_helper_static_id_prefix_16 .axis-title-x { fill: #0000ff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx16 .axis-text-x { +#_sample_helper_static_id_prefix_16 .axis-text-x { fill: #0000ff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx18 .axis-tooltip-text-x { +#_sample_helper_static_id_prefix_18 .axis-tooltip-text-x { fill: #0000ff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx16 .axis-title-y { +#_sample_helper_static_id_prefix_16 .axis-title-y { fill: #0000ff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx16 .axis-text-y { +#_sample_helper_static_id_prefix_16 .axis-text-y { fill: #0000ff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx18 .axis-tooltip-text-y { +#_sample_helper_static_id_prefix_18 .axis-tooltip-text-y { fill: #0000ff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx16 .facet-strip-text-x { +#_sample_helper_static_id_prefix_16 .facet-strip-text-x { fill: #0000ff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx16 .facet-strip-text-y { +#_sample_helper_static_id_prefix_16 .facet-strip-text-y { fill: #0000ff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx18 .tooltip-text { +#_sample_helper_static_id_prefix_18 .tooltip-text { fill: #0000ff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx18 .tooltip-title { +#_sample_helper_static_id_prefix_18 .tooltip-title { fill: #0000ff; font-weight: bold; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx18 .tooltip-label { +#_sample_helper_static_id_prefix_18 .tooltip-label { fill: #0000ff; font-weight: bold; font-style: normal;font-family: sans-serif; @@ -2910,7 +2910,7 @@ font-size: 13.0px; } - + @@ -3051,7 +3051,7 @@ font-size: 13.0px; - + @@ -3297,7 +3297,7 @@ font-size: 13.0px; - + @@ -3326,7 +3326,7 @@ font-size: 13.0px; - + \ No newline at end of file diff --git a/docs/images/guides/quickStartGuide/experimentalLayoutPlotAllStyles_dark.svg b/docs/images/guides/quickStartGuide/experimentalLayoutPlotAllStyles_dark.svg index 92c646f8b..3af494aaa 100644 --- a/docs/images/guides/quickStartGuide/experimentalLayoutPlotAllStyles_dark.svg +++ b/docs/images/guides/quickStartGuide/experimentalLayoutPlotAllStyles_dark.svg @@ -10,54 +10,54 @@ text { text-rendering: optimizeLegibility; } -#xXxprefixXx0 .plot-title { +#_sample_helper_static_id_prefix_0 .plot-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; @@ -71,14 +71,14 @@ font-weight: normal; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; @@ -92,14 +92,14 @@ font-weight: normal; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; @@ -129,7 +129,7 @@ font-size: 13.0px; } - + @@ -145,117 +145,117 @@ font-size: 13.0px; text { text-rendering: optimizeLegibility; } -#xXxprefixXx1 .plot-title { +#_sample_helper_static_id_prefix_1 .plot-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx1 .plot-subtitle { +#_sample_helper_static_id_prefix_1 .plot-subtitle { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx1 .plot-caption { +#_sample_helper_static_id_prefix_1 .plot-caption { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx1 .hyperlink-element { +#_sample_helper_static_id_prefix_1 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx1 .legend-title { +#_sample_helper_static_id_prefix_1 .legend-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx1 .legend-item { +#_sample_helper_static_id_prefix_1 .legend-item { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx1 .axis-title-x { +#_sample_helper_static_id_prefix_1 .axis-title-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx1 .axis-text-x { +#_sample_helper_static_id_prefix_1 .axis-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx3 .axis-tooltip-text-x { +#_sample_helper_static_id_prefix_3 .axis-tooltip-text-x { fill: #303030; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx1 .axis-title-y { +#_sample_helper_static_id_prefix_1 .axis-title-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx1 .axis-text-y { +#_sample_helper_static_id_prefix_1 .axis-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx3 .axis-tooltip-text-y { +#_sample_helper_static_id_prefix_3 .axis-tooltip-text-y { fill: #303030; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx1 .facet-strip-text-x { +#_sample_helper_static_id_prefix_1 .facet-strip-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx1 .facet-strip-text-y { +#_sample_helper_static_id_prefix_1 .facet-strip-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx3 .tooltip-text { +#_sample_helper_static_id_prefix_3 .tooltip-text { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx3 .tooltip-title { +#_sample_helper_static_id_prefix_3 .tooltip-title { fill: #bbbbbb; font-weight: bold; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx3 .tooltip-label { +#_sample_helper_static_id_prefix_3 .tooltip-label { fill: #bbbbbb; font-weight: bold; font-style: normal;font-family: sans-serif; @@ -264,7 +264,7 @@ font-size: 13.0px; } - + @@ -367,7 +367,7 @@ font-size: 13.0px; - + @@ -613,7 +613,7 @@ font-size: 13.0px; - + @@ -640,7 +640,7 @@ font-size: 13.0px; - + @@ -655,117 +655,117 @@ font-size: 13.0px; text { text-rendering: optimizeLegibility; } -#xXxprefixXx4 .plot-title { +#_sample_helper_static_id_prefix_4 .plot-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx4 .plot-subtitle { +#_sample_helper_static_id_prefix_4 .plot-subtitle { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx4 .plot-caption { +#_sample_helper_static_id_prefix_4 .plot-caption { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx4 .hyperlink-element { +#_sample_helper_static_id_prefix_4 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx4 .legend-title { +#_sample_helper_static_id_prefix_4 .legend-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx4 .legend-item { +#_sample_helper_static_id_prefix_4 .legend-item { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx4 .axis-title-x { +#_sample_helper_static_id_prefix_4 .axis-title-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx4 .axis-text-x { +#_sample_helper_static_id_prefix_4 .axis-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx6 .axis-tooltip-text-x { +#_sample_helper_static_id_prefix_6 .axis-tooltip-text-x { fill: #303030; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx4 .axis-title-y { +#_sample_helper_static_id_prefix_4 .axis-title-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx4 .axis-text-y { +#_sample_helper_static_id_prefix_4 .axis-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx6 .axis-tooltip-text-y { +#_sample_helper_static_id_prefix_6 .axis-tooltip-text-y { fill: #303030; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx4 .facet-strip-text-x { +#_sample_helper_static_id_prefix_4 .facet-strip-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx4 .facet-strip-text-y { +#_sample_helper_static_id_prefix_4 .facet-strip-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx6 .tooltip-text { +#_sample_helper_static_id_prefix_6 .tooltip-text { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx6 .tooltip-title { +#_sample_helper_static_id_prefix_6 .tooltip-title { fill: #bbbbbb; font-weight: bold; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx6 .tooltip-label { +#_sample_helper_static_id_prefix_6 .tooltip-label { fill: #bbbbbb; font-weight: bold; font-style: normal;font-family: sans-serif; @@ -774,7 +774,7 @@ font-size: 13.0px; } - + @@ -911,7 +911,7 @@ font-size: 13.0px; - + @@ -1157,7 +1157,7 @@ font-size: 13.0px; - + @@ -1186,7 +1186,7 @@ font-size: 13.0px; - + @@ -1201,117 +1201,117 @@ font-size: 13.0px; text { text-rendering: optimizeLegibility; } -#xXxprefixXx7 .plot-title { +#_sample_helper_static_id_prefix_7 .plot-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx7 .plot-subtitle { +#_sample_helper_static_id_prefix_7 .plot-subtitle { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx7 .plot-caption { +#_sample_helper_static_id_prefix_7 .plot-caption { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx7 .hyperlink-element { +#_sample_helper_static_id_prefix_7 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx7 .legend-title { +#_sample_helper_static_id_prefix_7 .legend-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx7 .legend-item { +#_sample_helper_static_id_prefix_7 .legend-item { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx7 .axis-title-x { +#_sample_helper_static_id_prefix_7 .axis-title-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx7 .axis-text-x { +#_sample_helper_static_id_prefix_7 .axis-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx9 .axis-tooltip-text-x { +#_sample_helper_static_id_prefix_9 .axis-tooltip-text-x { fill: #303030; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx7 .axis-title-y { +#_sample_helper_static_id_prefix_7 .axis-title-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx7 .axis-text-y { +#_sample_helper_static_id_prefix_7 .axis-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx9 .axis-tooltip-text-y { +#_sample_helper_static_id_prefix_9 .axis-tooltip-text-y { fill: #303030; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx7 .facet-strip-text-x { +#_sample_helper_static_id_prefix_7 .facet-strip-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx7 .facet-strip-text-y { +#_sample_helper_static_id_prefix_7 .facet-strip-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx9 .tooltip-text { +#_sample_helper_static_id_prefix_9 .tooltip-text { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx9 .tooltip-title { +#_sample_helper_static_id_prefix_9 .tooltip-title { fill: #bbbbbb; font-weight: bold; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx9 .tooltip-label { +#_sample_helper_static_id_prefix_9 .tooltip-label { fill: #bbbbbb; font-weight: bold; font-style: normal;font-family: sans-serif; @@ -1320,7 +1320,7 @@ font-size: 13.0px; } - + @@ -1457,7 +1457,7 @@ font-size: 13.0px; - + @@ -1703,7 +1703,7 @@ font-size: 13.0px; - + @@ -1732,7 +1732,7 @@ font-size: 13.0px; - + @@ -1747,117 +1747,117 @@ font-size: 13.0px; text { text-rendering: optimizeLegibility; } -#xXxprefixXx10 .plot-title { +#_sample_helper_static_id_prefix_10 .plot-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx10 .plot-subtitle { +#_sample_helper_static_id_prefix_10 .plot-subtitle { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx10 .plot-caption { +#_sample_helper_static_id_prefix_10 .plot-caption { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx10 .hyperlink-element { +#_sample_helper_static_id_prefix_10 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx10 .legend-title { +#_sample_helper_static_id_prefix_10 .legend-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx10 .legend-item { +#_sample_helper_static_id_prefix_10 .legend-item { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx10 .axis-title-x { +#_sample_helper_static_id_prefix_10 .axis-title-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx10 .axis-text-x { +#_sample_helper_static_id_prefix_10 .axis-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx12 .axis-tooltip-text-x { +#_sample_helper_static_id_prefix_12 .axis-tooltip-text-x { fill: #303030; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx10 .axis-title-y { +#_sample_helper_static_id_prefix_10 .axis-title-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx10 .axis-text-y { +#_sample_helper_static_id_prefix_10 .axis-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx12 .axis-tooltip-text-y { +#_sample_helper_static_id_prefix_12 .axis-tooltip-text-y { fill: #303030; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx10 .facet-strip-text-x { +#_sample_helper_static_id_prefix_10 .facet-strip-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx10 .facet-strip-text-y { +#_sample_helper_static_id_prefix_10 .facet-strip-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx12 .tooltip-text { +#_sample_helper_static_id_prefix_12 .tooltip-text { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx12 .tooltip-title { +#_sample_helper_static_id_prefix_12 .tooltip-title { fill: #bbbbbb; font-weight: bold; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx12 .tooltip-label { +#_sample_helper_static_id_prefix_12 .tooltip-label { fill: #bbbbbb; font-weight: bold; font-style: normal;font-family: sans-serif; @@ -1866,7 +1866,7 @@ font-size: 13.0px; } - + @@ -1983,7 +1983,7 @@ font-size: 13.0px; - + @@ -2229,7 +2229,7 @@ font-size: 13.0px; - + @@ -2256,7 +2256,7 @@ font-size: 13.0px; - + @@ -2271,117 +2271,117 @@ font-size: 13.0px; text { text-rendering: optimizeLegibility; } -#xXxprefixXx13 .plot-title { +#_sample_helper_static_id_prefix_13 .plot-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx13 .plot-subtitle { +#_sample_helper_static_id_prefix_13 .plot-subtitle { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx13 .plot-caption { +#_sample_helper_static_id_prefix_13 .plot-caption { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx13 .hyperlink-element { +#_sample_helper_static_id_prefix_13 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx13 .legend-title { +#_sample_helper_static_id_prefix_13 .legend-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx13 .legend-item { +#_sample_helper_static_id_prefix_13 .legend-item { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx13 .axis-title-x { +#_sample_helper_static_id_prefix_13 .axis-title-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx13 .axis-text-x { +#_sample_helper_static_id_prefix_13 .axis-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx15 .axis-tooltip-text-x { +#_sample_helper_static_id_prefix_15 .axis-tooltip-text-x { fill: #303030; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx13 .axis-title-y { +#_sample_helper_static_id_prefix_13 .axis-title-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx13 .axis-text-y { +#_sample_helper_static_id_prefix_13 .axis-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx15 .axis-tooltip-text-y { +#_sample_helper_static_id_prefix_15 .axis-tooltip-text-y { fill: #303030; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx13 .facet-strip-text-x { +#_sample_helper_static_id_prefix_13 .facet-strip-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx13 .facet-strip-text-y { +#_sample_helper_static_id_prefix_13 .facet-strip-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx15 .tooltip-text { +#_sample_helper_static_id_prefix_15 .tooltip-text { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx15 .tooltip-title { +#_sample_helper_static_id_prefix_15 .tooltip-title { fill: #bbbbbb; font-weight: bold; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx15 .tooltip-label { +#_sample_helper_static_id_prefix_15 .tooltip-label { fill: #bbbbbb; font-weight: bold; font-style: normal;font-family: sans-serif; @@ -2390,7 +2390,7 @@ font-size: 13.0px; } - + @@ -2503,7 +2503,7 @@ font-size: 13.0px; - + @@ -2749,7 +2749,7 @@ font-size: 13.0px; - + @@ -2776,7 +2776,7 @@ font-size: 13.0px; - + @@ -2791,117 +2791,117 @@ font-size: 13.0px; text { text-rendering: optimizeLegibility; } -#xXxprefixXx16 .plot-title { +#_sample_helper_static_id_prefix_16 .plot-title { fill: #0000ff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx16 .plot-subtitle { +#_sample_helper_static_id_prefix_16 .plot-subtitle { fill: #0000ff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx16 .plot-caption { +#_sample_helper_static_id_prefix_16 .plot-caption { fill: #0000ff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx16 .hyperlink-element { +#_sample_helper_static_id_prefix_16 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx16 .legend-title { +#_sample_helper_static_id_prefix_16 .legend-title { fill: #0000ff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx16 .legend-item { +#_sample_helper_static_id_prefix_16 .legend-item { fill: #0000ff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx16 .axis-title-x { +#_sample_helper_static_id_prefix_16 .axis-title-x { fill: #0000ff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx16 .axis-text-x { +#_sample_helper_static_id_prefix_16 .axis-text-x { fill: #0000ff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx18 .axis-tooltip-text-x { +#_sample_helper_static_id_prefix_18 .axis-tooltip-text-x { fill: #0000ff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx16 .axis-title-y { +#_sample_helper_static_id_prefix_16 .axis-title-y { fill: #0000ff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx16 .axis-text-y { +#_sample_helper_static_id_prefix_16 .axis-text-y { fill: #0000ff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx18 .axis-tooltip-text-y { +#_sample_helper_static_id_prefix_18 .axis-tooltip-text-y { fill: #0000ff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx16 .facet-strip-text-x { +#_sample_helper_static_id_prefix_16 .facet-strip-text-x { fill: #0000ff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx16 .facet-strip-text-y { +#_sample_helper_static_id_prefix_16 .facet-strip-text-y { fill: #0000ff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx18 .tooltip-text { +#_sample_helper_static_id_prefix_18 .tooltip-text { fill: #0000ff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx18 .tooltip-title { +#_sample_helper_static_id_prefix_18 .tooltip-title { fill: #0000ff; font-weight: bold; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx18 .tooltip-label { +#_sample_helper_static_id_prefix_18 .tooltip-label { fill: #0000ff; font-weight: bold; font-style: normal;font-family: sans-serif; @@ -2910,7 +2910,7 @@ font-size: 13.0px; } - + @@ -3051,7 +3051,7 @@ font-size: 13.0px; - + @@ -3297,7 +3297,7 @@ font-size: 13.0px; - + @@ -3326,7 +3326,7 @@ font-size: 13.0px; - + \ No newline at end of file diff --git a/docs/images/guides/quickStartGuide/experimentalLayoutSimpleCustomStyle.svg b/docs/images/guides/quickStartGuide/experimentalLayoutSimpleCustomStyle.svg index 281f6abaf..33422072f 100644 --- a/docs/images/guides/quickStartGuide/experimentalLayoutSimpleCustomStyle.svg +++ b/docs/images/guides/quickStartGuide/experimentalLayoutSimpleCustomStyle.svg @@ -10,117 +10,117 @@ text { text-rendering: optimizeLegibility; } -#xXxprefixXx0 .plot-title { +#_sample_helper_static_id_prefix_0 .plot-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-x { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-x { fill: #ffffff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-y { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-y { fill: #ffffff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-text { +#_sample_helper_static_id_prefix_2 .tooltip-text { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-title { +#_sample_helper_static_id_prefix_2 .tooltip-title { fill: #474747; font-weight: bold; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-label { +#_sample_helper_static_id_prefix_2 .tooltip-label { fill: #474747; font-weight: bold; font-style: normal;font-family: sans-serif; @@ -129,7 +129,7 @@ font-size: 13.0px; } - + @@ -268,7 +268,7 @@ font-size: 13.0px; - + @@ -514,7 +514,7 @@ font-size: 13.0px; - + @@ -536,6 +536,6 @@ font-size: 13.0px; - + \ No newline at end of file diff --git a/docs/images/guides/quickStartGuide/experimentalLayoutSimpleCustomStyle_dark.svg b/docs/images/guides/quickStartGuide/experimentalLayoutSimpleCustomStyle_dark.svg index 69fe0e6a5..6e1e02737 100644 --- a/docs/images/guides/quickStartGuide/experimentalLayoutSimpleCustomStyle_dark.svg +++ b/docs/images/guides/quickStartGuide/experimentalLayoutSimpleCustomStyle_dark.svg @@ -10,117 +10,117 @@ text { text-rendering: optimizeLegibility; } -#xXxprefixXx0 .plot-title { +#_sample_helper_static_id_prefix_0 .plot-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-x { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-x { fill: #303030; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-y { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-y { fill: #303030; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-text { +#_sample_helper_static_id_prefix_2 .tooltip-text { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-title { +#_sample_helper_static_id_prefix_2 .tooltip-title { fill: #bbbbbb; font-weight: bold; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-label { +#_sample_helper_static_id_prefix_2 .tooltip-label { fill: #bbbbbb; font-weight: bold; font-style: normal;font-family: sans-serif; @@ -129,7 +129,7 @@ font-size: 13.0px; } - + @@ -268,7 +268,7 @@ font-size: 13.0px; - + @@ -514,7 +514,7 @@ font-size: 13.0px; - + @@ -536,6 +536,6 @@ font-size: 13.0px; - + \ No newline at end of file diff --git a/docs/images/guides/quickStartGuide/experimentalLayoutTitleSubtitleCapSize.svg b/docs/images/guides/quickStartGuide/experimentalLayoutTitleSubtitleCapSize.svg index c476fa840..c201d9d0f 100644 --- a/docs/images/guides/quickStartGuide/experimentalLayoutTitleSubtitleCapSize.svg +++ b/docs/images/guides/quickStartGuide/experimentalLayoutTitleSubtitleCapSize.svg @@ -10,117 +10,117 @@ text { text-rendering: optimizeLegibility; } -#xXxprefixXx0 .plot-title { +#_sample_helper_static_id_prefix_0 .plot-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-x { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-x { fill: #ffffff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-y { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-y { fill: #ffffff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-text { +#_sample_helper_static_id_prefix_2 .tooltip-text { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-title { +#_sample_helper_static_id_prefix_2 .tooltip-title { fill: #474747; font-weight: bold; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-label { +#_sample_helper_static_id_prefix_2 .tooltip-label { fill: #474747; font-weight: bold; font-style: normal;font-family: sans-serif; @@ -129,7 +129,7 @@ font-size: 13.0px; } - + @@ -169,7 +169,7 @@ font-size: 13.0px; - + @@ -415,7 +415,7 @@ font-size: 13.0px; - + @@ -564,6 +564,6 @@ font-size: 13.0px; - + \ No newline at end of file diff --git a/docs/images/guides/quickStartGuide/experimentalLayoutTitleSubtitleCapSize_dark.svg b/docs/images/guides/quickStartGuide/experimentalLayoutTitleSubtitleCapSize_dark.svg index dcde8f4e3..d92c8b7ef 100644 --- a/docs/images/guides/quickStartGuide/experimentalLayoutTitleSubtitleCapSize_dark.svg +++ b/docs/images/guides/quickStartGuide/experimentalLayoutTitleSubtitleCapSize_dark.svg @@ -10,117 +10,117 @@ text { text-rendering: optimizeLegibility; } -#xXxprefixXx0 .plot-title { +#_sample_helper_static_id_prefix_0 .plot-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-x { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-x { fill: #303030; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-y { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-y { fill: #303030; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-text { +#_sample_helper_static_id_prefix_2 .tooltip-text { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-title { +#_sample_helper_static_id_prefix_2 .tooltip-title { fill: #bbbbbb; font-weight: bold; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-label { +#_sample_helper_static_id_prefix_2 .tooltip-label { fill: #bbbbbb; font-weight: bold; font-style: normal;font-family: sans-serif; @@ -129,7 +129,7 @@ font-size: 13.0px; } - + @@ -278,7 +278,7 @@ font-size: 13.0px; - + @@ -524,7 +524,7 @@ font-size: 13.0px; - + @@ -564,6 +564,6 @@ font-size: 13.0px; - + \ No newline at end of file diff --git a/docs/images/guides/quickStartGuide/experimentalLayoutWithClassicStyle.svg b/docs/images/guides/quickStartGuide/experimentalLayoutWithClassicStyle.svg index a6833b7f9..878a690aa 100644 --- a/docs/images/guides/quickStartGuide/experimentalLayoutWithClassicStyle.svg +++ b/docs/images/guides/quickStartGuide/experimentalLayoutWithClassicStyle.svg @@ -10,117 +10,117 @@ text { text-rendering: optimizeLegibility; } -#xXxprefixXx0 .plot-title { +#_sample_helper_static_id_prefix_0 .plot-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-x { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-x { fill: #ffffff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-y { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-y { fill: #ffffff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-text { +#_sample_helper_static_id_prefix_2 .tooltip-text { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-title { +#_sample_helper_static_id_prefix_2 .tooltip-title { fill: #474747; font-weight: bold; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-label { +#_sample_helper_static_id_prefix_2 .tooltip-label { fill: #474747; font-weight: bold; font-style: normal;font-family: sans-serif; @@ -129,7 +129,7 @@ font-size: 13.0px; } - + @@ -268,7 +268,7 @@ font-size: 13.0px; - + @@ -514,7 +514,7 @@ font-size: 13.0px; - + @@ -536,6 +536,6 @@ font-size: 13.0px; - + \ No newline at end of file diff --git a/docs/images/guides/quickStartGuide/experimentalLayoutWithClassicStyle_dark.svg b/docs/images/guides/quickStartGuide/experimentalLayoutWithClassicStyle_dark.svg index 963e605fd..cdc41bd60 100644 --- a/docs/images/guides/quickStartGuide/experimentalLayoutWithClassicStyle_dark.svg +++ b/docs/images/guides/quickStartGuide/experimentalLayoutWithClassicStyle_dark.svg @@ -10,117 +10,117 @@ text { text-rendering: optimizeLegibility; } -#xXxprefixXx0 .plot-title { +#_sample_helper_static_id_prefix_0 .plot-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-x { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-x { fill: #303030; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-y { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-y { fill: #303030; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-text { +#_sample_helper_static_id_prefix_2 .tooltip-text { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-title { +#_sample_helper_static_id_prefix_2 .tooltip-title { fill: #bbbbbb; font-weight: bold; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-label { +#_sample_helper_static_id_prefix_2 .tooltip-label { fill: #bbbbbb; font-weight: bold; font-style: normal;font-family: sans-serif; @@ -129,7 +129,7 @@ font-size: 13.0px; } - + @@ -268,7 +268,7 @@ font-size: 13.0px; - + @@ -514,7 +514,7 @@ font-size: 13.0px; - + @@ -536,6 +536,6 @@ font-size: 13.0px; - + \ No newline at end of file diff --git a/docs/images/guides/quickStartGuide/experimentalMultiplotFacetingGrid.svg b/docs/images/guides/quickStartGuide/experimentalMultiplotFacetingGrid.svg index ea2c5809c..e87006ef0 100644 --- a/docs/images/guides/quickStartGuide/experimentalMultiplotFacetingGrid.svg +++ b/docs/images/guides/quickStartGuide/experimentalMultiplotFacetingGrid.svg @@ -10,117 +10,117 @@ text { text-rendering: optimizeLegibility; } -#xXxprefixXx0 .plot-title { +#_sample_helper_static_id_prefix_0 .plot-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx13 .axis-tooltip-text-x { +#_sample_helper_static_id_prefix_13 .axis-tooltip-text-x { fill: #ffffff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx13 .axis-tooltip-text-y { +#_sample_helper_static_id_prefix_13 .axis-tooltip-text-y { fill: #ffffff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx13 .tooltip-text { +#_sample_helper_static_id_prefix_13 .tooltip-text { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx13 .tooltip-title { +#_sample_helper_static_id_prefix_13 .tooltip-title { fill: #474747; font-weight: bold; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx13 .tooltip-label { +#_sample_helper_static_id_prefix_13 .tooltip-label { fill: #474747; font-weight: bold; font-style: normal;font-family: sans-serif; @@ -129,7 +129,7 @@ font-size: 13.0px; } - + @@ -151,7 +151,7 @@ font-size: 13.0px; - + @@ -186,7 +186,7 @@ font-size: 13.0px; - + @@ -230,7 +230,7 @@ font-size: 13.0px; - + @@ -299,7 +299,7 @@ font-size: 13.0px; - + @@ -336,7 +336,7 @@ font-size: 13.0px; - + @@ -348,7 +348,7 @@ font-size: 13.0px; - + @@ -390,7 +390,7 @@ font-size: 13.0px; - + @@ -402,7 +402,7 @@ font-size: 13.0px; - + @@ -441,7 +441,7 @@ font-size: 13.0px; - + @@ -457,7 +457,7 @@ font-size: 13.0px; - + @@ -489,7 +489,7 @@ font-size: 13.0px; - + @@ -501,7 +501,7 @@ font-size: 13.0px; - + @@ -538,7 +538,7 @@ font-size: 13.0px; - + @@ -582,7 +582,7 @@ font-size: 13.0px; - + @@ -621,7 +621,7 @@ font-size: 13.0px; - + @@ -676,7 +676,7 @@ font-size: 13.0px; - + @@ -708,7 +708,7 @@ font-size: 13.0px; - + @@ -724,7 +724,7 @@ font-size: 13.0px; - + @@ -761,7 +761,7 @@ font-size: 13.0px; - + @@ -821,7 +821,7 @@ font-size: 13.0px; - + @@ -889,7 +889,7 @@ font-size: 13.0px; - + @@ -902,7 +902,7 @@ font-size: 13.0px; - + @@ -963,7 +963,7 @@ font-size: 13.0px; - + @@ -996,7 +996,7 @@ font-size: 13.0px; - + @@ -1226,6 +1226,6 @@ font-size: 13.0px; - + \ No newline at end of file diff --git a/docs/images/guides/quickStartGuide/experimentalMultiplotFacetingGridX.svg b/docs/images/guides/quickStartGuide/experimentalMultiplotFacetingGridX.svg index f99a0187a..835dc1063 100644 --- a/docs/images/guides/quickStartGuide/experimentalMultiplotFacetingGridX.svg +++ b/docs/images/guides/quickStartGuide/experimentalMultiplotFacetingGridX.svg @@ -10,117 +10,117 @@ text { text-rendering: optimizeLegibility; } -#xXxprefixXx0 .plot-title { +#_sample_helper_static_id_prefix_0 .plot-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx4 .axis-tooltip-text-x { +#_sample_helper_static_id_prefix_4 .axis-tooltip-text-x { fill: #ffffff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx4 .axis-tooltip-text-y { +#_sample_helper_static_id_prefix_4 .axis-tooltip-text-y { fill: #ffffff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx4 .tooltip-text { +#_sample_helper_static_id_prefix_4 .tooltip-text { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx4 .tooltip-title { +#_sample_helper_static_id_prefix_4 .tooltip-title { fill: #474747; font-weight: bold; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx4 .tooltip-label { +#_sample_helper_static_id_prefix_4 .tooltip-label { fill: #474747; font-weight: bold; font-style: normal;font-family: sans-serif; @@ -129,7 +129,7 @@ font-size: 13.0px; } - + @@ -161,7 +161,7 @@ font-size: 13.0px; - + @@ -276,7 +276,7 @@ font-size: 13.0px; - + @@ -392,7 +392,7 @@ font-size: 13.0px; - + @@ -509,7 +509,7 @@ font-size: 13.0px; - + @@ -574,7 +574,7 @@ font-size: 13.0px; - + @@ -611,7 +611,7 @@ font-size: 13.0px; - + @@ -832,6 +832,6 @@ font-size: 13.0px; - + \ No newline at end of file diff --git a/docs/images/guides/quickStartGuide/experimentalMultiplotFacetingGridX_dark.svg b/docs/images/guides/quickStartGuide/experimentalMultiplotFacetingGridX_dark.svg index 2409ddc34..779164b46 100644 --- a/docs/images/guides/quickStartGuide/experimentalMultiplotFacetingGridX_dark.svg +++ b/docs/images/guides/quickStartGuide/experimentalMultiplotFacetingGridX_dark.svg @@ -10,117 +10,117 @@ text { text-rendering: optimizeLegibility; } -#xXxprefixXx0 .plot-title { +#_sample_helper_static_id_prefix_0 .plot-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx4 .axis-tooltip-text-x { +#_sample_helper_static_id_prefix_4 .axis-tooltip-text-x { fill: #303030; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx4 .axis-tooltip-text-y { +#_sample_helper_static_id_prefix_4 .axis-tooltip-text-y { fill: #303030; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx4 .tooltip-text { +#_sample_helper_static_id_prefix_4 .tooltip-text { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx4 .tooltip-title { +#_sample_helper_static_id_prefix_4 .tooltip-title { fill: #bbbbbb; font-weight: bold; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx4 .tooltip-label { +#_sample_helper_static_id_prefix_4 .tooltip-label { fill: #bbbbbb; font-weight: bold; font-style: normal;font-family: sans-serif; @@ -129,7 +129,7 @@ font-size: 13.0px; } - + @@ -236,7 +236,7 @@ font-size: 13.0px; - + @@ -351,7 +351,7 @@ font-size: 13.0px; - + @@ -416,7 +416,7 @@ font-size: 13.0px; - + @@ -533,7 +533,7 @@ font-size: 13.0px; - + @@ -598,7 +598,7 @@ font-size: 13.0px; - + @@ -635,7 +635,7 @@ font-size: 13.0px; - + @@ -832,6 +832,6 @@ font-size: 13.0px; - + \ No newline at end of file diff --git a/docs/images/guides/quickStartGuide/experimentalMultiplotFacetingGridY.svg b/docs/images/guides/quickStartGuide/experimentalMultiplotFacetingGridY.svg index 4d44d8d08..04ec744df 100644 --- a/docs/images/guides/quickStartGuide/experimentalMultiplotFacetingGridY.svg +++ b/docs/images/guides/quickStartGuide/experimentalMultiplotFacetingGridY.svg @@ -10,117 +10,117 @@ text { text-rendering: optimizeLegibility; } -#xXxprefixXx0 .plot-title { +#_sample_helper_static_id_prefix_0 .plot-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx5 .axis-tooltip-text-x { +#_sample_helper_static_id_prefix_5 .axis-tooltip-text-x { fill: #ffffff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx5 .axis-tooltip-text-y { +#_sample_helper_static_id_prefix_5 .axis-tooltip-text-y { fill: #ffffff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx5 .tooltip-text { +#_sample_helper_static_id_prefix_5 .tooltip-text { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx5 .tooltip-title { +#_sample_helper_static_id_prefix_5 .tooltip-title { fill: #474747; font-weight: bold; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx5 .tooltip-label { +#_sample_helper_static_id_prefix_5 .tooltip-label { fill: #474747; font-weight: bold; font-style: normal;font-family: sans-serif; @@ -129,7 +129,7 @@ font-size: 13.0px; } - + @@ -157,7 +157,7 @@ font-size: 13.0px; - + @@ -249,7 +249,7 @@ font-size: 13.0px; - + @@ -299,7 +299,7 @@ font-size: 13.0px; - + @@ -315,7 +315,7 @@ font-size: 13.0px; - + @@ -365,7 +365,7 @@ font-size: 13.0px; - + @@ -456,7 +456,7 @@ font-size: 13.0px; - + @@ -506,7 +506,7 @@ font-size: 13.0px; - + @@ -588,7 +588,7 @@ font-size: 13.0px; - + @@ -852,6 +852,6 @@ font-size: 13.0px; - + \ No newline at end of file diff --git a/docs/images/guides/quickStartGuide/experimentalMultiplotFacetingGridY_dark.svg b/docs/images/guides/quickStartGuide/experimentalMultiplotFacetingGridY_dark.svg index c95e12836..45d3e3df3 100644 --- a/docs/images/guides/quickStartGuide/experimentalMultiplotFacetingGridY_dark.svg +++ b/docs/images/guides/quickStartGuide/experimentalMultiplotFacetingGridY_dark.svg @@ -10,117 +10,117 @@ text { text-rendering: optimizeLegibility; } -#xXxprefixXx0 .plot-title { +#_sample_helper_static_id_prefix_0 .plot-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx5 .axis-tooltip-text-x { +#_sample_helper_static_id_prefix_5 .axis-tooltip-text-x { fill: #303030; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx5 .axis-tooltip-text-y { +#_sample_helper_static_id_prefix_5 .axis-tooltip-text-y { fill: #303030; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx5 .tooltip-text { +#_sample_helper_static_id_prefix_5 .tooltip-text { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx5 .tooltip-title { +#_sample_helper_static_id_prefix_5 .tooltip-title { fill: #bbbbbb; font-weight: bold; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx5 .tooltip-label { +#_sample_helper_static_id_prefix_5 .tooltip-label { fill: #bbbbbb; font-weight: bold; font-style: normal;font-family: sans-serif; @@ -129,7 +129,7 @@ font-size: 13.0px; } - + @@ -168,7 +168,7 @@ font-size: 13.0px; - + @@ -260,7 +260,7 @@ font-size: 13.0px; - + @@ -310,7 +310,7 @@ font-size: 13.0px; - + @@ -326,7 +326,7 @@ font-size: 13.0px; - + @@ -376,7 +376,7 @@ font-size: 13.0px; - + @@ -467,7 +467,7 @@ font-size: 13.0px; - + @@ -573,7 +573,7 @@ font-size: 13.0px; - + @@ -655,7 +655,7 @@ font-size: 13.0px; - + @@ -852,6 +852,6 @@ font-size: 13.0px; - + \ No newline at end of file diff --git a/docs/images/guides/quickStartGuide/experimentalMultiplotFacetingGrid_dark.svg b/docs/images/guides/quickStartGuide/experimentalMultiplotFacetingGrid_dark.svg index 6a91b47e6..57b171bc7 100644 --- a/docs/images/guides/quickStartGuide/experimentalMultiplotFacetingGrid_dark.svg +++ b/docs/images/guides/quickStartGuide/experimentalMultiplotFacetingGrid_dark.svg @@ -10,117 +10,117 @@ text { text-rendering: optimizeLegibility; } -#xXxprefixXx0 .plot-title { +#_sample_helper_static_id_prefix_0 .plot-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx13 .axis-tooltip-text-x { +#_sample_helper_static_id_prefix_13 .axis-tooltip-text-x { fill: #303030; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx13 .axis-tooltip-text-y { +#_sample_helper_static_id_prefix_13 .axis-tooltip-text-y { fill: #303030; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx13 .tooltip-text { +#_sample_helper_static_id_prefix_13 .tooltip-text { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx13 .tooltip-title { +#_sample_helper_static_id_prefix_13 .tooltip-title { fill: #bbbbbb; font-weight: bold; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx13 .tooltip-label { +#_sample_helper_static_id_prefix_13 .tooltip-label { fill: #bbbbbb; font-weight: bold; font-style: normal;font-family: sans-serif; @@ -129,7 +129,7 @@ font-size: 13.0px; } - + @@ -162,7 +162,7 @@ font-size: 13.0px; - + @@ -197,7 +197,7 @@ font-size: 13.0px; - + @@ -234,7 +234,7 @@ font-size: 13.0px; - + @@ -303,7 +303,7 @@ font-size: 13.0px; - + @@ -340,7 +340,7 @@ font-size: 13.0px; - + @@ -352,7 +352,7 @@ font-size: 13.0px; - + @@ -401,7 +401,7 @@ font-size: 13.0px; - + @@ -413,7 +413,7 @@ font-size: 13.0px; - + @@ -445,7 +445,7 @@ font-size: 13.0px; - + @@ -461,7 +461,7 @@ font-size: 13.0px; - + @@ -493,7 +493,7 @@ font-size: 13.0px; - + @@ -505,7 +505,7 @@ font-size: 13.0px; - + @@ -549,7 +549,7 @@ font-size: 13.0px; - + @@ -593,7 +593,7 @@ font-size: 13.0px; - + @@ -625,7 +625,7 @@ font-size: 13.0px; - + @@ -680,7 +680,7 @@ font-size: 13.0px; - + @@ -712,7 +712,7 @@ font-size: 13.0px; - + @@ -728,7 +728,7 @@ font-size: 13.0px; - + @@ -801,7 +801,7 @@ font-size: 13.0px; - + @@ -861,7 +861,7 @@ font-size: 13.0px; - + @@ -922,7 +922,7 @@ font-size: 13.0px; - + @@ -935,7 +935,7 @@ font-size: 13.0px; - + @@ -996,7 +996,7 @@ font-size: 13.0px; - + @@ -1029,7 +1029,7 @@ font-size: 13.0px; - + @@ -1226,6 +1226,6 @@ font-size: 13.0px; - + \ No newline at end of file diff --git a/docs/images/guides/quickStartGuide/experimentalMultiplotFacetingWrap.svg b/docs/images/guides/quickStartGuide/experimentalMultiplotFacetingWrap.svg index f087df974..1c30733cc 100644 --- a/docs/images/guides/quickStartGuide/experimentalMultiplotFacetingWrap.svg +++ b/docs/images/guides/quickStartGuide/experimentalMultiplotFacetingWrap.svg @@ -10,117 +10,117 @@ text { text-rendering: optimizeLegibility; } -#xXxprefixXx0 .plot-title { +#_sample_helper_static_id_prefix_0 .plot-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx10 .axis-tooltip-text-x { +#_sample_helper_static_id_prefix_10 .axis-tooltip-text-x { fill: #ffffff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx10 .axis-tooltip-text-y { +#_sample_helper_static_id_prefix_10 .axis-tooltip-text-y { fill: #ffffff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx10 .tooltip-text { +#_sample_helper_static_id_prefix_10 .tooltip-text { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx10 .tooltip-title { +#_sample_helper_static_id_prefix_10 .tooltip-title { fill: #474747; font-weight: bold; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx10 .tooltip-label { +#_sample_helper_static_id_prefix_10 .tooltip-label { fill: #474747; font-weight: bold; font-style: normal;font-family: sans-serif; @@ -129,7 +129,7 @@ font-size: 13.0px; } - + @@ -151,7 +151,7 @@ font-size: 13.0px; - + @@ -211,7 +211,7 @@ font-size: 13.0px; - + @@ -289,7 +289,7 @@ font-size: 13.0px; - + @@ -333,7 +333,7 @@ font-size: 13.0px; - + @@ -409,7 +409,7 @@ font-size: 13.0px; - + @@ -444,7 +444,7 @@ font-size: 13.0px; - + @@ -511,7 +511,7 @@ font-size: 13.0px; - + @@ -524,7 +524,7 @@ font-size: 13.0px; - + @@ -591,7 +591,7 @@ font-size: 13.0px; - + @@ -646,7 +646,7 @@ font-size: 13.0px; - + @@ -715,7 +715,7 @@ font-size: 13.0px; - + @@ -731,7 +731,7 @@ font-size: 13.0px; - + @@ -807,7 +807,7 @@ font-size: 13.0px; - + @@ -876,7 +876,7 @@ font-size: 13.0px; - + @@ -945,7 +945,7 @@ font-size: 13.0px; - + @@ -978,7 +978,7 @@ font-size: 13.0px; - + @@ -1056,7 +1056,7 @@ font-size: 13.0px; - + @@ -1072,7 +1072,7 @@ font-size: 13.0px; - + @@ -1314,6 +1314,6 @@ font-size: 13.0px; - + \ No newline at end of file diff --git a/docs/images/guides/quickStartGuide/experimentalMultiplotFacetingWrap_dark.svg b/docs/images/guides/quickStartGuide/experimentalMultiplotFacetingWrap_dark.svg index 0a03473fc..8b5ac8a11 100644 --- a/docs/images/guides/quickStartGuide/experimentalMultiplotFacetingWrap_dark.svg +++ b/docs/images/guides/quickStartGuide/experimentalMultiplotFacetingWrap_dark.svg @@ -10,117 +10,117 @@ text { text-rendering: optimizeLegibility; } -#xXxprefixXx0 .plot-title { +#_sample_helper_static_id_prefix_0 .plot-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx10 .axis-tooltip-text-x { +#_sample_helper_static_id_prefix_10 .axis-tooltip-text-x { fill: #303030; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx10 .axis-tooltip-text-y { +#_sample_helper_static_id_prefix_10 .axis-tooltip-text-y { fill: #303030; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx10 .tooltip-text { +#_sample_helper_static_id_prefix_10 .tooltip-text { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx10 .tooltip-title { +#_sample_helper_static_id_prefix_10 .tooltip-title { fill: #bbbbbb; font-weight: bold; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx10 .tooltip-label { +#_sample_helper_static_id_prefix_10 .tooltip-label { fill: #bbbbbb; font-weight: bold; font-style: normal;font-family: sans-serif; @@ -129,7 +129,7 @@ font-size: 13.0px; } - + @@ -191,7 +191,7 @@ font-size: 13.0px; - + @@ -251,7 +251,7 @@ font-size: 13.0px; - + @@ -329,7 +329,7 @@ font-size: 13.0px; - + @@ -373,7 +373,7 @@ font-size: 13.0px; - + @@ -440,7 +440,7 @@ font-size: 13.0px; - + @@ -475,7 +475,7 @@ font-size: 13.0px; - + @@ -542,7 +542,7 @@ font-size: 13.0px; - + @@ -555,7 +555,7 @@ font-size: 13.0px; - + @@ -622,7 +622,7 @@ font-size: 13.0px; - + @@ -677,7 +677,7 @@ font-size: 13.0px; - + @@ -755,7 +755,7 @@ font-size: 13.0px; - + @@ -771,7 +771,7 @@ font-size: 13.0px; - + @@ -838,7 +838,7 @@ font-size: 13.0px; - + @@ -907,7 +907,7 @@ font-size: 13.0px; - + @@ -985,7 +985,7 @@ font-size: 13.0px; - + @@ -1018,7 +1018,7 @@ font-size: 13.0px; - + @@ -1096,7 +1096,7 @@ font-size: 13.0px; - + @@ -1112,7 +1112,7 @@ font-size: 13.0px; - + @@ -1314,6 +1314,6 @@ font-size: 13.0px; - + \ No newline at end of file diff --git a/docs/images/guides/quickStartGuide/experimentalMultiplotPlotBunch.svg b/docs/images/guides/quickStartGuide/experimentalMultiplotPlotBunch.svg index 72bc2aa83..8d7fdb705 100644 --- a/docs/images/guides/quickStartGuide/experimentalMultiplotPlotBunch.svg +++ b/docs/images/guides/quickStartGuide/experimentalMultiplotPlotBunch.svg @@ -10,54 +10,54 @@ text { text-rendering: optimizeLegibility; } -#xXxprefixXx0 .plot-title { +#_sample_helper_static_id_prefix_0 .plot-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; @@ -71,14 +71,14 @@ font-weight: normal; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; @@ -92,14 +92,14 @@ font-weight: normal; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; @@ -129,7 +129,7 @@ font-size: 13.0px; } - + @@ -145,117 +145,117 @@ font-size: 13.0px; text { text-rendering: optimizeLegibility; } -#xXxprefixXx1 .plot-title { +#_sample_helper_static_id_prefix_1 .plot-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx1 .plot-subtitle { +#_sample_helper_static_id_prefix_1 .plot-subtitle { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx1 .plot-caption { +#_sample_helper_static_id_prefix_1 .plot-caption { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx1 .hyperlink-element { +#_sample_helper_static_id_prefix_1 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx1 .legend-title { +#_sample_helper_static_id_prefix_1 .legend-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx1 .legend-item { +#_sample_helper_static_id_prefix_1 .legend-item { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx1 .axis-title-x { +#_sample_helper_static_id_prefix_1 .axis-title-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx1 .axis-text-x { +#_sample_helper_static_id_prefix_1 .axis-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx3 .axis-tooltip-text-x { +#_sample_helper_static_id_prefix_3 .axis-tooltip-text-x { fill: #ffffff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx1 .axis-title-y { +#_sample_helper_static_id_prefix_1 .axis-title-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx1 .axis-text-y { +#_sample_helper_static_id_prefix_1 .axis-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx3 .axis-tooltip-text-y { +#_sample_helper_static_id_prefix_3 .axis-tooltip-text-y { fill: #ffffff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx1 .facet-strip-text-x { +#_sample_helper_static_id_prefix_1 .facet-strip-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx1 .facet-strip-text-y { +#_sample_helper_static_id_prefix_1 .facet-strip-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx3 .tooltip-text { +#_sample_helper_static_id_prefix_3 .tooltip-text { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx3 .tooltip-title { +#_sample_helper_static_id_prefix_3 .tooltip-title { fill: #474747; font-weight: bold; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx3 .tooltip-label { +#_sample_helper_static_id_prefix_3 .tooltip-label { fill: #474747; font-weight: bold; font-style: normal;font-family: sans-serif; @@ -264,7 +264,7 @@ font-size: 13.0px; } - + @@ -290,7 +290,7 @@ font-size: 13.0px; - + @@ -304,7 +304,7 @@ font-size: 13.0px; - + @@ -380,7 +380,7 @@ font-size: 13.0px; - + @@ -395,117 +395,117 @@ font-size: 13.0px; text { text-rendering: optimizeLegibility; } -#xXxprefixXx4 .plot-title { +#_sample_helper_static_id_prefix_4 .plot-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx4 .plot-subtitle { +#_sample_helper_static_id_prefix_4 .plot-subtitle { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx4 .plot-caption { +#_sample_helper_static_id_prefix_4 .plot-caption { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx4 .hyperlink-element { +#_sample_helper_static_id_prefix_4 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx4 .legend-title { +#_sample_helper_static_id_prefix_4 .legend-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx4 .legend-item { +#_sample_helper_static_id_prefix_4 .legend-item { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx4 .axis-title-x { +#_sample_helper_static_id_prefix_4 .axis-title-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx4 .axis-text-x { +#_sample_helper_static_id_prefix_4 .axis-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx6 .axis-tooltip-text-x { +#_sample_helper_static_id_prefix_6 .axis-tooltip-text-x { fill: #ffffff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx4 .axis-title-y { +#_sample_helper_static_id_prefix_4 .axis-title-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx4 .axis-text-y { +#_sample_helper_static_id_prefix_4 .axis-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx6 .axis-tooltip-text-y { +#_sample_helper_static_id_prefix_6 .axis-tooltip-text-y { fill: #ffffff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx4 .facet-strip-text-x { +#_sample_helper_static_id_prefix_4 .facet-strip-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx4 .facet-strip-text-y { +#_sample_helper_static_id_prefix_4 .facet-strip-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx6 .tooltip-text { +#_sample_helper_static_id_prefix_6 .tooltip-text { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx6 .tooltip-title { +#_sample_helper_static_id_prefix_6 .tooltip-title { fill: #474747; font-weight: bold; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx6 .tooltip-label { +#_sample_helper_static_id_prefix_6 .tooltip-label { fill: #474747; font-weight: bold; font-style: normal;font-family: sans-serif; @@ -514,7 +514,7 @@ font-size: 13.0px; } - + @@ -540,7 +540,7 @@ font-size: 13.0px; - + @@ -566,7 +566,7 @@ font-size: 13.0px; - + @@ -715,7 +715,7 @@ font-size: 13.0px; - + @@ -730,117 +730,117 @@ font-size: 13.0px; text { text-rendering: optimizeLegibility; } -#xXxprefixXx7 .plot-title { +#_sample_helper_static_id_prefix_7 .plot-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx7 .plot-subtitle { +#_sample_helper_static_id_prefix_7 .plot-subtitle { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx7 .plot-caption { +#_sample_helper_static_id_prefix_7 .plot-caption { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx7 .hyperlink-element { +#_sample_helper_static_id_prefix_7 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx7 .legend-title { +#_sample_helper_static_id_prefix_7 .legend-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx7 .legend-item { +#_sample_helper_static_id_prefix_7 .legend-item { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx7 .axis-title-x { +#_sample_helper_static_id_prefix_7 .axis-title-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx7 .axis-text-x { +#_sample_helper_static_id_prefix_7 .axis-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx9 .axis-tooltip-text-x { +#_sample_helper_static_id_prefix_9 .axis-tooltip-text-x { fill: #ffffff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx7 .axis-title-y { +#_sample_helper_static_id_prefix_7 .axis-title-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx7 .axis-text-y { +#_sample_helper_static_id_prefix_7 .axis-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx9 .axis-tooltip-text-y { +#_sample_helper_static_id_prefix_9 .axis-tooltip-text-y { fill: #ffffff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx7 .facet-strip-text-x { +#_sample_helper_static_id_prefix_7 .facet-strip-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx7 .facet-strip-text-y { +#_sample_helper_static_id_prefix_7 .facet-strip-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx9 .tooltip-text { +#_sample_helper_static_id_prefix_9 .tooltip-text { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx9 .tooltip-title { +#_sample_helper_static_id_prefix_9 .tooltip-title { fill: #474747; font-weight: bold; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx9 .tooltip-label { +#_sample_helper_static_id_prefix_9 .tooltip-label { fill: #474747; font-weight: bold; font-style: normal;font-family: sans-serif; @@ -849,7 +849,7 @@ font-size: 13.0px; } - + @@ -899,7 +899,7 @@ font-size: 13.0px; - + @@ -1144,7 +1144,7 @@ font-size: 13.0px; - + @@ -1444,7 +1444,7 @@ font-size: 13.0px; - + \ No newline at end of file diff --git a/docs/images/guides/quickStartGuide/experimentalMultiplotPlotBunch_dark.svg b/docs/images/guides/quickStartGuide/experimentalMultiplotPlotBunch_dark.svg index 5f1683bee..e018016cc 100644 --- a/docs/images/guides/quickStartGuide/experimentalMultiplotPlotBunch_dark.svg +++ b/docs/images/guides/quickStartGuide/experimentalMultiplotPlotBunch_dark.svg @@ -10,54 +10,54 @@ text { text-rendering: optimizeLegibility; } -#xXxprefixXx0 .plot-title { +#_sample_helper_static_id_prefix_0 .plot-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; @@ -71,14 +71,14 @@ font-weight: normal; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; @@ -92,14 +92,14 @@ font-weight: normal; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; @@ -129,7 +129,7 @@ font-size: 13.0px; } - + @@ -145,117 +145,117 @@ font-size: 13.0px; text { text-rendering: optimizeLegibility; } -#xXxprefixXx1 .plot-title { +#_sample_helper_static_id_prefix_1 .plot-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx1 .plot-subtitle { +#_sample_helper_static_id_prefix_1 .plot-subtitle { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx1 .plot-caption { +#_sample_helper_static_id_prefix_1 .plot-caption { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx1 .hyperlink-element { +#_sample_helper_static_id_prefix_1 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx1 .legend-title { +#_sample_helper_static_id_prefix_1 .legend-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx1 .legend-item { +#_sample_helper_static_id_prefix_1 .legend-item { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx1 .axis-title-x { +#_sample_helper_static_id_prefix_1 .axis-title-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx1 .axis-text-x { +#_sample_helper_static_id_prefix_1 .axis-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx3 .axis-tooltip-text-x { +#_sample_helper_static_id_prefix_3 .axis-tooltip-text-x { fill: #303030; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx1 .axis-title-y { +#_sample_helper_static_id_prefix_1 .axis-title-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx1 .axis-text-y { +#_sample_helper_static_id_prefix_1 .axis-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx3 .axis-tooltip-text-y { +#_sample_helper_static_id_prefix_3 .axis-tooltip-text-y { fill: #303030; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx1 .facet-strip-text-x { +#_sample_helper_static_id_prefix_1 .facet-strip-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx1 .facet-strip-text-y { +#_sample_helper_static_id_prefix_1 .facet-strip-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx3 .tooltip-text { +#_sample_helper_static_id_prefix_3 .tooltip-text { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx3 .tooltip-title { +#_sample_helper_static_id_prefix_3 .tooltip-title { fill: #bbbbbb; font-weight: bold; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx3 .tooltip-label { +#_sample_helper_static_id_prefix_3 .tooltip-label { fill: #bbbbbb; font-weight: bold; font-style: normal;font-family: sans-serif; @@ -264,7 +264,7 @@ font-size: 13.0px; } - + @@ -344,7 +344,7 @@ font-size: 13.0px; - + @@ -358,7 +358,7 @@ font-size: 13.0px; - + @@ -380,7 +380,7 @@ font-size: 13.0px; - + @@ -395,117 +395,117 @@ font-size: 13.0px; text { text-rendering: optimizeLegibility; } -#xXxprefixXx4 .plot-title { +#_sample_helper_static_id_prefix_4 .plot-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx4 .plot-subtitle { +#_sample_helper_static_id_prefix_4 .plot-subtitle { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx4 .plot-caption { +#_sample_helper_static_id_prefix_4 .plot-caption { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx4 .hyperlink-element { +#_sample_helper_static_id_prefix_4 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx4 .legend-title { +#_sample_helper_static_id_prefix_4 .legend-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx4 .legend-item { +#_sample_helper_static_id_prefix_4 .legend-item { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx4 .axis-title-x { +#_sample_helper_static_id_prefix_4 .axis-title-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx4 .axis-text-x { +#_sample_helper_static_id_prefix_4 .axis-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx6 .axis-tooltip-text-x { +#_sample_helper_static_id_prefix_6 .axis-tooltip-text-x { fill: #303030; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx4 .axis-title-y { +#_sample_helper_static_id_prefix_4 .axis-title-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx4 .axis-text-y { +#_sample_helper_static_id_prefix_4 .axis-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx6 .axis-tooltip-text-y { +#_sample_helper_static_id_prefix_6 .axis-tooltip-text-y { fill: #303030; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx4 .facet-strip-text-x { +#_sample_helper_static_id_prefix_4 .facet-strip-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx4 .facet-strip-text-y { +#_sample_helper_static_id_prefix_4 .facet-strip-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx6 .tooltip-text { +#_sample_helper_static_id_prefix_6 .tooltip-text { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx6 .tooltip-title { +#_sample_helper_static_id_prefix_6 .tooltip-title { fill: #bbbbbb; font-weight: bold; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx6 .tooltip-label { +#_sample_helper_static_id_prefix_6 .tooltip-label { fill: #bbbbbb; font-weight: bold; font-style: normal;font-family: sans-serif; @@ -514,7 +514,7 @@ font-size: 13.0px; } - + @@ -594,7 +594,7 @@ font-size: 13.0px; - + @@ -620,7 +620,7 @@ font-size: 13.0px; - + @@ -715,7 +715,7 @@ font-size: 13.0px; - + @@ -730,117 +730,117 @@ font-size: 13.0px; text { text-rendering: optimizeLegibility; } -#xXxprefixXx7 .plot-title { +#_sample_helper_static_id_prefix_7 .plot-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx7 .plot-subtitle { +#_sample_helper_static_id_prefix_7 .plot-subtitle { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx7 .plot-caption { +#_sample_helper_static_id_prefix_7 .plot-caption { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx7 .hyperlink-element { +#_sample_helper_static_id_prefix_7 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx7 .legend-title { +#_sample_helper_static_id_prefix_7 .legend-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx7 .legend-item { +#_sample_helper_static_id_prefix_7 .legend-item { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx7 .axis-title-x { +#_sample_helper_static_id_prefix_7 .axis-title-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx7 .axis-text-x { +#_sample_helper_static_id_prefix_7 .axis-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx9 .axis-tooltip-text-x { +#_sample_helper_static_id_prefix_9 .axis-tooltip-text-x { fill: #303030; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx7 .axis-title-y { +#_sample_helper_static_id_prefix_7 .axis-title-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx7 .axis-text-y { +#_sample_helper_static_id_prefix_7 .axis-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx9 .axis-tooltip-text-y { +#_sample_helper_static_id_prefix_9 .axis-tooltip-text-y { fill: #303030; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx7 .facet-strip-text-x { +#_sample_helper_static_id_prefix_7 .facet-strip-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx7 .facet-strip-text-y { +#_sample_helper_static_id_prefix_7 .facet-strip-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx9 .tooltip-text { +#_sample_helper_static_id_prefix_9 .tooltip-text { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx9 .tooltip-title { +#_sample_helper_static_id_prefix_9 .tooltip-title { fill: #bbbbbb; font-weight: bold; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx9 .tooltip-label { +#_sample_helper_static_id_prefix_9 .tooltip-label { fill: #bbbbbb; font-weight: bold; font-style: normal;font-family: sans-serif; @@ -849,7 +849,7 @@ font-size: 13.0px; } - + @@ -1055,7 +1055,7 @@ font-size: 13.0px; - + @@ -1300,7 +1300,7 @@ font-size: 13.0px; - + @@ -1444,7 +1444,7 @@ font-size: 13.0px; - + \ No newline at end of file diff --git a/docs/images/guides/quickStartGuide/experimentalMultiplotPlotGrid.svg b/docs/images/guides/quickStartGuide/experimentalMultiplotPlotGrid.svg index c70e7fb63..a22bd3310 100644 --- a/docs/images/guides/quickStartGuide/experimentalMultiplotPlotGrid.svg +++ b/docs/images/guides/quickStartGuide/experimentalMultiplotPlotGrid.svg @@ -10,54 +10,54 @@ text { text-rendering: optimizeLegibility; } -#xXxprefixXx0 .plot-title { +#_sample_helper_static_id_prefix_0 .plot-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; @@ -71,14 +71,14 @@ font-weight: normal; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; @@ -92,14 +92,14 @@ font-weight: normal; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; @@ -129,7 +129,7 @@ font-size: 13.0px; } - + @@ -145,117 +145,117 @@ font-size: 13.0px; text { text-rendering: optimizeLegibility; } -#xXxprefixXx1 .plot-title { +#_sample_helper_static_id_prefix_1 .plot-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx1 .plot-subtitle { +#_sample_helper_static_id_prefix_1 .plot-subtitle { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx1 .plot-caption { +#_sample_helper_static_id_prefix_1 .plot-caption { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx1 .hyperlink-element { +#_sample_helper_static_id_prefix_1 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx1 .legend-title { +#_sample_helper_static_id_prefix_1 .legend-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx1 .legend-item { +#_sample_helper_static_id_prefix_1 .legend-item { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx1 .axis-title-x { +#_sample_helper_static_id_prefix_1 .axis-title-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx1 .axis-text-x { +#_sample_helper_static_id_prefix_1 .axis-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx3 .axis-tooltip-text-x { +#_sample_helper_static_id_prefix_3 .axis-tooltip-text-x { fill: #ffffff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx1 .axis-title-y { +#_sample_helper_static_id_prefix_1 .axis-title-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx1 .axis-text-y { +#_sample_helper_static_id_prefix_1 .axis-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx3 .axis-tooltip-text-y { +#_sample_helper_static_id_prefix_3 .axis-tooltip-text-y { fill: #ffffff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx1 .facet-strip-text-x { +#_sample_helper_static_id_prefix_1 .facet-strip-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx1 .facet-strip-text-y { +#_sample_helper_static_id_prefix_1 .facet-strip-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx3 .tooltip-text { +#_sample_helper_static_id_prefix_3 .tooltip-text { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx3 .tooltip-title { +#_sample_helper_static_id_prefix_3 .tooltip-title { fill: #474747; font-weight: bold; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx3 .tooltip-label { +#_sample_helper_static_id_prefix_3 .tooltip-label { fill: #474747; font-weight: bold; font-style: normal;font-family: sans-serif; @@ -264,7 +264,7 @@ font-size: 13.0px; } - + @@ -302,7 +302,7 @@ font-size: 13.0px; - + @@ -547,7 +547,7 @@ font-size: 13.0px; - + @@ -793,7 +793,7 @@ font-size: 13.0px; - + @@ -808,117 +808,117 @@ font-size: 13.0px; text { text-rendering: optimizeLegibility; } -#xXxprefixXx4 .plot-title { +#_sample_helper_static_id_prefix_4 .plot-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx4 .plot-subtitle { +#_sample_helper_static_id_prefix_4 .plot-subtitle { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx4 .plot-caption { +#_sample_helper_static_id_prefix_4 .plot-caption { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx4 .hyperlink-element { +#_sample_helper_static_id_prefix_4 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx4 .legend-title { +#_sample_helper_static_id_prefix_4 .legend-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx4 .legend-item { +#_sample_helper_static_id_prefix_4 .legend-item { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx4 .axis-title-x { +#_sample_helper_static_id_prefix_4 .axis-title-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx4 .axis-text-x { +#_sample_helper_static_id_prefix_4 .axis-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx6 .axis-tooltip-text-x { +#_sample_helper_static_id_prefix_6 .axis-tooltip-text-x { fill: #ffffff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx4 .axis-title-y { +#_sample_helper_static_id_prefix_4 .axis-title-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx4 .axis-text-y { +#_sample_helper_static_id_prefix_4 .axis-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx6 .axis-tooltip-text-y { +#_sample_helper_static_id_prefix_6 .axis-tooltip-text-y { fill: #ffffff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx4 .facet-strip-text-x { +#_sample_helper_static_id_prefix_4 .facet-strip-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx4 .facet-strip-text-y { +#_sample_helper_static_id_prefix_4 .facet-strip-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx6 .tooltip-text { +#_sample_helper_static_id_prefix_6 .tooltip-text { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx6 .tooltip-title { +#_sample_helper_static_id_prefix_6 .tooltip-title { fill: #474747; font-weight: bold; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx6 .tooltip-label { +#_sample_helper_static_id_prefix_6 .tooltip-label { fill: #474747; font-weight: bold; font-style: normal;font-family: sans-serif; @@ -927,7 +927,7 @@ font-size: 13.0px; } - + @@ -959,7 +959,7 @@ font-size: 13.0px; - + @@ -973,7 +973,7 @@ font-size: 13.0px; - + @@ -1070,7 +1070,7 @@ font-size: 13.0px; - + @@ -1085,117 +1085,117 @@ font-size: 13.0px; text { text-rendering: optimizeLegibility; } -#xXxprefixXx7 .plot-title { +#_sample_helper_static_id_prefix_7 .plot-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx7 .plot-subtitle { +#_sample_helper_static_id_prefix_7 .plot-subtitle { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx7 .plot-caption { +#_sample_helper_static_id_prefix_7 .plot-caption { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx7 .hyperlink-element { +#_sample_helper_static_id_prefix_7 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx7 .legend-title { +#_sample_helper_static_id_prefix_7 .legend-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx7 .legend-item { +#_sample_helper_static_id_prefix_7 .legend-item { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx7 .axis-title-x { +#_sample_helper_static_id_prefix_7 .axis-title-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx7 .axis-text-x { +#_sample_helper_static_id_prefix_7 .axis-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx9 .axis-tooltip-text-x { +#_sample_helper_static_id_prefix_9 .axis-tooltip-text-x { fill: #ffffff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx7 .axis-title-y { +#_sample_helper_static_id_prefix_7 .axis-title-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx7 .axis-text-y { +#_sample_helper_static_id_prefix_7 .axis-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx9 .axis-tooltip-text-y { +#_sample_helper_static_id_prefix_9 .axis-tooltip-text-y { fill: #ffffff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx7 .facet-strip-text-x { +#_sample_helper_static_id_prefix_7 .facet-strip-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx7 .facet-strip-text-y { +#_sample_helper_static_id_prefix_7 .facet-strip-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx9 .tooltip-text { +#_sample_helper_static_id_prefix_9 .tooltip-text { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx9 .tooltip-title { +#_sample_helper_static_id_prefix_9 .tooltip-title { fill: #474747; font-weight: bold; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx9 .tooltip-label { +#_sample_helper_static_id_prefix_9 .tooltip-label { fill: #474747; font-weight: bold; font-style: normal;font-family: sans-serif; @@ -1204,7 +1204,7 @@ font-size: 13.0px; } - + @@ -1234,7 +1234,7 @@ font-size: 13.0px; - + @@ -1260,7 +1260,7 @@ font-size: 13.0px; - + @@ -1423,7 +1423,7 @@ font-size: 13.0px; - + \ No newline at end of file diff --git a/docs/images/guides/quickStartGuide/experimentalMultiplotPlotGrid_dark.svg b/docs/images/guides/quickStartGuide/experimentalMultiplotPlotGrid_dark.svg index 6c0bd1742..bc05cbc56 100644 --- a/docs/images/guides/quickStartGuide/experimentalMultiplotPlotGrid_dark.svg +++ b/docs/images/guides/quickStartGuide/experimentalMultiplotPlotGrid_dark.svg @@ -10,54 +10,54 @@ text { text-rendering: optimizeLegibility; } -#xXxprefixXx0 .plot-title { +#_sample_helper_static_id_prefix_0 .plot-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; @@ -71,14 +71,14 @@ font-weight: normal; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; @@ -92,14 +92,14 @@ font-weight: normal; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; @@ -129,7 +129,7 @@ font-size: 13.0px; } - + @@ -145,117 +145,117 @@ font-size: 13.0px; text { text-rendering: optimizeLegibility; } -#xXxprefixXx1 .plot-title { +#_sample_helper_static_id_prefix_1 .plot-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx1 .plot-subtitle { +#_sample_helper_static_id_prefix_1 .plot-subtitle { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx1 .plot-caption { +#_sample_helper_static_id_prefix_1 .plot-caption { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx1 .hyperlink-element { +#_sample_helper_static_id_prefix_1 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx1 .legend-title { +#_sample_helper_static_id_prefix_1 .legend-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx1 .legend-item { +#_sample_helper_static_id_prefix_1 .legend-item { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx1 .axis-title-x { +#_sample_helper_static_id_prefix_1 .axis-title-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx1 .axis-text-x { +#_sample_helper_static_id_prefix_1 .axis-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx3 .axis-tooltip-text-x { +#_sample_helper_static_id_prefix_3 .axis-tooltip-text-x { fill: #303030; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx1 .axis-title-y { +#_sample_helper_static_id_prefix_1 .axis-title-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx1 .axis-text-y { +#_sample_helper_static_id_prefix_1 .axis-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx3 .axis-tooltip-text-y { +#_sample_helper_static_id_prefix_3 .axis-tooltip-text-y { fill: #303030; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx1 .facet-strip-text-x { +#_sample_helper_static_id_prefix_1 .facet-strip-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx1 .facet-strip-text-y { +#_sample_helper_static_id_prefix_1 .facet-strip-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx3 .tooltip-text { +#_sample_helper_static_id_prefix_3 .tooltip-text { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx3 .tooltip-title { +#_sample_helper_static_id_prefix_3 .tooltip-title { fill: #bbbbbb; font-weight: bold; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx3 .tooltip-label { +#_sample_helper_static_id_prefix_3 .tooltip-label { fill: #bbbbbb; font-weight: bold; font-style: normal;font-family: sans-serif; @@ -264,7 +264,7 @@ font-size: 13.0px; } - + @@ -404,7 +404,7 @@ font-size: 13.0px; - + @@ -649,7 +649,7 @@ font-size: 13.0px; - + @@ -793,7 +793,7 @@ font-size: 13.0px; - + @@ -808,117 +808,117 @@ font-size: 13.0px; text { text-rendering: optimizeLegibility; } -#xXxprefixXx4 .plot-title { +#_sample_helper_static_id_prefix_4 .plot-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx4 .plot-subtitle { +#_sample_helper_static_id_prefix_4 .plot-subtitle { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx4 .plot-caption { +#_sample_helper_static_id_prefix_4 .plot-caption { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx4 .hyperlink-element { +#_sample_helper_static_id_prefix_4 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx4 .legend-title { +#_sample_helper_static_id_prefix_4 .legend-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx4 .legend-item { +#_sample_helper_static_id_prefix_4 .legend-item { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx4 .axis-title-x { +#_sample_helper_static_id_prefix_4 .axis-title-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx4 .axis-text-x { +#_sample_helper_static_id_prefix_4 .axis-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx6 .axis-tooltip-text-x { +#_sample_helper_static_id_prefix_6 .axis-tooltip-text-x { fill: #303030; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx4 .axis-title-y { +#_sample_helper_static_id_prefix_4 .axis-title-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx4 .axis-text-y { +#_sample_helper_static_id_prefix_4 .axis-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx6 .axis-tooltip-text-y { +#_sample_helper_static_id_prefix_6 .axis-tooltip-text-y { fill: #303030; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx4 .facet-strip-text-x { +#_sample_helper_static_id_prefix_4 .facet-strip-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx4 .facet-strip-text-y { +#_sample_helper_static_id_prefix_4 .facet-strip-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx6 .tooltip-text { +#_sample_helper_static_id_prefix_6 .tooltip-text { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx6 .tooltip-title { +#_sample_helper_static_id_prefix_6 .tooltip-title { fill: #bbbbbb; font-weight: bold; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx6 .tooltip-label { +#_sample_helper_static_id_prefix_6 .tooltip-label { fill: #bbbbbb; font-weight: bold; font-style: normal;font-family: sans-serif; @@ -927,7 +927,7 @@ font-size: 13.0px; } - + @@ -1034,7 +1034,7 @@ font-size: 13.0px; - + @@ -1048,7 +1048,7 @@ font-size: 13.0px; - + @@ -1070,7 +1070,7 @@ font-size: 13.0px; - + @@ -1085,117 +1085,117 @@ font-size: 13.0px; text { text-rendering: optimizeLegibility; } -#xXxprefixXx7 .plot-title { +#_sample_helper_static_id_prefix_7 .plot-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx7 .plot-subtitle { +#_sample_helper_static_id_prefix_7 .plot-subtitle { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx7 .plot-caption { +#_sample_helper_static_id_prefix_7 .plot-caption { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx7 .hyperlink-element { +#_sample_helper_static_id_prefix_7 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx7 .legend-title { +#_sample_helper_static_id_prefix_7 .legend-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx7 .legend-item { +#_sample_helper_static_id_prefix_7 .legend-item { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx7 .axis-title-x { +#_sample_helper_static_id_prefix_7 .axis-title-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx7 .axis-text-x { +#_sample_helper_static_id_prefix_7 .axis-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx9 .axis-tooltip-text-x { +#_sample_helper_static_id_prefix_9 .axis-tooltip-text-x { fill: #303030; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx7 .axis-title-y { +#_sample_helper_static_id_prefix_7 .axis-title-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx7 .axis-text-y { +#_sample_helper_static_id_prefix_7 .axis-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx9 .axis-tooltip-text-y { +#_sample_helper_static_id_prefix_9 .axis-tooltip-text-y { fill: #303030; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx7 .facet-strip-text-x { +#_sample_helper_static_id_prefix_7 .facet-strip-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx7 .facet-strip-text-y { +#_sample_helper_static_id_prefix_7 .facet-strip-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx9 .tooltip-text { +#_sample_helper_static_id_prefix_9 .tooltip-text { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx9 .tooltip-title { +#_sample_helper_static_id_prefix_9 .tooltip-title { fill: #bbbbbb; font-weight: bold; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx9 .tooltip-label { +#_sample_helper_static_id_prefix_9 .tooltip-label { fill: #bbbbbb; font-weight: bold; font-style: normal;font-family: sans-serif; @@ -1204,7 +1204,7 @@ font-size: 13.0px; } - + @@ -1302,7 +1302,7 @@ font-size: 13.0px; - + @@ -1328,7 +1328,7 @@ font-size: 13.0px; - + @@ -1423,7 +1423,7 @@ font-size: 13.0px; - + \ No newline at end of file diff --git a/docs/images/guides/quickStartGuide/experimentalStatisticsBinPlotWithBarsAndLines.svg b/docs/images/guides/quickStartGuide/experimentalStatisticsBinPlotWithBarsAndLines.svg index 8124249bd..7684dff2f 100644 --- a/docs/images/guides/quickStartGuide/experimentalStatisticsBinPlotWithBarsAndLines.svg +++ b/docs/images/guides/quickStartGuide/experimentalStatisticsBinPlotWithBarsAndLines.svg @@ -10,117 +10,117 @@ text { text-rendering: optimizeLegibility; } -#xXxprefixXx0 .plot-title { +#_sample_helper_static_id_prefix_0 .plot-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx3 .axis-tooltip-text-x { +#_sample_helper_static_id_prefix_3 .axis-tooltip-text-x { fill: #ffffff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx3 .axis-tooltip-text-y { +#_sample_helper_static_id_prefix_3 .axis-tooltip-text-y { fill: #ffffff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx3 .tooltip-text { +#_sample_helper_static_id_prefix_3 .tooltip-text { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx3 .tooltip-title { +#_sample_helper_static_id_prefix_3 .tooltip-title { fill: #474747; font-weight: bold; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx3 .tooltip-label { +#_sample_helper_static_id_prefix_3 .tooltip-label { fill: #474747; font-weight: bold; font-style: normal;font-family: sans-serif; @@ -129,7 +129,7 @@ font-size: 13.0px; } - + @@ -179,7 +179,7 @@ font-size: 13.0px; - + @@ -233,13 +233,13 @@ font-size: 13.0px; - + - + @@ -415,6 +415,6 @@ font-size: 13.0px; - + \ No newline at end of file diff --git a/docs/images/guides/quickStartGuide/experimentalStatisticsBinPlotWithBarsAndLines_dark.svg b/docs/images/guides/quickStartGuide/experimentalStatisticsBinPlotWithBarsAndLines_dark.svg index c8358a72e..f99da813d 100644 --- a/docs/images/guides/quickStartGuide/experimentalStatisticsBinPlotWithBarsAndLines_dark.svg +++ b/docs/images/guides/quickStartGuide/experimentalStatisticsBinPlotWithBarsAndLines_dark.svg @@ -10,117 +10,117 @@ text { text-rendering: optimizeLegibility; } -#xXxprefixXx0 .plot-title { +#_sample_helper_static_id_prefix_0 .plot-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx3 .axis-tooltip-text-x { +#_sample_helper_static_id_prefix_3 .axis-tooltip-text-x { fill: #303030; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx3 .axis-tooltip-text-y { +#_sample_helper_static_id_prefix_3 .axis-tooltip-text-y { fill: #303030; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx3 .tooltip-text { +#_sample_helper_static_id_prefix_3 .tooltip-text { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx3 .tooltip-title { +#_sample_helper_static_id_prefix_3 .tooltip-title { fill: #bbbbbb; font-weight: bold; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx3 .tooltip-label { +#_sample_helper_static_id_prefix_3 .tooltip-label { fill: #bbbbbb; font-weight: bold; font-style: normal;font-family: sans-serif; @@ -129,7 +129,7 @@ font-size: 13.0px; } - + @@ -333,7 +333,7 @@ font-size: 13.0px; - + @@ -387,13 +387,13 @@ font-size: 13.0px; - + - + @@ -415,6 +415,6 @@ font-size: 13.0px; - + \ No newline at end of file diff --git a/docs/images/guides/quickStartGuide/experimentalStatisticsConfiguredHistogram.svg b/docs/images/guides/quickStartGuide/experimentalStatisticsConfiguredHistogram.svg index 2f6be7355..601bbed66 100644 --- a/docs/images/guides/quickStartGuide/experimentalStatisticsConfiguredHistogram.svg +++ b/docs/images/guides/quickStartGuide/experimentalStatisticsConfiguredHistogram.svg @@ -10,117 +10,117 @@ text { text-rendering: optimizeLegibility; } -#xXxprefixXx0 .plot-title { +#_sample_helper_static_id_prefix_0 .plot-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-x { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-x { fill: #ffffff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-y { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-y { fill: #ffffff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-text { +#_sample_helper_static_id_prefix_2 .tooltip-text { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-title { +#_sample_helper_static_id_prefix_2 .tooltip-title { fill: #474747; font-weight: bold; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-label { +#_sample_helper_static_id_prefix_2 .tooltip-label { fill: #474747; font-weight: bold; font-style: normal;font-family: sans-serif; @@ -129,7 +129,7 @@ font-size: 13.0px; } - + @@ -179,7 +179,7 @@ font-size: 13.0px; - + @@ -227,7 +227,7 @@ font-size: 13.0px; - + @@ -512,6 +512,6 @@ font-size: 13.0px; - + \ No newline at end of file diff --git a/docs/images/guides/quickStartGuide/experimentalStatisticsConfiguredHistogram_dark.svg b/docs/images/guides/quickStartGuide/experimentalStatisticsConfiguredHistogram_dark.svg index f87d7eba6..2930fafb8 100644 --- a/docs/images/guides/quickStartGuide/experimentalStatisticsConfiguredHistogram_dark.svg +++ b/docs/images/guides/quickStartGuide/experimentalStatisticsConfiguredHistogram_dark.svg @@ -10,117 +10,117 @@ text { text-rendering: optimizeLegibility; } -#xXxprefixXx0 .plot-title { +#_sample_helper_static_id_prefix_0 .plot-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-x { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-x { fill: #303030; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-y { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-y { fill: #303030; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-text { +#_sample_helper_static_id_prefix_2 .tooltip-text { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-title { +#_sample_helper_static_id_prefix_2 .tooltip-title { fill: #bbbbbb; font-weight: bold; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-label { +#_sample_helper_static_id_prefix_2 .tooltip-label { fill: #bbbbbb; font-weight: bold; font-style: normal;font-family: sans-serif; @@ -129,7 +129,7 @@ font-size: 13.0px; } - + @@ -333,7 +333,7 @@ font-size: 13.0px; - + @@ -381,7 +381,7 @@ font-size: 13.0px; - + @@ -512,6 +512,6 @@ font-size: 13.0px; - + \ No newline at end of file diff --git a/docs/images/guides/quickStartGuide/experimentalStatisticsShortcutHistogram.svg b/docs/images/guides/quickStartGuide/experimentalStatisticsShortcutHistogram.svg index 97d9907b0..d92cd3b2c 100644 --- a/docs/images/guides/quickStartGuide/experimentalStatisticsShortcutHistogram.svg +++ b/docs/images/guides/quickStartGuide/experimentalStatisticsShortcutHistogram.svg @@ -10,117 +10,117 @@ text { text-rendering: optimizeLegibility; } -#xXxprefixXx0 .plot-title { +#_sample_helper_static_id_prefix_0 .plot-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-x { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-x { fill: #ffffff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-y { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-y { fill: #ffffff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-text { +#_sample_helper_static_id_prefix_2 .tooltip-text { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-title { +#_sample_helper_static_id_prefix_2 .tooltip-title { fill: #474747; font-weight: bold; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-label { +#_sample_helper_static_id_prefix_2 .tooltip-label { fill: #474747; font-weight: bold; font-style: normal;font-family: sans-serif; @@ -129,7 +129,7 @@ font-size: 13.0px; } - + @@ -179,7 +179,7 @@ font-size: 13.0px; - + @@ -227,7 +227,7 @@ font-size: 13.0px; - + @@ -408,6 +408,6 @@ font-size: 13.0px; - + \ No newline at end of file diff --git a/docs/images/guides/quickStartGuide/experimentalStatisticsShortcutHistogram_dark.svg b/docs/images/guides/quickStartGuide/experimentalStatisticsShortcutHistogram_dark.svg index f44910dbd..412ef5dd3 100644 --- a/docs/images/guides/quickStartGuide/experimentalStatisticsShortcutHistogram_dark.svg +++ b/docs/images/guides/quickStartGuide/experimentalStatisticsShortcutHistogram_dark.svg @@ -10,117 +10,117 @@ text { text-rendering: optimizeLegibility; } -#xXxprefixXx0 .plot-title { +#_sample_helper_static_id_prefix_0 .plot-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-x { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-x { fill: #303030; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-y { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-y { fill: #303030; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-text { +#_sample_helper_static_id_prefix_2 .tooltip-text { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-title { +#_sample_helper_static_id_prefix_2 .tooltip-title { fill: #bbbbbb; font-weight: bold; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-label { +#_sample_helper_static_id_prefix_2 .tooltip-label { fill: #bbbbbb; font-weight: bold; font-style: normal;font-family: sans-serif; @@ -129,7 +129,7 @@ font-size: 13.0px; } - + @@ -333,7 +333,7 @@ font-size: 13.0px; - + @@ -381,7 +381,7 @@ font-size: 13.0px; - + @@ -408,6 +408,6 @@ font-size: 13.0px; - + \ No newline at end of file diff --git a/docs/images/guides/quickStartGuide/experimentalStatisticsStatBinOnIterableData.svg b/docs/images/guides/quickStartGuide/experimentalStatisticsStatBinOnIterableData.svg index db39bfb9c..151091d1c 100644 --- a/docs/images/guides/quickStartGuide/experimentalStatisticsStatBinOnIterableData.svg +++ b/docs/images/guides/quickStartGuide/experimentalStatisticsStatBinOnIterableData.svg @@ -10,54 +10,54 @@ text { text-rendering: optimizeLegibility; } -#xXxprefixXx0 .plot-title { +#_sample_helper_static_id_prefix_0 .plot-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; @@ -71,14 +71,14 @@ font-weight: normal; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; @@ -92,14 +92,14 @@ font-weight: normal; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; @@ -129,7 +129,7 @@ font-size: 13.0px; } - + @@ -145,117 +145,117 @@ font-size: 13.0px; text { text-rendering: optimizeLegibility; } -#xXxprefixXx1 .plot-title { +#_sample_helper_static_id_prefix_1 .plot-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx1 .plot-subtitle { +#_sample_helper_static_id_prefix_1 .plot-subtitle { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx1 .plot-caption { +#_sample_helper_static_id_prefix_1 .plot-caption { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx1 .hyperlink-element { +#_sample_helper_static_id_prefix_1 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx1 .legend-title { +#_sample_helper_static_id_prefix_1 .legend-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx1 .legend-item { +#_sample_helper_static_id_prefix_1 .legend-item { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx1 .axis-title-x { +#_sample_helper_static_id_prefix_1 .axis-title-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx1 .axis-text-x { +#_sample_helper_static_id_prefix_1 .axis-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx3 .axis-tooltip-text-x { +#_sample_helper_static_id_prefix_3 .axis-tooltip-text-x { fill: #ffffff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx1 .axis-title-y { +#_sample_helper_static_id_prefix_1 .axis-title-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx1 .axis-text-y { +#_sample_helper_static_id_prefix_1 .axis-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx3 .axis-tooltip-text-y { +#_sample_helper_static_id_prefix_3 .axis-tooltip-text-y { fill: #ffffff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx1 .facet-strip-text-x { +#_sample_helper_static_id_prefix_1 .facet-strip-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx1 .facet-strip-text-y { +#_sample_helper_static_id_prefix_1 .facet-strip-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx3 .tooltip-text { +#_sample_helper_static_id_prefix_3 .tooltip-text { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx3 .tooltip-title { +#_sample_helper_static_id_prefix_3 .tooltip-title { fill: #474747; font-weight: bold; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx3 .tooltip-label { +#_sample_helper_static_id_prefix_3 .tooltip-label { fill: #474747; font-weight: bold; font-style: normal;font-family: sans-serif; @@ -264,7 +264,7 @@ font-size: 13.0px; } - + @@ -302,7 +302,7 @@ font-size: 13.0px; - + @@ -334,7 +334,7 @@ font-size: 13.0px; - + @@ -458,7 +458,7 @@ font-size: 13.0px; - + @@ -473,117 +473,117 @@ font-size: 13.0px; text { text-rendering: optimizeLegibility; } -#xXxprefixXx4 .plot-title { +#_sample_helper_static_id_prefix_4 .plot-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx4 .plot-subtitle { +#_sample_helper_static_id_prefix_4 .plot-subtitle { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx4 .plot-caption { +#_sample_helper_static_id_prefix_4 .plot-caption { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx4 .hyperlink-element { +#_sample_helper_static_id_prefix_4 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx4 .legend-title { +#_sample_helper_static_id_prefix_4 .legend-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx4 .legend-item { +#_sample_helper_static_id_prefix_4 .legend-item { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx4 .axis-title-x { +#_sample_helper_static_id_prefix_4 .axis-title-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx4 .axis-text-x { +#_sample_helper_static_id_prefix_4 .axis-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx6 .axis-tooltip-text-x { +#_sample_helper_static_id_prefix_6 .axis-tooltip-text-x { fill: #ffffff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx4 .axis-title-y { +#_sample_helper_static_id_prefix_4 .axis-title-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx4 .axis-text-y { +#_sample_helper_static_id_prefix_4 .axis-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx6 .axis-tooltip-text-y { +#_sample_helper_static_id_prefix_6 .axis-tooltip-text-y { fill: #ffffff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx4 .facet-strip-text-x { +#_sample_helper_static_id_prefix_4 .facet-strip-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx4 .facet-strip-text-y { +#_sample_helper_static_id_prefix_4 .facet-strip-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx6 .tooltip-text { +#_sample_helper_static_id_prefix_6 .tooltip-text { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx6 .tooltip-title { +#_sample_helper_static_id_prefix_6 .tooltip-title { fill: #474747; font-weight: bold; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx6 .tooltip-label { +#_sample_helper_static_id_prefix_6 .tooltip-label { fill: #474747; font-weight: bold; font-style: normal;font-family: sans-serif; @@ -592,7 +592,7 @@ font-size: 13.0px; } - + @@ -632,7 +632,7 @@ font-size: 13.0px; - + @@ -680,7 +680,7 @@ font-size: 13.0px; - + @@ -811,7 +811,7 @@ font-size: 13.0px; - + \ No newline at end of file diff --git a/docs/images/guides/quickStartGuide/experimentalStatisticsStatBinOnIterableData_dark.svg b/docs/images/guides/quickStartGuide/experimentalStatisticsStatBinOnIterableData_dark.svg index 67f4197ce..70ca2ec4c 100644 --- a/docs/images/guides/quickStartGuide/experimentalStatisticsStatBinOnIterableData_dark.svg +++ b/docs/images/guides/quickStartGuide/experimentalStatisticsStatBinOnIterableData_dark.svg @@ -10,54 +10,54 @@ text { text-rendering: optimizeLegibility; } -#xXxprefixXx0 .plot-title { +#_sample_helper_static_id_prefix_0 .plot-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; @@ -71,14 +71,14 @@ font-weight: normal; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; @@ -92,14 +92,14 @@ font-weight: normal; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; @@ -129,7 +129,7 @@ font-size: 13.0px; } - + @@ -145,117 +145,117 @@ font-size: 13.0px; text { text-rendering: optimizeLegibility; } -#xXxprefixXx1 .plot-title { +#_sample_helper_static_id_prefix_1 .plot-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx1 .plot-subtitle { +#_sample_helper_static_id_prefix_1 .plot-subtitle { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx1 .plot-caption { +#_sample_helper_static_id_prefix_1 .plot-caption { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx1 .hyperlink-element { +#_sample_helper_static_id_prefix_1 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx1 .legend-title { +#_sample_helper_static_id_prefix_1 .legend-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx1 .legend-item { +#_sample_helper_static_id_prefix_1 .legend-item { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx1 .axis-title-x { +#_sample_helper_static_id_prefix_1 .axis-title-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx1 .axis-text-x { +#_sample_helper_static_id_prefix_1 .axis-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx3 .axis-tooltip-text-x { +#_sample_helper_static_id_prefix_3 .axis-tooltip-text-x { fill: #303030; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx1 .axis-title-y { +#_sample_helper_static_id_prefix_1 .axis-title-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx1 .axis-text-y { +#_sample_helper_static_id_prefix_1 .axis-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx3 .axis-tooltip-text-y { +#_sample_helper_static_id_prefix_3 .axis-tooltip-text-y { fill: #303030; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx1 .facet-strip-text-x { +#_sample_helper_static_id_prefix_1 .facet-strip-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx1 .facet-strip-text-y { +#_sample_helper_static_id_prefix_1 .facet-strip-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx3 .tooltip-text { +#_sample_helper_static_id_prefix_3 .tooltip-text { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx3 .tooltip-title { +#_sample_helper_static_id_prefix_3 .tooltip-title { fill: #bbbbbb; font-weight: bold; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx3 .tooltip-label { +#_sample_helper_static_id_prefix_3 .tooltip-label { fill: #bbbbbb; font-weight: bold; font-style: normal;font-family: sans-serif; @@ -264,7 +264,7 @@ font-size: 13.0px; } - + @@ -404,7 +404,7 @@ font-size: 13.0px; - + @@ -436,7 +436,7 @@ font-size: 13.0px; - + @@ -458,7 +458,7 @@ font-size: 13.0px; - + @@ -473,117 +473,117 @@ font-size: 13.0px; text { text-rendering: optimizeLegibility; } -#xXxprefixXx4 .plot-title { +#_sample_helper_static_id_prefix_4 .plot-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx4 .plot-subtitle { +#_sample_helper_static_id_prefix_4 .plot-subtitle { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx4 .plot-caption { +#_sample_helper_static_id_prefix_4 .plot-caption { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx4 .hyperlink-element { +#_sample_helper_static_id_prefix_4 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx4 .legend-title { +#_sample_helper_static_id_prefix_4 .legend-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx4 .legend-item { +#_sample_helper_static_id_prefix_4 .legend-item { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx4 .axis-title-x { +#_sample_helper_static_id_prefix_4 .axis-title-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx4 .axis-text-x { +#_sample_helper_static_id_prefix_4 .axis-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx6 .axis-tooltip-text-x { +#_sample_helper_static_id_prefix_6 .axis-tooltip-text-x { fill: #303030; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx4 .axis-title-y { +#_sample_helper_static_id_prefix_4 .axis-title-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx4 .axis-text-y { +#_sample_helper_static_id_prefix_4 .axis-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx6 .axis-tooltip-text-y { +#_sample_helper_static_id_prefix_6 .axis-tooltip-text-y { fill: #303030; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx4 .facet-strip-text-x { +#_sample_helper_static_id_prefix_4 .facet-strip-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx4 .facet-strip-text-y { +#_sample_helper_static_id_prefix_4 .facet-strip-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx6 .tooltip-text { +#_sample_helper_static_id_prefix_6 .tooltip-text { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx6 .tooltip-title { +#_sample_helper_static_id_prefix_6 .tooltip-title { fill: #bbbbbb; font-weight: bold; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx6 .tooltip-label { +#_sample_helper_static_id_prefix_6 .tooltip-label { fill: #bbbbbb; font-weight: bold; font-style: normal;font-family: sans-serif; @@ -592,7 +592,7 @@ font-size: 13.0px; } - + @@ -741,7 +741,7 @@ font-size: 13.0px; - + @@ -789,7 +789,7 @@ font-size: 13.0px; - + @@ -811,7 +811,7 @@ font-size: 13.0px; - + \ No newline at end of file diff --git a/docs/images/guides/quickStartGuide/experimentalStatisticsStatBinsAndHist.svg b/docs/images/guides/quickStartGuide/experimentalStatisticsStatBinsAndHist.svg index 94f6536ac..22088abb8 100644 --- a/docs/images/guides/quickStartGuide/experimentalStatisticsStatBinsAndHist.svg +++ b/docs/images/guides/quickStartGuide/experimentalStatisticsStatBinsAndHist.svg @@ -10,54 +10,54 @@ text { text-rendering: optimizeLegibility; } -#xXxprefixXx0 .plot-title { +#_sample_helper_static_id_prefix_0 .plot-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; @@ -71,14 +71,14 @@ font-weight: normal; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; @@ -92,14 +92,14 @@ font-weight: normal; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; @@ -129,7 +129,7 @@ font-size: 13.0px; } - + @@ -145,117 +145,117 @@ font-size: 13.0px; text { text-rendering: optimizeLegibility; } -#xXxprefixXx1 .plot-title { +#_sample_helper_static_id_prefix_1 .plot-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx1 .plot-subtitle { +#_sample_helper_static_id_prefix_1 .plot-subtitle { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx1 .plot-caption { +#_sample_helper_static_id_prefix_1 .plot-caption { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx1 .hyperlink-element { +#_sample_helper_static_id_prefix_1 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx1 .legend-title { +#_sample_helper_static_id_prefix_1 .legend-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx1 .legend-item { +#_sample_helper_static_id_prefix_1 .legend-item { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx1 .axis-title-x { +#_sample_helper_static_id_prefix_1 .axis-title-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx1 .axis-text-x { +#_sample_helper_static_id_prefix_1 .axis-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx3 .axis-tooltip-text-x { +#_sample_helper_static_id_prefix_3 .axis-tooltip-text-x { fill: #ffffff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx1 .axis-title-y { +#_sample_helper_static_id_prefix_1 .axis-title-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx1 .axis-text-y { +#_sample_helper_static_id_prefix_1 .axis-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx3 .axis-tooltip-text-y { +#_sample_helper_static_id_prefix_3 .axis-tooltip-text-y { fill: #ffffff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx1 .facet-strip-text-x { +#_sample_helper_static_id_prefix_1 .facet-strip-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx1 .facet-strip-text-y { +#_sample_helper_static_id_prefix_1 .facet-strip-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx3 .tooltip-text { +#_sample_helper_static_id_prefix_3 .tooltip-text { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx3 .tooltip-title { +#_sample_helper_static_id_prefix_3 .tooltip-title { fill: #474747; font-weight: bold; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx3 .tooltip-label { +#_sample_helper_static_id_prefix_3 .tooltip-label { fill: #474747; font-weight: bold; font-style: normal;font-family: sans-serif; @@ -264,7 +264,7 @@ font-size: 13.0px; } - + @@ -304,7 +304,7 @@ font-size: 13.0px; - + @@ -352,7 +352,7 @@ font-size: 13.0px; - + @@ -488,7 +488,7 @@ font-size: 13.0px; - + @@ -503,117 +503,117 @@ font-size: 13.0px; text { text-rendering: optimizeLegibility; } -#xXxprefixXx4 .plot-title { +#_sample_helper_static_id_prefix_4 .plot-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx4 .plot-subtitle { +#_sample_helper_static_id_prefix_4 .plot-subtitle { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx4 .plot-caption { +#_sample_helper_static_id_prefix_4 .plot-caption { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx4 .hyperlink-element { +#_sample_helper_static_id_prefix_4 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx4 .legend-title { +#_sample_helper_static_id_prefix_4 .legend-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx4 .legend-item { +#_sample_helper_static_id_prefix_4 .legend-item { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx4 .axis-title-x { +#_sample_helper_static_id_prefix_4 .axis-title-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx4 .axis-text-x { +#_sample_helper_static_id_prefix_4 .axis-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx6 .axis-tooltip-text-x { +#_sample_helper_static_id_prefix_6 .axis-tooltip-text-x { fill: #ffffff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx4 .axis-title-y { +#_sample_helper_static_id_prefix_4 .axis-title-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx4 .axis-text-y { +#_sample_helper_static_id_prefix_4 .axis-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx6 .axis-tooltip-text-y { +#_sample_helper_static_id_prefix_6 .axis-tooltip-text-y { fill: #ffffff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx4 .facet-strip-text-x { +#_sample_helper_static_id_prefix_4 .facet-strip-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx4 .facet-strip-text-y { +#_sample_helper_static_id_prefix_4 .facet-strip-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx6 .tooltip-text { +#_sample_helper_static_id_prefix_6 .tooltip-text { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx6 .tooltip-title { +#_sample_helper_static_id_prefix_6 .tooltip-title { fill: #474747; font-weight: bold; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx6 .tooltip-label { +#_sample_helper_static_id_prefix_6 .tooltip-label { fill: #474747; font-weight: bold; font-style: normal;font-family: sans-serif; @@ -622,7 +622,7 @@ font-size: 13.0px; } - + @@ -662,7 +662,7 @@ font-size: 13.0px; - + @@ -710,7 +710,7 @@ font-size: 13.0px; - + @@ -846,7 +846,7 @@ font-size: 13.0px; - + \ No newline at end of file diff --git a/docs/images/guides/quickStartGuide/experimentalStatisticsStatBinsAndHist_dark.svg b/docs/images/guides/quickStartGuide/experimentalStatisticsStatBinsAndHist_dark.svg index a014e970d..4e23303f4 100644 --- a/docs/images/guides/quickStartGuide/experimentalStatisticsStatBinsAndHist_dark.svg +++ b/docs/images/guides/quickStartGuide/experimentalStatisticsStatBinsAndHist_dark.svg @@ -10,54 +10,54 @@ text { text-rendering: optimizeLegibility; } -#xXxprefixXx0 .plot-title { +#_sample_helper_static_id_prefix_0 .plot-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; @@ -71,14 +71,14 @@ font-weight: normal; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; @@ -92,14 +92,14 @@ font-weight: normal; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; @@ -129,7 +129,7 @@ font-size: 13.0px; } - + @@ -145,117 +145,117 @@ font-size: 13.0px; text { text-rendering: optimizeLegibility; } -#xXxprefixXx1 .plot-title { +#_sample_helper_static_id_prefix_1 .plot-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx1 .plot-subtitle { +#_sample_helper_static_id_prefix_1 .plot-subtitle { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx1 .plot-caption { +#_sample_helper_static_id_prefix_1 .plot-caption { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx1 .hyperlink-element { +#_sample_helper_static_id_prefix_1 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx1 .legend-title { +#_sample_helper_static_id_prefix_1 .legend-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx1 .legend-item { +#_sample_helper_static_id_prefix_1 .legend-item { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx1 .axis-title-x { +#_sample_helper_static_id_prefix_1 .axis-title-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx1 .axis-text-x { +#_sample_helper_static_id_prefix_1 .axis-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx3 .axis-tooltip-text-x { +#_sample_helper_static_id_prefix_3 .axis-tooltip-text-x { fill: #303030; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx1 .axis-title-y { +#_sample_helper_static_id_prefix_1 .axis-title-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx1 .axis-text-y { +#_sample_helper_static_id_prefix_1 .axis-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx3 .axis-tooltip-text-y { +#_sample_helper_static_id_prefix_3 .axis-tooltip-text-y { fill: #303030; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx1 .facet-strip-text-x { +#_sample_helper_static_id_prefix_1 .facet-strip-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx1 .facet-strip-text-y { +#_sample_helper_static_id_prefix_1 .facet-strip-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx3 .tooltip-text { +#_sample_helper_static_id_prefix_3 .tooltip-text { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx3 .tooltip-title { +#_sample_helper_static_id_prefix_3 .tooltip-title { fill: #bbbbbb; font-weight: bold; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx3 .tooltip-label { +#_sample_helper_static_id_prefix_3 .tooltip-label { fill: #bbbbbb; font-weight: bold; font-style: normal;font-family: sans-serif; @@ -264,7 +264,7 @@ font-size: 13.0px; } - + @@ -413,7 +413,7 @@ font-size: 13.0px; - + @@ -461,7 +461,7 @@ font-size: 13.0px; - + @@ -488,7 +488,7 @@ font-size: 13.0px; - + @@ -503,117 +503,117 @@ font-size: 13.0px; text { text-rendering: optimizeLegibility; } -#xXxprefixXx4 .plot-title { +#_sample_helper_static_id_prefix_4 .plot-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx4 .plot-subtitle { +#_sample_helper_static_id_prefix_4 .plot-subtitle { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx4 .plot-caption { +#_sample_helper_static_id_prefix_4 .plot-caption { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx4 .hyperlink-element { +#_sample_helper_static_id_prefix_4 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx4 .legend-title { +#_sample_helper_static_id_prefix_4 .legend-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx4 .legend-item { +#_sample_helper_static_id_prefix_4 .legend-item { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx4 .axis-title-x { +#_sample_helper_static_id_prefix_4 .axis-title-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx4 .axis-text-x { +#_sample_helper_static_id_prefix_4 .axis-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx6 .axis-tooltip-text-x { +#_sample_helper_static_id_prefix_6 .axis-tooltip-text-x { fill: #303030; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx4 .axis-title-y { +#_sample_helper_static_id_prefix_4 .axis-title-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx4 .axis-text-y { +#_sample_helper_static_id_prefix_4 .axis-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx6 .axis-tooltip-text-y { +#_sample_helper_static_id_prefix_6 .axis-tooltip-text-y { fill: #303030; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx4 .facet-strip-text-x { +#_sample_helper_static_id_prefix_4 .facet-strip-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx4 .facet-strip-text-y { +#_sample_helper_static_id_prefix_4 .facet-strip-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx6 .tooltip-text { +#_sample_helper_static_id_prefix_6 .tooltip-text { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx6 .tooltip-title { +#_sample_helper_static_id_prefix_6 .tooltip-title { fill: #bbbbbb; font-weight: bold; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx6 .tooltip-label { +#_sample_helper_static_id_prefix_6 .tooltip-label { fill: #bbbbbb; font-weight: bold; font-style: normal;font-family: sans-serif; @@ -622,7 +622,7 @@ font-size: 13.0px; } - + @@ -771,7 +771,7 @@ font-size: 13.0px; - + @@ -819,7 +819,7 @@ font-size: 13.0px; - + @@ -846,7 +846,7 @@ font-size: 13.0px; - + \ No newline at end of file diff --git a/docs/images/guides/quickStartGuide/experimentalTooltipsByColumns.svg b/docs/images/guides/quickStartGuide/experimentalTooltipsByColumns.svg index 5c51232ed..1205b9112 100644 --- a/docs/images/guides/quickStartGuide/experimentalTooltipsByColumns.svg +++ b/docs/images/guides/quickStartGuide/experimentalTooltipsByColumns.svg @@ -10,117 +10,117 @@ text { text-rendering: optimizeLegibility; } -#xXxprefixXx0 .plot-title { +#_sample_helper_static_id_prefix_0 .plot-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-x { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-x { fill: #ffffff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-y { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-y { fill: #ffffff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-text { +#_sample_helper_static_id_prefix_2 .tooltip-text { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-title { +#_sample_helper_static_id_prefix_2 .tooltip-title { fill: #474747; font-weight: bold; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-label { +#_sample_helper_static_id_prefix_2 .tooltip-label { fill: #474747; font-weight: bold; font-style: normal;font-family: sans-serif; @@ -129,7 +129,7 @@ font-size: 13.0px; } - + @@ -169,7 +169,7 @@ font-size: 13.0px; - + @@ -415,7 +415,7 @@ font-size: 13.0px; - + @@ -607,6 +607,6 @@ font-size: 13.0px; - + \ No newline at end of file diff --git a/docs/images/guides/quickStartGuide/experimentalTooltipsByColumns_dark.svg b/docs/images/guides/quickStartGuide/experimentalTooltipsByColumns_dark.svg index a863f0c26..64985463b 100644 --- a/docs/images/guides/quickStartGuide/experimentalTooltipsByColumns_dark.svg +++ b/docs/images/guides/quickStartGuide/experimentalTooltipsByColumns_dark.svg @@ -10,117 +10,117 @@ text { text-rendering: optimizeLegibility; } -#xXxprefixXx0 .plot-title { +#_sample_helper_static_id_prefix_0 .plot-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-x { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-x { fill: #303030; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-y { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-y { fill: #303030; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-text { +#_sample_helper_static_id_prefix_2 .tooltip-text { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-title { +#_sample_helper_static_id_prefix_2 .tooltip-title { fill: #bbbbbb; font-weight: bold; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-label { +#_sample_helper_static_id_prefix_2 .tooltip-label { fill: #bbbbbb; font-weight: bold; font-style: normal;font-family: sans-serif; @@ -129,7 +129,7 @@ font-size: 13.0px; } - + @@ -278,7 +278,7 @@ font-size: 13.0px; - + @@ -524,7 +524,7 @@ font-size: 13.0px; - + @@ -607,6 +607,6 @@ font-size: 13.0px; - + \ No newline at end of file diff --git a/docs/images/guides/quickStartGuide/experimentalTooltipsCustomizedWithLine.svg b/docs/images/guides/quickStartGuide/experimentalTooltipsCustomizedWithLine.svg index 5c51232ed..1205b9112 100644 --- a/docs/images/guides/quickStartGuide/experimentalTooltipsCustomizedWithLine.svg +++ b/docs/images/guides/quickStartGuide/experimentalTooltipsCustomizedWithLine.svg @@ -10,117 +10,117 @@ text { text-rendering: optimizeLegibility; } -#xXxprefixXx0 .plot-title { +#_sample_helper_static_id_prefix_0 .plot-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-x { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-x { fill: #ffffff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-y { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-y { fill: #ffffff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-text { +#_sample_helper_static_id_prefix_2 .tooltip-text { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-title { +#_sample_helper_static_id_prefix_2 .tooltip-title { fill: #474747; font-weight: bold; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-label { +#_sample_helper_static_id_prefix_2 .tooltip-label { fill: #474747; font-weight: bold; font-style: normal;font-family: sans-serif; @@ -129,7 +129,7 @@ font-size: 13.0px; } - + @@ -169,7 +169,7 @@ font-size: 13.0px; - + @@ -415,7 +415,7 @@ font-size: 13.0px; - + @@ -607,6 +607,6 @@ font-size: 13.0px; - + \ No newline at end of file diff --git a/docs/images/guides/quickStartGuide/experimentalTooltipsCustomizedWithLine_dark.svg b/docs/images/guides/quickStartGuide/experimentalTooltipsCustomizedWithLine_dark.svg index a863f0c26..64985463b 100644 --- a/docs/images/guides/quickStartGuide/experimentalTooltipsCustomizedWithLine_dark.svg +++ b/docs/images/guides/quickStartGuide/experimentalTooltipsCustomizedWithLine_dark.svg @@ -10,117 +10,117 @@ text { text-rendering: optimizeLegibility; } -#xXxprefixXx0 .plot-title { +#_sample_helper_static_id_prefix_0 .plot-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-x { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-x { fill: #303030; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-y { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-y { fill: #303030; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-text { +#_sample_helper_static_id_prefix_2 .tooltip-text { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-title { +#_sample_helper_static_id_prefix_2 .tooltip-title { fill: #bbbbbb; font-weight: bold; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-label { +#_sample_helper_static_id_prefix_2 .tooltip-label { fill: #bbbbbb; font-weight: bold; font-style: normal;font-family: sans-serif; @@ -129,7 +129,7 @@ font-size: 13.0px; } - + @@ -278,7 +278,7 @@ font-size: 13.0px; - + @@ -524,7 +524,7 @@ font-size: 13.0px; - + @@ -607,6 +607,6 @@ font-size: 13.0px; - + \ No newline at end of file diff --git a/docs/images/guides/quickStartGuide/experimentalTooltipsHideTooltips.svg b/docs/images/guides/quickStartGuide/experimentalTooltipsHideTooltips.svg index 5c51232ed..1205b9112 100644 --- a/docs/images/guides/quickStartGuide/experimentalTooltipsHideTooltips.svg +++ b/docs/images/guides/quickStartGuide/experimentalTooltipsHideTooltips.svg @@ -10,117 +10,117 @@ text { text-rendering: optimizeLegibility; } -#xXxprefixXx0 .plot-title { +#_sample_helper_static_id_prefix_0 .plot-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-x { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-x { fill: #ffffff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-y { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-y { fill: #ffffff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-text { +#_sample_helper_static_id_prefix_2 .tooltip-text { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-title { +#_sample_helper_static_id_prefix_2 .tooltip-title { fill: #474747; font-weight: bold; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-label { +#_sample_helper_static_id_prefix_2 .tooltip-label { fill: #474747; font-weight: bold; font-style: normal;font-family: sans-serif; @@ -129,7 +129,7 @@ font-size: 13.0px; } - + @@ -169,7 +169,7 @@ font-size: 13.0px; - + @@ -415,7 +415,7 @@ font-size: 13.0px; - + @@ -607,6 +607,6 @@ font-size: 13.0px; - + \ No newline at end of file diff --git a/docs/images/guides/quickStartGuide/experimentalTooltipsHideTooltips_dark.svg b/docs/images/guides/quickStartGuide/experimentalTooltipsHideTooltips_dark.svg index a863f0c26..64985463b 100644 --- a/docs/images/guides/quickStartGuide/experimentalTooltipsHideTooltips_dark.svg +++ b/docs/images/guides/quickStartGuide/experimentalTooltipsHideTooltips_dark.svg @@ -10,117 +10,117 @@ text { text-rendering: optimizeLegibility; } -#xXxprefixXx0 .plot-title { +#_sample_helper_static_id_prefix_0 .plot-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-x { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-x { fill: #303030; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-y { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-y { fill: #303030; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-text { +#_sample_helper_static_id_prefix_2 .tooltip-text { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-title { +#_sample_helper_static_id_prefix_2 .tooltip-title { fill: #bbbbbb; font-weight: bold; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-label { +#_sample_helper_static_id_prefix_2 .tooltip-label { fill: #bbbbbb; font-weight: bold; font-style: normal;font-family: sans-serif; @@ -129,7 +129,7 @@ font-size: 13.0px; } - + @@ -278,7 +278,7 @@ font-size: 13.0px; - + @@ -524,7 +524,7 @@ font-size: 13.0px; - + @@ -607,6 +607,6 @@ font-size: 13.0px; - + \ No newline at end of file diff --git a/docs/images/guides/quickStartGuide/experimentalTooltipsWithTitleAnchorMinWidth.svg b/docs/images/guides/quickStartGuide/experimentalTooltipsWithTitleAnchorMinWidth.svg index 5c51232ed..1205b9112 100644 --- a/docs/images/guides/quickStartGuide/experimentalTooltipsWithTitleAnchorMinWidth.svg +++ b/docs/images/guides/quickStartGuide/experimentalTooltipsWithTitleAnchorMinWidth.svg @@ -10,117 +10,117 @@ text { text-rendering: optimizeLegibility; } -#xXxprefixXx0 .plot-title { +#_sample_helper_static_id_prefix_0 .plot-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-x { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-x { fill: #ffffff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-y { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-y { fill: #ffffff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-text { +#_sample_helper_static_id_prefix_2 .tooltip-text { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-title { +#_sample_helper_static_id_prefix_2 .tooltip-title { fill: #474747; font-weight: bold; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-label { +#_sample_helper_static_id_prefix_2 .tooltip-label { fill: #474747; font-weight: bold; font-style: normal;font-family: sans-serif; @@ -129,7 +129,7 @@ font-size: 13.0px; } - + @@ -169,7 +169,7 @@ font-size: 13.0px; - + @@ -415,7 +415,7 @@ font-size: 13.0px; - + @@ -607,6 +607,6 @@ font-size: 13.0px; - + \ No newline at end of file diff --git a/docs/images/guides/quickStartGuide/experimentalTooltipsWithTitleAnchorMinWidth_dark.svg b/docs/images/guides/quickStartGuide/experimentalTooltipsWithTitleAnchorMinWidth_dark.svg index a863f0c26..64985463b 100644 --- a/docs/images/guides/quickStartGuide/experimentalTooltipsWithTitleAnchorMinWidth_dark.svg +++ b/docs/images/guides/quickStartGuide/experimentalTooltipsWithTitleAnchorMinWidth_dark.svg @@ -10,117 +10,117 @@ text { text-rendering: optimizeLegibility; } -#xXxprefixXx0 .plot-title { +#_sample_helper_static_id_prefix_0 .plot-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-x { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-x { fill: #303030; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-y { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-y { fill: #303030; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-text { +#_sample_helper_static_id_prefix_2 .tooltip-text { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-title { +#_sample_helper_static_id_prefix_2 .tooltip-title { fill: #bbbbbb; font-weight: bold; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-label { +#_sample_helper_static_id_prefix_2 .tooltip-label { fill: #bbbbbb; font-weight: bold; font-style: normal;font-family: sans-serif; @@ -129,7 +129,7 @@ font-size: 13.0px; } - + @@ -278,7 +278,7 @@ font-size: 13.0px; - + @@ -524,7 +524,7 @@ font-size: 13.0px; - + @@ -607,6 +607,6 @@ font-size: 13.0px; - + \ No newline at end of file diff --git a/docs/images/guides/quickStartGuide/groupingPlotOnDataFrame.svg b/docs/images/guides/quickStartGuide/groupingPlotOnDataFrame.svg index dcd534b8a..eb0c52ce1 100644 --- a/docs/images/guides/quickStartGuide/groupingPlotOnDataFrame.svg +++ b/docs/images/guides/quickStartGuide/groupingPlotOnDataFrame.svg @@ -10,117 +10,117 @@ text { text-rendering: optimizeLegibility; } -#xXxprefixXx0 .plot-title { +#_sample_helper_static_id_prefix_0 .plot-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-x { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-x { fill: #ffffff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-y { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-y { fill: #ffffff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-text { +#_sample_helper_static_id_prefix_2 .tooltip-text { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-title { +#_sample_helper_static_id_prefix_2 .tooltip-title { fill: #474747; font-weight: bold; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-label { +#_sample_helper_static_id_prefix_2 .tooltip-label { fill: #474747; font-weight: bold; font-style: normal;font-family: sans-serif; @@ -129,7 +129,7 @@ font-size: 13.0px; } - + @@ -191,7 +191,7 @@ font-size: 13.0px; - + @@ -211,7 +211,7 @@ font-size: 13.0px; - + @@ -431,6 +431,6 @@ font-size: 13.0px; - + \ No newline at end of file diff --git a/docs/images/guides/quickStartGuide/groupingPlotOnDataFrame_dark.svg b/docs/images/guides/quickStartGuide/groupingPlotOnDataFrame_dark.svg index 1c1d3367b..2b1f689a8 100644 --- a/docs/images/guides/quickStartGuide/groupingPlotOnDataFrame_dark.svg +++ b/docs/images/guides/quickStartGuide/groupingPlotOnDataFrame_dark.svg @@ -10,117 +10,117 @@ text { text-rendering: optimizeLegibility; } -#xXxprefixXx0 .plot-title { +#_sample_helper_static_id_prefix_0 .plot-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-x { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-x { fill: #303030; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-y { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-y { fill: #303030; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-text { +#_sample_helper_static_id_prefix_2 .tooltip-text { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-title { +#_sample_helper_static_id_prefix_2 .tooltip-title { fill: #bbbbbb; font-weight: bold; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-label { +#_sample_helper_static_id_prefix_2 .tooltip-label { fill: #bbbbbb; font-weight: bold; font-style: normal;font-family: sans-serif; @@ -129,7 +129,7 @@ font-size: 13.0px; } - + @@ -389,7 +389,7 @@ font-size: 13.0px; - + @@ -409,7 +409,7 @@ font-size: 13.0px; - + @@ -431,6 +431,6 @@ font-size: 13.0px; - + \ No newline at end of file diff --git a/docs/images/guides/quickStartGuide/groupingPositionDodgePlot.svg b/docs/images/guides/quickStartGuide/groupingPositionDodgePlot.svg index 3dc7cb324..7ec239c3e 100644 --- a/docs/images/guides/quickStartGuide/groupingPositionDodgePlot.svg +++ b/docs/images/guides/quickStartGuide/groupingPositionDodgePlot.svg @@ -10,117 +10,117 @@ text { text-rendering: optimizeLegibility; } -#xXxprefixXx0 .plot-title { +#_sample_helper_static_id_prefix_0 .plot-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-x { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-x { fill: #ffffff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-y { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-y { fill: #ffffff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-text { +#_sample_helper_static_id_prefix_2 .tooltip-text { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-title { +#_sample_helper_static_id_prefix_2 .tooltip-title { fill: #474747; font-weight: bold; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-label { +#_sample_helper_static_id_prefix_2 .tooltip-label { fill: #474747; font-weight: bold; font-style: normal;font-family: sans-serif; @@ -129,7 +129,7 @@ font-size: 13.0px; } - + @@ -173,7 +173,7 @@ font-size: 13.0px; - + @@ -199,7 +199,7 @@ font-size: 13.0px; - + @@ -411,6 +411,6 @@ font-size: 13.0px; - + \ No newline at end of file diff --git a/docs/images/guides/quickStartGuide/groupingPositionDodgePlot_dark.svg b/docs/images/guides/quickStartGuide/groupingPositionDodgePlot_dark.svg index 9d1257edf..fbc84c20f 100644 --- a/docs/images/guides/quickStartGuide/groupingPositionDodgePlot_dark.svg +++ b/docs/images/guides/quickStartGuide/groupingPositionDodgePlot_dark.svg @@ -10,117 +10,117 @@ text { text-rendering: optimizeLegibility; } -#xXxprefixXx0 .plot-title { +#_sample_helper_static_id_prefix_0 .plot-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-x { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-x { fill: #303030; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-y { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-y { fill: #303030; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-text { +#_sample_helper_static_id_prefix_2 .tooltip-text { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-title { +#_sample_helper_static_id_prefix_2 .tooltip-title { fill: #bbbbbb; font-weight: bold; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-label { +#_sample_helper_static_id_prefix_2 .tooltip-label { fill: #bbbbbb; font-weight: bold; font-style: normal;font-family: sans-serif; @@ -129,7 +129,7 @@ font-size: 13.0px; } - + @@ -290,7 +290,7 @@ font-size: 13.0px; - + @@ -316,7 +316,7 @@ font-size: 13.0px; - + @@ -411,6 +411,6 @@ font-size: 13.0px; - + \ No newline at end of file diff --git a/docs/images/guides/quickStartGuide/groupingPositionIdentityPlot.svg b/docs/images/guides/quickStartGuide/groupingPositionIdentityPlot.svg index 31c8e5d88..23cd42e8e 100644 --- a/docs/images/guides/quickStartGuide/groupingPositionIdentityPlot.svg +++ b/docs/images/guides/quickStartGuide/groupingPositionIdentityPlot.svg @@ -10,117 +10,117 @@ text { text-rendering: optimizeLegibility; } -#xXxprefixXx0 .plot-title { +#_sample_helper_static_id_prefix_0 .plot-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-x { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-x { fill: #ffffff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-y { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-y { fill: #ffffff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-text { +#_sample_helper_static_id_prefix_2 .tooltip-text { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-title { +#_sample_helper_static_id_prefix_2 .tooltip-title { fill: #474747; font-weight: bold; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-label { +#_sample_helper_static_id_prefix_2 .tooltip-label { fill: #474747; font-weight: bold; font-style: normal;font-family: sans-serif; @@ -129,7 +129,7 @@ font-size: 13.0px; } - + @@ -173,7 +173,7 @@ font-size: 13.0px; - + @@ -199,7 +199,7 @@ font-size: 13.0px; - + @@ -411,6 +411,6 @@ font-size: 13.0px; - + \ No newline at end of file diff --git a/docs/images/guides/quickStartGuide/groupingPositionIdentityPlot_dark.svg b/docs/images/guides/quickStartGuide/groupingPositionIdentityPlot_dark.svg index 4a3d98511..4b74e134f 100644 --- a/docs/images/guides/quickStartGuide/groupingPositionIdentityPlot_dark.svg +++ b/docs/images/guides/quickStartGuide/groupingPositionIdentityPlot_dark.svg @@ -10,117 +10,117 @@ text { text-rendering: optimizeLegibility; } -#xXxprefixXx0 .plot-title { +#_sample_helper_static_id_prefix_0 .plot-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-x { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-x { fill: #303030; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-y { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-y { fill: #303030; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-text { +#_sample_helper_static_id_prefix_2 .tooltip-text { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-title { +#_sample_helper_static_id_prefix_2 .tooltip-title { fill: #bbbbbb; font-weight: bold; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-label { +#_sample_helper_static_id_prefix_2 .tooltip-label { fill: #bbbbbb; font-weight: bold; font-style: normal;font-family: sans-serif; @@ -129,7 +129,7 @@ font-size: 13.0px; } - + @@ -290,7 +290,7 @@ font-size: 13.0px; - + @@ -316,7 +316,7 @@ font-size: 13.0px; - + @@ -411,6 +411,6 @@ font-size: 13.0px; - + \ No newline at end of file diff --git a/docs/images/guides/quickStartGuide/groupingPositionStackPlot.svg b/docs/images/guides/quickStartGuide/groupingPositionStackPlot.svg index ddf3ebe66..66014e132 100644 --- a/docs/images/guides/quickStartGuide/groupingPositionStackPlot.svg +++ b/docs/images/guides/quickStartGuide/groupingPositionStackPlot.svg @@ -10,117 +10,117 @@ text { text-rendering: optimizeLegibility; } -#xXxprefixXx0 .plot-title { +#_sample_helper_static_id_prefix_0 .plot-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-x { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-x { fill: #ffffff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-y { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-y { fill: #ffffff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-text { +#_sample_helper_static_id_prefix_2 .tooltip-text { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-title { +#_sample_helper_static_id_prefix_2 .tooltip-title { fill: #474747; font-weight: bold; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-label { +#_sample_helper_static_id_prefix_2 .tooltip-label { fill: #474747; font-weight: bold; font-style: normal;font-family: sans-serif; @@ -129,7 +129,7 @@ font-size: 13.0px; } - + @@ -165,7 +165,7 @@ font-size: 13.0px; - + @@ -191,7 +191,7 @@ font-size: 13.0px; - + @@ -375,6 +375,6 @@ font-size: 13.0px; - + \ No newline at end of file diff --git a/docs/images/guides/quickStartGuide/groupingPositionStackPlot_dark.svg b/docs/images/guides/quickStartGuide/groupingPositionStackPlot_dark.svg index 1f15b84cc..613e2b5f9 100644 --- a/docs/images/guides/quickStartGuide/groupingPositionStackPlot_dark.svg +++ b/docs/images/guides/quickStartGuide/groupingPositionStackPlot_dark.svg @@ -10,117 +10,117 @@ text { text-rendering: optimizeLegibility; } -#xXxprefixXx0 .plot-title { +#_sample_helper_static_id_prefix_0 .plot-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-x { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-x { fill: #303030; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-y { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-y { fill: #303030; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-text { +#_sample_helper_static_id_prefix_2 .tooltip-text { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-title { +#_sample_helper_static_id_prefix_2 .tooltip-title { fill: #bbbbbb; font-weight: bold; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-label { +#_sample_helper_static_id_prefix_2 .tooltip-label { fill: #bbbbbb; font-weight: bold; font-style: normal;font-family: sans-serif; @@ -129,7 +129,7 @@ font-size: 13.0px; } - + @@ -254,7 +254,7 @@ font-size: 13.0px; - + @@ -280,7 +280,7 @@ font-size: 13.0px; - + @@ -375,6 +375,6 @@ font-size: 13.0px; - + \ No newline at end of file diff --git a/docs/images/guides/quickStartGuide/groupingSimpleGrouping.svg b/docs/images/guides/quickStartGuide/groupingSimpleGrouping.svg index dcd534b8a..eb0c52ce1 100644 --- a/docs/images/guides/quickStartGuide/groupingSimpleGrouping.svg +++ b/docs/images/guides/quickStartGuide/groupingSimpleGrouping.svg @@ -10,117 +10,117 @@ text { text-rendering: optimizeLegibility; } -#xXxprefixXx0 .plot-title { +#_sample_helper_static_id_prefix_0 .plot-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-x { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-x { fill: #ffffff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-y { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-y { fill: #ffffff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-text { +#_sample_helper_static_id_prefix_2 .tooltip-text { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-title { +#_sample_helper_static_id_prefix_2 .tooltip-title { fill: #474747; font-weight: bold; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-label { +#_sample_helper_static_id_prefix_2 .tooltip-label { fill: #474747; font-weight: bold; font-style: normal;font-family: sans-serif; @@ -129,7 +129,7 @@ font-size: 13.0px; } - + @@ -191,7 +191,7 @@ font-size: 13.0px; - + @@ -211,7 +211,7 @@ font-size: 13.0px; - + @@ -431,6 +431,6 @@ font-size: 13.0px; - + \ No newline at end of file diff --git a/docs/images/guides/quickStartGuide/groupingSimpleGrouping_dark.svg b/docs/images/guides/quickStartGuide/groupingSimpleGrouping_dark.svg index 1c1d3367b..2b1f689a8 100644 --- a/docs/images/guides/quickStartGuide/groupingSimpleGrouping_dark.svg +++ b/docs/images/guides/quickStartGuide/groupingSimpleGrouping_dark.svg @@ -10,117 +10,117 @@ text { text-rendering: optimizeLegibility; } -#xXxprefixXx0 .plot-title { +#_sample_helper_static_id_prefix_0 .plot-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-x { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-x { fill: #303030; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-y { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-y { fill: #303030; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-text { +#_sample_helper_static_id_prefix_2 .tooltip-text { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-title { +#_sample_helper_static_id_prefix_2 .tooltip-title { fill: #bbbbbb; font-weight: bold; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-label { +#_sample_helper_static_id_prefix_2 .tooltip-label { fill: #bbbbbb; font-weight: bold; font-style: normal;font-family: sans-serif; @@ -129,7 +129,7 @@ font-size: 13.0px; } - + @@ -389,7 +389,7 @@ font-size: 13.0px; - + @@ -409,7 +409,7 @@ font-size: 13.0px; - + @@ -431,6 +431,6 @@ font-size: 13.0px; - + \ No newline at end of file diff --git a/docs/images/guides/quickStartGuide/groupingWithColorMapping.svg b/docs/images/guides/quickStartGuide/groupingWithColorMapping.svg index b4853079a..f99310da3 100644 --- a/docs/images/guides/quickStartGuide/groupingWithColorMapping.svg +++ b/docs/images/guides/quickStartGuide/groupingWithColorMapping.svg @@ -10,117 +10,117 @@ text { text-rendering: optimizeLegibility; } -#xXxprefixXx0 .plot-title { +#_sample_helper_static_id_prefix_0 .plot-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-x { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-x { fill: #ffffff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-y { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-y { fill: #ffffff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-text { +#_sample_helper_static_id_prefix_2 .tooltip-text { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-title { +#_sample_helper_static_id_prefix_2 .tooltip-title { fill: #474747; font-weight: bold; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-label { +#_sample_helper_static_id_prefix_2 .tooltip-label { fill: #474747; font-weight: bold; font-style: normal;font-family: sans-serif; @@ -129,7 +129,7 @@ font-size: 13.0px; } - + @@ -179,7 +179,7 @@ font-size: 13.0px; - + @@ -199,7 +199,7 @@ font-size: 13.0px; - + @@ -423,6 +423,6 @@ font-size: 13.0px; - + \ No newline at end of file diff --git a/docs/images/guides/quickStartGuide/groupingWithColorMapping_dark.svg b/docs/images/guides/quickStartGuide/groupingWithColorMapping_dark.svg index e85488b1f..17859fc14 100644 --- a/docs/images/guides/quickStartGuide/groupingWithColorMapping_dark.svg +++ b/docs/images/guides/quickStartGuide/groupingWithColorMapping_dark.svg @@ -10,117 +10,117 @@ text { text-rendering: optimizeLegibility; } -#xXxprefixXx0 .plot-title { +#_sample_helper_static_id_prefix_0 .plot-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-x { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-x { fill: #303030; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-y { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-y { fill: #303030; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-text { +#_sample_helper_static_id_prefix_2 .tooltip-text { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-title { +#_sample_helper_static_id_prefix_2 .tooltip-title { fill: #bbbbbb; font-weight: bold; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-label { +#_sample_helper_static_id_prefix_2 .tooltip-label { fill: #bbbbbb; font-weight: bold; font-style: normal;font-family: sans-serif; @@ -129,7 +129,7 @@ font-size: 13.0px; } - + @@ -323,7 +323,7 @@ font-size: 13.0px; - + @@ -343,7 +343,7 @@ font-size: 13.0px; - + @@ -423,6 +423,6 @@ font-size: 13.0px; - + \ No newline at end of file diff --git a/docs/images/guides/quickStartGuide/implicitGroupingSimplePlot.svg b/docs/images/guides/quickStartGuide/implicitGroupingSimplePlot.svg index b4853079a..f99310da3 100644 --- a/docs/images/guides/quickStartGuide/implicitGroupingSimplePlot.svg +++ b/docs/images/guides/quickStartGuide/implicitGroupingSimplePlot.svg @@ -10,117 +10,117 @@ text { text-rendering: optimizeLegibility; } -#xXxprefixXx0 .plot-title { +#_sample_helper_static_id_prefix_0 .plot-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-x { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-x { fill: #ffffff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-y { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-y { fill: #ffffff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-text { +#_sample_helper_static_id_prefix_2 .tooltip-text { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-title { +#_sample_helper_static_id_prefix_2 .tooltip-title { fill: #474747; font-weight: bold; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-label { +#_sample_helper_static_id_prefix_2 .tooltip-label { fill: #474747; font-weight: bold; font-style: normal;font-family: sans-serif; @@ -129,7 +129,7 @@ font-size: 13.0px; } - + @@ -179,7 +179,7 @@ font-size: 13.0px; - + @@ -199,7 +199,7 @@ font-size: 13.0px; - + @@ -423,6 +423,6 @@ font-size: 13.0px; - + \ No newline at end of file diff --git a/docs/images/guides/quickStartGuide/implicitGroupingSimplePlot_dark.svg b/docs/images/guides/quickStartGuide/implicitGroupingSimplePlot_dark.svg index e85488b1f..17859fc14 100644 --- a/docs/images/guides/quickStartGuide/implicitGroupingSimplePlot_dark.svg +++ b/docs/images/guides/quickStartGuide/implicitGroupingSimplePlot_dark.svg @@ -10,117 +10,117 @@ text { text-rendering: optimizeLegibility; } -#xXxprefixXx0 .plot-title { +#_sample_helper_static_id_prefix_0 .plot-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-x { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-x { fill: #303030; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-y { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-y { fill: #303030; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-text { +#_sample_helper_static_id_prefix_2 .tooltip-text { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-title { +#_sample_helper_static_id_prefix_2 .tooltip-title { fill: #bbbbbb; font-weight: bold; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-label { +#_sample_helper_static_id_prefix_2 .tooltip-label { fill: #bbbbbb; font-weight: bold; font-style: normal;font-family: sans-serif; @@ -129,7 +129,7 @@ font-size: 13.0px; } - + @@ -323,7 +323,7 @@ font-size: 13.0px; - + @@ -343,7 +343,7 @@ font-size: 13.0px; - + @@ -423,6 +423,6 @@ font-size: 13.0px; - + \ No newline at end of file diff --git a/docs/images/guides/quickStartGuide/kotlinDataframeApiDrvCountPlot.svg b/docs/images/guides/quickStartGuide/kotlinDataframeApiDrvCountPlot.svg index 0e04b2b50..588509d6a 100644 --- a/docs/images/guides/quickStartGuide/kotlinDataframeApiDrvCountPlot.svg +++ b/docs/images/guides/quickStartGuide/kotlinDataframeApiDrvCountPlot.svg @@ -10,117 +10,117 @@ text { text-rendering: optimizeLegibility; } -#xXxprefixXx0 .plot-title { +#_sample_helper_static_id_prefix_0 .plot-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-x { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-x { fill: #ffffff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-y { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-y { fill: #ffffff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-text { +#_sample_helper_static_id_prefix_2 .tooltip-text { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-title { +#_sample_helper_static_id_prefix_2 .tooltip-title { fill: #474747; font-weight: bold; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-label { +#_sample_helper_static_id_prefix_2 .tooltip-label { fill: #474747; font-weight: bold; font-style: normal;font-family: sans-serif; @@ -129,7 +129,7 @@ font-size: 13.0px; } - + @@ -173,7 +173,7 @@ font-size: 13.0px; - + @@ -187,7 +187,7 @@ font-size: 13.0px; - + @@ -326,6 +326,6 @@ font-size: 13.0px; - + \ No newline at end of file diff --git a/docs/images/guides/quickStartGuide/kotlinDataframeApiDrvCountPlot_dark.svg b/docs/images/guides/quickStartGuide/kotlinDataframeApiDrvCountPlot_dark.svg index 2503132ee..774f83735 100644 --- a/docs/images/guides/quickStartGuide/kotlinDataframeApiDrvCountPlot_dark.svg +++ b/docs/images/guides/quickStartGuide/kotlinDataframeApiDrvCountPlot_dark.svg @@ -10,117 +10,117 @@ text { text-rendering: optimizeLegibility; } -#xXxprefixXx0 .plot-title { +#_sample_helper_static_id_prefix_0 .plot-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-x { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-x { fill: #303030; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-y { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-y { fill: #303030; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-text { +#_sample_helper_static_id_prefix_2 .tooltip-text { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-title { +#_sample_helper_static_id_prefix_2 .tooltip-title { fill: #bbbbbb; font-weight: bold; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-label { +#_sample_helper_static_id_prefix_2 .tooltip-label { fill: #bbbbbb; font-weight: bold; font-style: normal;font-family: sans-serif; @@ -129,7 +129,7 @@ font-size: 13.0px; } - + @@ -290,7 +290,7 @@ font-size: 13.0px; - + @@ -304,7 +304,7 @@ font-size: 13.0px; - + @@ -326,6 +326,6 @@ font-size: 13.0px; - + \ No newline at end of file diff --git a/docs/images/guides/quickStartGuide/kotlinDataframeApiPlotMpgInfo.svg b/docs/images/guides/quickStartGuide/kotlinDataframeApiPlotMpgInfo.svg index 407a920be..1fc2542a4 100644 --- a/docs/images/guides/quickStartGuide/kotlinDataframeApiPlotMpgInfo.svg +++ b/docs/images/guides/quickStartGuide/kotlinDataframeApiPlotMpgInfo.svg @@ -10,117 +10,117 @@ text { text-rendering: optimizeLegibility; } -#xXxprefixXx0 .plot-title { +#_sample_helper_static_id_prefix_0 .plot-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-x { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-x { fill: #ffffff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-y { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-y { fill: #ffffff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-text { +#_sample_helper_static_id_prefix_2 .tooltip-text { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-title { +#_sample_helper_static_id_prefix_2 .tooltip-title { fill: #474747; font-weight: bold; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-label { +#_sample_helper_static_id_prefix_2 .tooltip-label { fill: #474747; font-weight: bold; font-style: normal;font-family: sans-serif; @@ -129,7 +129,7 @@ font-size: 13.0px; } - + @@ -167,7 +167,7 @@ font-size: 13.0px; - + @@ -412,7 +412,7 @@ font-size: 13.0px; - + @@ -658,6 +658,6 @@ font-size: 13.0px; - + \ No newline at end of file diff --git a/docs/images/guides/quickStartGuide/kotlinDataframeApiPlotMpgInfo_dark.svg b/docs/images/guides/quickStartGuide/kotlinDataframeApiPlotMpgInfo_dark.svg index 72c7420d5..0b5dd1900 100644 --- a/docs/images/guides/quickStartGuide/kotlinDataframeApiPlotMpgInfo_dark.svg +++ b/docs/images/guides/quickStartGuide/kotlinDataframeApiPlotMpgInfo_dark.svg @@ -10,117 +10,117 @@ text { text-rendering: optimizeLegibility; } -#xXxprefixXx0 .plot-title { +#_sample_helper_static_id_prefix_0 .plot-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-x { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-x { fill: #303030; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-y { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-y { fill: #303030; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-text { +#_sample_helper_static_id_prefix_2 .tooltip-text { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-title { +#_sample_helper_static_id_prefix_2 .tooltip-title { fill: #bbbbbb; font-weight: bold; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-label { +#_sample_helper_static_id_prefix_2 .tooltip-label { fill: #bbbbbb; font-weight: bold; font-style: normal;font-family: sans-serif; @@ -129,7 +129,7 @@ font-size: 13.0px; } - + @@ -269,7 +269,7 @@ font-size: 13.0px; - + @@ -514,7 +514,7 @@ font-size: 13.0px; - + @@ -658,6 +658,6 @@ font-size: 13.0px; - + \ No newline at end of file diff --git a/docs/images/guides/stat/guideBoxplotConfigureGroupedBoxplot.svg b/docs/images/guides/stat/guideBoxplotConfigureGroupedBoxplot.svg index 7f977b2a1..2879c393e 100644 --- a/docs/images/guides/stat/guideBoxplotConfigureGroupedBoxplot.svg +++ b/docs/images/guides/stat/guideBoxplotConfigureGroupedBoxplot.svg @@ -10,117 +10,117 @@ text { text-rendering: optimizeLegibility; } -#xXxprefixXx0 .plot-title { +#_sample_helper_static_id_prefix_0 .plot-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx3 .axis-tooltip-text-x { +#_sample_helper_static_id_prefix_3 .axis-tooltip-text-x { fill: #ffffff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx3 .axis-tooltip-text-y { +#_sample_helper_static_id_prefix_3 .axis-tooltip-text-y { fill: #ffffff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx3 .tooltip-text { +#_sample_helper_static_id_prefix_3 .tooltip-text { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx3 .tooltip-title { +#_sample_helper_static_id_prefix_3 .tooltip-title { fill: #474747; font-weight: bold; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx3 .tooltip-label { +#_sample_helper_static_id_prefix_3 .tooltip-label { fill: #474747; font-weight: bold; font-style: normal;font-family: sans-serif; @@ -129,7 +129,7 @@ font-size: 13.0px; } - + @@ -171,7 +171,7 @@ font-size: 13.0px; - + @@ -374,13 +374,13 @@ font-size: 13.0px; - + - + @@ -616,6 +616,6 @@ font-size: 13.0px; - + \ No newline at end of file diff --git a/docs/images/guides/stat/guideBoxplotConfigureGroupedBoxplot_dark.svg b/docs/images/guides/stat/guideBoxplotConfigureGroupedBoxplot_dark.svg index 3faf63059..f8a2cf835 100644 --- a/docs/images/guides/stat/guideBoxplotConfigureGroupedBoxplot_dark.svg +++ b/docs/images/guides/stat/guideBoxplotConfigureGroupedBoxplot_dark.svg @@ -10,117 +10,117 @@ text { text-rendering: optimizeLegibility; } -#xXxprefixXx0 .plot-title { +#_sample_helper_static_id_prefix_0 .plot-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx3 .axis-tooltip-text-x { +#_sample_helper_static_id_prefix_3 .axis-tooltip-text-x { fill: #303030; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx3 .axis-tooltip-text-y { +#_sample_helper_static_id_prefix_3 .axis-tooltip-text-y { fill: #303030; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx3 .tooltip-text { +#_sample_helper_static_id_prefix_3 .tooltip-text { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx3 .tooltip-title { +#_sample_helper_static_id_prefix_3 .tooltip-title { fill: #bbbbbb; font-weight: bold; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx3 .tooltip-label { +#_sample_helper_static_id_prefix_3 .tooltip-label { fill: #bbbbbb; font-weight: bold; font-style: normal;font-family: sans-serif; @@ -129,7 +129,7 @@ font-size: 13.0px; } - + @@ -289,7 +289,7 @@ font-size: 13.0px; - + @@ -492,13 +492,13 @@ font-size: 13.0px; - + - + @@ -616,6 +616,6 @@ font-size: 13.0px; - + \ No newline at end of file diff --git a/docs/images/guides/stat/guideBoxplotCustomizeGroupedBoxplot.svg b/docs/images/guides/stat/guideBoxplotCustomizeGroupedBoxplot.svg index c9f74e441..4677f8151 100644 --- a/docs/images/guides/stat/guideBoxplotCustomizeGroupedBoxplot.svg +++ b/docs/images/guides/stat/guideBoxplotCustomizeGroupedBoxplot.svg @@ -10,117 +10,117 @@ text { text-rendering: optimizeLegibility; } -#xXxprefixXx0 .plot-title { +#_sample_helper_static_id_prefix_0 .plot-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-x { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-x { fill: #ffffff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-y { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-y { fill: #ffffff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-text { +#_sample_helper_static_id_prefix_2 .tooltip-text { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-title { +#_sample_helper_static_id_prefix_2 .tooltip-title { fill: #474747; font-weight: bold; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-label { +#_sample_helper_static_id_prefix_2 .tooltip-label { fill: #474747; font-weight: bold; font-style: normal;font-family: sans-serif; @@ -129,7 +129,7 @@ font-size: 13.0px; } - + @@ -169,7 +169,7 @@ font-size: 13.0px; - + @@ -321,7 +321,7 @@ font-size: 13.0px; - + @@ -530,6 +530,6 @@ font-size: 13.0px; - + \ No newline at end of file diff --git a/docs/images/guides/stat/guideBoxplotCustomizeGroupedBoxplot_dark.svg b/docs/images/guides/stat/guideBoxplotCustomizeGroupedBoxplot_dark.svg index 9a0aa3fdb..a3b8ebb21 100644 --- a/docs/images/guides/stat/guideBoxplotCustomizeGroupedBoxplot_dark.svg +++ b/docs/images/guides/stat/guideBoxplotCustomizeGroupedBoxplot_dark.svg @@ -10,117 +10,117 @@ text { text-rendering: optimizeLegibility; } -#xXxprefixXx0 .plot-title { +#_sample_helper_static_id_prefix_0 .plot-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-x { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-x { fill: #303030; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-y { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-y { fill: #303030; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-text { +#_sample_helper_static_id_prefix_2 .tooltip-text { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-title { +#_sample_helper_static_id_prefix_2 .tooltip-title { fill: #bbbbbb; font-weight: bold; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-label { +#_sample_helper_static_id_prefix_2 .tooltip-label { fill: #bbbbbb; font-weight: bold; font-style: normal;font-family: sans-serif; @@ -129,7 +129,7 @@ font-size: 13.0px; } - + @@ -280,7 +280,7 @@ font-size: 13.0px; - + @@ -432,7 +432,7 @@ font-size: 13.0px; - + @@ -530,6 +530,6 @@ font-size: 13.0px; - + \ No newline at end of file diff --git a/docs/images/guides/stat/guideBoxplotGroupByBoxplot.svg b/docs/images/guides/stat/guideBoxplotGroupByBoxplot.svg index 5dbfef347..8a42c8804 100644 --- a/docs/images/guides/stat/guideBoxplotGroupByBoxplot.svg +++ b/docs/images/guides/stat/guideBoxplotGroupByBoxplot.svg @@ -10,117 +10,117 @@ text { text-rendering: optimizeLegibility; } -#xXxprefixXx0 .plot-title { +#_sample_helper_static_id_prefix_0 .plot-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx3 .axis-tooltip-text-x { +#_sample_helper_static_id_prefix_3 .axis-tooltip-text-x { fill: #ffffff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx3 .axis-tooltip-text-y { +#_sample_helper_static_id_prefix_3 .axis-tooltip-text-y { fill: #ffffff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx3 .tooltip-text { +#_sample_helper_static_id_prefix_3 .tooltip-text { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx3 .tooltip-title { +#_sample_helper_static_id_prefix_3 .tooltip-title { fill: #474747; font-weight: bold; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx3 .tooltip-label { +#_sample_helper_static_id_prefix_3 .tooltip-label { fill: #474747; font-weight: bold; font-style: normal;font-family: sans-serif; @@ -129,7 +129,7 @@ font-size: 13.0px; } - + @@ -171,7 +171,7 @@ font-size: 13.0px; - + @@ -347,13 +347,13 @@ font-size: 13.0px; - + - + @@ -569,6 +569,6 @@ font-size: 13.0px; - + \ No newline at end of file diff --git a/docs/images/guides/stat/guideBoxplotGroupByBoxplot_dark.svg b/docs/images/guides/stat/guideBoxplotGroupByBoxplot_dark.svg index 13d44d223..4ad68ac63 100644 --- a/docs/images/guides/stat/guideBoxplotGroupByBoxplot_dark.svg +++ b/docs/images/guides/stat/guideBoxplotGroupByBoxplot_dark.svg @@ -10,117 +10,117 @@ text { text-rendering: optimizeLegibility; } -#xXxprefixXx0 .plot-title { +#_sample_helper_static_id_prefix_0 .plot-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx3 .axis-tooltip-text-x { +#_sample_helper_static_id_prefix_3 .axis-tooltip-text-x { fill: #303030; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx3 .axis-tooltip-text-y { +#_sample_helper_static_id_prefix_3 .axis-tooltip-text-y { fill: #303030; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx3 .tooltip-text { +#_sample_helper_static_id_prefix_3 .tooltip-text { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx3 .tooltip-title { +#_sample_helper_static_id_prefix_3 .tooltip-title { fill: #bbbbbb; font-weight: bold; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx3 .tooltip-label { +#_sample_helper_static_id_prefix_3 .tooltip-label { fill: #bbbbbb; font-weight: bold; font-style: normal;font-family: sans-serif; @@ -129,7 +129,7 @@ font-size: 13.0px; } - + @@ -289,7 +289,7 @@ font-size: 13.0px; - + @@ -465,13 +465,13 @@ font-size: 13.0px; - + - + @@ -569,6 +569,6 @@ font-size: 13.0px; - + \ No newline at end of file diff --git a/docs/images/guides/stat/guideBoxplotGroupedBorderLines.svg b/docs/images/guides/stat/guideBoxplotGroupedBorderLines.svg index 61fcc3d64..e8a1d0b22 100644 --- a/docs/images/guides/stat/guideBoxplotGroupedBorderLines.svg +++ b/docs/images/guides/stat/guideBoxplotGroupedBorderLines.svg @@ -10,117 +10,117 @@ text { text-rendering: optimizeLegibility; } -#xXxprefixXx0 .plot-title { +#_sample_helper_static_id_prefix_0 .plot-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-x { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-x { fill: #ffffff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-y { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-y { fill: #ffffff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-text { +#_sample_helper_static_id_prefix_2 .tooltip-text { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-title { +#_sample_helper_static_id_prefix_2 .tooltip-title { fill: #474747; font-weight: bold; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-label { +#_sample_helper_static_id_prefix_2 .tooltip-label { fill: #474747; font-weight: bold; font-style: normal;font-family: sans-serif; @@ -129,7 +129,7 @@ font-size: 13.0px; } - + @@ -169,7 +169,7 @@ font-size: 13.0px; - + @@ -273,7 +273,7 @@ font-size: 13.0px; - + @@ -476,6 +476,6 @@ font-size: 13.0px; - + \ No newline at end of file diff --git a/docs/images/guides/stat/guideBoxplotGroupedBorderLines_dark.svg b/docs/images/guides/stat/guideBoxplotGroupedBorderLines_dark.svg index 66cbe482a..dec9e9faf 100644 --- a/docs/images/guides/stat/guideBoxplotGroupedBorderLines_dark.svg +++ b/docs/images/guides/stat/guideBoxplotGroupedBorderLines_dark.svg @@ -10,117 +10,117 @@ text { text-rendering: optimizeLegibility; } -#xXxprefixXx0 .plot-title { +#_sample_helper_static_id_prefix_0 .plot-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-x { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-x { fill: #303030; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-y { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-y { fill: #303030; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-text { +#_sample_helper_static_id_prefix_2 .tooltip-text { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-title { +#_sample_helper_static_id_prefix_2 .tooltip-title { fill: #bbbbbb; font-weight: bold; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-label { +#_sample_helper_static_id_prefix_2 .tooltip-label { fill: #bbbbbb; font-weight: bold; font-style: normal;font-family: sans-serif; @@ -129,7 +129,7 @@ font-size: 13.0px; } - + @@ -280,7 +280,7 @@ font-size: 13.0px; - + @@ -384,7 +384,7 @@ font-size: 13.0px; - + @@ -476,6 +476,6 @@ font-size: 13.0px; - + \ No newline at end of file diff --git a/docs/images/guides/stat/guideBoxplotGroupedStatBoxplotEBPlot.svg b/docs/images/guides/stat/guideBoxplotGroupedStatBoxplotEBPlot.svg index bfbf972e6..f96bb5817 100644 --- a/docs/images/guides/stat/guideBoxplotGroupedStatBoxplotEBPlot.svg +++ b/docs/images/guides/stat/guideBoxplotGroupedStatBoxplotEBPlot.svg @@ -10,117 +10,117 @@ text { text-rendering: optimizeLegibility; } -#xXxprefixXx0 .plot-title { +#_sample_helper_static_id_prefix_0 .plot-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-x { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-x { fill: #ffffff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-y { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-y { fill: #ffffff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-text { +#_sample_helper_static_id_prefix_2 .tooltip-text { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-title { +#_sample_helper_static_id_prefix_2 .tooltip-title { fill: #474747; font-weight: bold; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-label { +#_sample_helper_static_id_prefix_2 .tooltip-label { fill: #474747; font-weight: bold; font-style: normal;font-family: sans-serif; @@ -129,7 +129,7 @@ font-size: 13.0px; } - + @@ -169,7 +169,7 @@ font-size: 13.0px; - + @@ -273,7 +273,7 @@ font-size: 13.0px; - + @@ -406,6 +406,6 @@ font-size: 13.0px; - + \ No newline at end of file diff --git a/docs/images/guides/stat/guideBoxplotGroupedStatBoxplotEBPlot_dark.svg b/docs/images/guides/stat/guideBoxplotGroupedStatBoxplotEBPlot_dark.svg index d894f0d34..05be9c94b 100644 --- a/docs/images/guides/stat/guideBoxplotGroupedStatBoxplotEBPlot_dark.svg +++ b/docs/images/guides/stat/guideBoxplotGroupedStatBoxplotEBPlot_dark.svg @@ -10,117 +10,117 @@ text { text-rendering: optimizeLegibility; } -#xXxprefixXx0 .plot-title { +#_sample_helper_static_id_prefix_0 .plot-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-x { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-x { fill: #303030; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-y { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-y { fill: #303030; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-text { +#_sample_helper_static_id_prefix_2 .tooltip-text { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-title { +#_sample_helper_static_id_prefix_2 .tooltip-title { fill: #bbbbbb; font-weight: bold; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-label { +#_sample_helper_static_id_prefix_2 .tooltip-label { fill: #bbbbbb; font-weight: bold; font-style: normal;font-family: sans-serif; @@ -129,7 +129,7 @@ font-size: 13.0px; } - + @@ -280,7 +280,7 @@ font-size: 13.0px; - + @@ -384,7 +384,7 @@ font-size: 13.0px; - + @@ -406,6 +406,6 @@ font-size: 13.0px; - + \ No newline at end of file diff --git a/docs/images/guides/stat/guideBoxplotSimpleGrBoxplotOnDf.svg b/docs/images/guides/stat/guideBoxplotSimpleGrBoxplotOnDf.svg index 5dbfef347..8a42c8804 100644 --- a/docs/images/guides/stat/guideBoxplotSimpleGrBoxplotOnDf.svg +++ b/docs/images/guides/stat/guideBoxplotSimpleGrBoxplotOnDf.svg @@ -10,117 +10,117 @@ text { text-rendering: optimizeLegibility; } -#xXxprefixXx0 .plot-title { +#_sample_helper_static_id_prefix_0 .plot-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx3 .axis-tooltip-text-x { +#_sample_helper_static_id_prefix_3 .axis-tooltip-text-x { fill: #ffffff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx3 .axis-tooltip-text-y { +#_sample_helper_static_id_prefix_3 .axis-tooltip-text-y { fill: #ffffff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx3 .tooltip-text { +#_sample_helper_static_id_prefix_3 .tooltip-text { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx3 .tooltip-title { +#_sample_helper_static_id_prefix_3 .tooltip-title { fill: #474747; font-weight: bold; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx3 .tooltip-label { +#_sample_helper_static_id_prefix_3 .tooltip-label { fill: #474747; font-weight: bold; font-style: normal;font-family: sans-serif; @@ -129,7 +129,7 @@ font-size: 13.0px; } - + @@ -171,7 +171,7 @@ font-size: 13.0px; - + @@ -347,13 +347,13 @@ font-size: 13.0px; - + - + @@ -569,6 +569,6 @@ font-size: 13.0px; - + \ No newline at end of file diff --git a/docs/images/guides/stat/guideBoxplotSimpleGrBoxplotOnDf_dark.svg b/docs/images/guides/stat/guideBoxplotSimpleGrBoxplotOnDf_dark.svg index 13d44d223..4ad68ac63 100644 --- a/docs/images/guides/stat/guideBoxplotSimpleGrBoxplotOnDf_dark.svg +++ b/docs/images/guides/stat/guideBoxplotSimpleGrBoxplotOnDf_dark.svg @@ -10,117 +10,117 @@ text { text-rendering: optimizeLegibility; } -#xXxprefixXx0 .plot-title { +#_sample_helper_static_id_prefix_0 .plot-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx3 .axis-tooltip-text-x { +#_sample_helper_static_id_prefix_3 .axis-tooltip-text-x { fill: #303030; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx3 .axis-tooltip-text-y { +#_sample_helper_static_id_prefix_3 .axis-tooltip-text-y { fill: #303030; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx3 .tooltip-text { +#_sample_helper_static_id_prefix_3 .tooltip-text { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx3 .tooltip-title { +#_sample_helper_static_id_prefix_3 .tooltip-title { fill: #bbbbbb; font-weight: bold; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx3 .tooltip-label { +#_sample_helper_static_id_prefix_3 .tooltip-label { fill: #bbbbbb; font-weight: bold; font-style: normal;font-family: sans-serif; @@ -129,7 +129,7 @@ font-size: 13.0px; } - + @@ -289,7 +289,7 @@ font-size: 13.0px; - + @@ -465,13 +465,13 @@ font-size: 13.0px; - + - + @@ -569,6 +569,6 @@ font-size: 13.0px; - + \ No newline at end of file diff --git a/docs/images/guides/stat/guideBoxplotSimpleGroupedBoxplotInDf.svg b/docs/images/guides/stat/guideBoxplotSimpleGroupedBoxplotInDf.svg index 5dbfef347..8a42c8804 100644 --- a/docs/images/guides/stat/guideBoxplotSimpleGroupedBoxplotInDf.svg +++ b/docs/images/guides/stat/guideBoxplotSimpleGroupedBoxplotInDf.svg @@ -10,117 +10,117 @@ text { text-rendering: optimizeLegibility; } -#xXxprefixXx0 .plot-title { +#_sample_helper_static_id_prefix_0 .plot-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx3 .axis-tooltip-text-x { +#_sample_helper_static_id_prefix_3 .axis-tooltip-text-x { fill: #ffffff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx3 .axis-tooltip-text-y { +#_sample_helper_static_id_prefix_3 .axis-tooltip-text-y { fill: #ffffff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx3 .tooltip-text { +#_sample_helper_static_id_prefix_3 .tooltip-text { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx3 .tooltip-title { +#_sample_helper_static_id_prefix_3 .tooltip-title { fill: #474747; font-weight: bold; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx3 .tooltip-label { +#_sample_helper_static_id_prefix_3 .tooltip-label { fill: #474747; font-weight: bold; font-style: normal;font-family: sans-serif; @@ -129,7 +129,7 @@ font-size: 13.0px; } - + @@ -171,7 +171,7 @@ font-size: 13.0px; - + @@ -347,13 +347,13 @@ font-size: 13.0px; - + - + @@ -569,6 +569,6 @@ font-size: 13.0px; - + \ No newline at end of file diff --git a/docs/images/guides/stat/guideBoxplotSimpleGroupedBoxplotInDf_dark.svg b/docs/images/guides/stat/guideBoxplotSimpleGroupedBoxplotInDf_dark.svg index 13d44d223..4ad68ac63 100644 --- a/docs/images/guides/stat/guideBoxplotSimpleGroupedBoxplotInDf_dark.svg +++ b/docs/images/guides/stat/guideBoxplotSimpleGroupedBoxplotInDf_dark.svg @@ -10,117 +10,117 @@ text { text-rendering: optimizeLegibility; } -#xXxprefixXx0 .plot-title { +#_sample_helper_static_id_prefix_0 .plot-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx3 .axis-tooltip-text-x { +#_sample_helper_static_id_prefix_3 .axis-tooltip-text-x { fill: #303030; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx3 .axis-tooltip-text-y { +#_sample_helper_static_id_prefix_3 .axis-tooltip-text-y { fill: #303030; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx3 .tooltip-text { +#_sample_helper_static_id_prefix_3 .tooltip-text { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx3 .tooltip-title { +#_sample_helper_static_id_prefix_3 .tooltip-title { fill: #bbbbbb; font-weight: bold; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx3 .tooltip-label { +#_sample_helper_static_id_prefix_3 .tooltip-label { fill: #bbbbbb; font-weight: bold; font-style: normal;font-family: sans-serif; @@ -129,7 +129,7 @@ font-size: 13.0px; } - + @@ -289,7 +289,7 @@ font-size: 13.0px; - + @@ -465,13 +465,13 @@ font-size: 13.0px; - + - + @@ -569,6 +569,6 @@ font-size: 13.0px; - + \ No newline at end of file diff --git a/docs/images/guides/stat/guideCandlestickCandlestickPlot.svg b/docs/images/guides/stat/guideCandlestickCandlestickPlot.svg index d4d0a6d08..7d84c8fca 100644 --- a/docs/images/guides/stat/guideCandlestickCandlestickPlot.svg +++ b/docs/images/guides/stat/guideCandlestickCandlestickPlot.svg @@ -10,117 +10,117 @@ text { text-rendering: optimizeLegibility; } -#xXxprefixXx0 .plot-title { +#_sample_helper_static_id_prefix_0 .plot-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-x { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-x { fill: #ffffff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-y { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-y { fill: #ffffff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-text { +#_sample_helper_static_id_prefix_2 .tooltip-text { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-title { +#_sample_helper_static_id_prefix_2 .tooltip-title { fill: #474747; font-weight: bold; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-label { +#_sample_helper_static_id_prefix_2 .tooltip-label { fill: #474747; font-weight: bold; font-style: normal;font-family: sans-serif; @@ -129,7 +129,7 @@ font-size: 13.0px; } - + @@ -167,7 +167,7 @@ font-size: 13.0px; - + @@ -225,7 +225,7 @@ font-size: 13.0px; - + @@ -349,6 +349,6 @@ font-size: 13.0px; - + \ No newline at end of file diff --git a/docs/images/guides/stat/guideCandlestickCandlestickPlotConfigured.svg b/docs/images/guides/stat/guideCandlestickCandlestickPlotConfigured.svg index f9f43a80f..bd43066d8 100644 --- a/docs/images/guides/stat/guideCandlestickCandlestickPlotConfigured.svg +++ b/docs/images/guides/stat/guideCandlestickCandlestickPlotConfigured.svg @@ -10,117 +10,117 @@ text { text-rendering: optimizeLegibility; } -#xXxprefixXx0 .plot-title { +#_sample_helper_static_id_prefix_0 .plot-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-x { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-x { fill: #ffffff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-y { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-y { fill: #ffffff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-text { +#_sample_helper_static_id_prefix_2 .tooltip-text { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-title { +#_sample_helper_static_id_prefix_2 .tooltip-title { fill: #474747; font-weight: bold; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-label { +#_sample_helper_static_id_prefix_2 .tooltip-label { fill: #474747; font-weight: bold; font-style: normal;font-family: sans-serif; @@ -129,7 +129,7 @@ font-size: 13.0px; } - + @@ -167,7 +167,7 @@ font-size: 13.0px; - + @@ -225,7 +225,7 @@ font-size: 13.0px; - + @@ -352,6 +352,6 @@ font-size: 13.0px; - + \ No newline at end of file diff --git a/docs/images/guides/stat/guideCandlestickCandlestickPlotConfigured_dark.svg b/docs/images/guides/stat/guideCandlestickCandlestickPlotConfigured_dark.svg index 11912e85a..7db104dc1 100644 --- a/docs/images/guides/stat/guideCandlestickCandlestickPlotConfigured_dark.svg +++ b/docs/images/guides/stat/guideCandlestickCandlestickPlotConfigured_dark.svg @@ -10,117 +10,117 @@ text { text-rendering: optimizeLegibility; } -#xXxprefixXx0 .plot-title { +#_sample_helper_static_id_prefix_0 .plot-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-x { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-x { fill: #303030; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-y { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-y { fill: #303030; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-text { +#_sample_helper_static_id_prefix_2 .tooltip-text { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-title { +#_sample_helper_static_id_prefix_2 .tooltip-title { fill: #bbbbbb; font-weight: bold; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-label { +#_sample_helper_static_id_prefix_2 .tooltip-label { fill: #bbbbbb; font-weight: bold; font-style: normal;font-family: sans-serif; @@ -129,7 +129,7 @@ font-size: 13.0px; } - + @@ -267,7 +267,7 @@ font-size: 13.0px; - + @@ -325,7 +325,7 @@ font-size: 13.0px; - + @@ -352,6 +352,6 @@ font-size: 13.0px; - + \ No newline at end of file diff --git a/docs/images/guides/stat/guideCandlestickCandlestickPlot_dark.svg b/docs/images/guides/stat/guideCandlestickCandlestickPlot_dark.svg index 62feee598..d681139a7 100644 --- a/docs/images/guides/stat/guideCandlestickCandlestickPlot_dark.svg +++ b/docs/images/guides/stat/guideCandlestickCandlestickPlot_dark.svg @@ -10,117 +10,117 @@ text { text-rendering: optimizeLegibility; } -#xXxprefixXx0 .plot-title { +#_sample_helper_static_id_prefix_0 .plot-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-x { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-x { fill: #303030; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-y { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-y { fill: #303030; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-text { +#_sample_helper_static_id_prefix_2 .tooltip-text { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-title { +#_sample_helper_static_id_prefix_2 .tooltip-title { fill: #bbbbbb; font-weight: bold; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-label { +#_sample_helper_static_id_prefix_2 .tooltip-label { fill: #bbbbbb; font-weight: bold; font-style: normal;font-family: sans-serif; @@ -129,7 +129,7 @@ font-size: 13.0px; } - + @@ -267,7 +267,7 @@ font-size: 13.0px; - + @@ -325,7 +325,7 @@ font-size: 13.0px; - + @@ -349,6 +349,6 @@ font-size: 13.0px; - + \ No newline at end of file diff --git a/docs/images/guides/stat/guideCandlestickCompareBoxesVsCandlestick.svg b/docs/images/guides/stat/guideCandlestickCompareBoxesVsCandlestick.svg index 9f0b9395c..1f6703c72 100644 --- a/docs/images/guides/stat/guideCandlestickCompareBoxesVsCandlestick.svg +++ b/docs/images/guides/stat/guideCandlestickCompareBoxesVsCandlestick.svg @@ -10,54 +10,54 @@ text { text-rendering: optimizeLegibility; } -#xXxprefixXx0 .plot-title { +#_sample_helper_static_id_prefix_0 .plot-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; @@ -71,14 +71,14 @@ font-weight: normal; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; @@ -92,14 +92,14 @@ font-weight: normal; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; @@ -129,7 +129,7 @@ font-size: 13.0px; } - + @@ -145,117 +145,117 @@ font-size: 13.0px; text { text-rendering: optimizeLegibility; } -#xXxprefixXx1 .plot-title { +#_sample_helper_static_id_prefix_1 .plot-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx1 .plot-subtitle { +#_sample_helper_static_id_prefix_1 .plot-subtitle { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx1 .plot-caption { +#_sample_helper_static_id_prefix_1 .plot-caption { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx1 .hyperlink-element { +#_sample_helper_static_id_prefix_1 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx1 .legend-title { +#_sample_helper_static_id_prefix_1 .legend-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx1 .legend-item { +#_sample_helper_static_id_prefix_1 .legend-item { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx1 .axis-title-x { +#_sample_helper_static_id_prefix_1 .axis-title-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx1 .axis-text-x { +#_sample_helper_static_id_prefix_1 .axis-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx3 .axis-tooltip-text-x { +#_sample_helper_static_id_prefix_3 .axis-tooltip-text-x { fill: #ffffff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx1 .axis-title-y { +#_sample_helper_static_id_prefix_1 .axis-title-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx1 .axis-text-y { +#_sample_helper_static_id_prefix_1 .axis-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx3 .axis-tooltip-text-y { +#_sample_helper_static_id_prefix_3 .axis-tooltip-text-y { fill: #ffffff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx1 .facet-strip-text-x { +#_sample_helper_static_id_prefix_1 .facet-strip-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx1 .facet-strip-text-y { +#_sample_helper_static_id_prefix_1 .facet-strip-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx3 .tooltip-text { +#_sample_helper_static_id_prefix_3 .tooltip-text { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx3 .tooltip-title { +#_sample_helper_static_id_prefix_3 .tooltip-title { fill: #474747; font-weight: bold; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx3 .tooltip-label { +#_sample_helper_static_id_prefix_3 .tooltip-label { fill: #474747; font-weight: bold; font-style: normal;font-family: sans-serif; @@ -264,7 +264,7 @@ font-size: 13.0px; } - + @@ -294,7 +294,7 @@ font-size: 13.0px; - + @@ -352,7 +352,7 @@ font-size: 13.0px; - + @@ -451,7 +451,7 @@ font-size: 13.0px; - + @@ -466,117 +466,117 @@ font-size: 13.0px; text { text-rendering: optimizeLegibility; } -#xXxprefixXx4 .plot-title { +#_sample_helper_static_id_prefix_4 .plot-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx4 .plot-subtitle { +#_sample_helper_static_id_prefix_4 .plot-subtitle { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx4 .plot-caption { +#_sample_helper_static_id_prefix_4 .plot-caption { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx4 .hyperlink-element { +#_sample_helper_static_id_prefix_4 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx4 .legend-title { +#_sample_helper_static_id_prefix_4 .legend-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx4 .legend-item { +#_sample_helper_static_id_prefix_4 .legend-item { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx4 .axis-title-x { +#_sample_helper_static_id_prefix_4 .axis-title-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx4 .axis-text-x { +#_sample_helper_static_id_prefix_4 .axis-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx6 .axis-tooltip-text-x { +#_sample_helper_static_id_prefix_6 .axis-tooltip-text-x { fill: #ffffff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx4 .axis-title-y { +#_sample_helper_static_id_prefix_4 .axis-title-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx4 .axis-text-y { +#_sample_helper_static_id_prefix_4 .axis-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx6 .axis-tooltip-text-y { +#_sample_helper_static_id_prefix_6 .axis-tooltip-text-y { fill: #ffffff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx4 .facet-strip-text-x { +#_sample_helper_static_id_prefix_4 .facet-strip-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx4 .facet-strip-text-y { +#_sample_helper_static_id_prefix_4 .facet-strip-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx6 .tooltip-text { +#_sample_helper_static_id_prefix_6 .tooltip-text { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx6 .tooltip-title { +#_sample_helper_static_id_prefix_6 .tooltip-title { fill: #474747; font-weight: bold; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx6 .tooltip-label { +#_sample_helper_static_id_prefix_6 .tooltip-label { fill: #474747; font-weight: bold; font-style: normal;font-family: sans-serif; @@ -585,7 +585,7 @@ font-size: 13.0px; } - + @@ -615,7 +615,7 @@ font-size: 13.0px; - + @@ -673,7 +673,7 @@ font-size: 13.0px; - + @@ -769,7 +769,7 @@ font-size: 13.0px; - + \ No newline at end of file diff --git a/docs/images/guides/stat/guideCandlestickCompareBoxesVsCandlestick_dark.svg b/docs/images/guides/stat/guideCandlestickCompareBoxesVsCandlestick_dark.svg index bfe8af6fa..b03cb2891 100644 --- a/docs/images/guides/stat/guideCandlestickCompareBoxesVsCandlestick_dark.svg +++ b/docs/images/guides/stat/guideCandlestickCompareBoxesVsCandlestick_dark.svg @@ -10,54 +10,54 @@ text { text-rendering: optimizeLegibility; } -#xXxprefixXx0 .plot-title { +#_sample_helper_static_id_prefix_0 .plot-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; @@ -71,14 +71,14 @@ font-weight: normal; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; @@ -92,14 +92,14 @@ font-weight: normal; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; @@ -129,7 +129,7 @@ font-size: 13.0px; } - + @@ -145,117 +145,117 @@ font-size: 13.0px; text { text-rendering: optimizeLegibility; } -#xXxprefixXx1 .plot-title { +#_sample_helper_static_id_prefix_1 .plot-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx1 .plot-subtitle { +#_sample_helper_static_id_prefix_1 .plot-subtitle { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx1 .plot-caption { +#_sample_helper_static_id_prefix_1 .plot-caption { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx1 .hyperlink-element { +#_sample_helper_static_id_prefix_1 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx1 .legend-title { +#_sample_helper_static_id_prefix_1 .legend-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx1 .legend-item { +#_sample_helper_static_id_prefix_1 .legend-item { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx1 .axis-title-x { +#_sample_helper_static_id_prefix_1 .axis-title-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx1 .axis-text-x { +#_sample_helper_static_id_prefix_1 .axis-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx3 .axis-tooltip-text-x { +#_sample_helper_static_id_prefix_3 .axis-tooltip-text-x { fill: #303030; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx1 .axis-title-y { +#_sample_helper_static_id_prefix_1 .axis-title-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx1 .axis-text-y { +#_sample_helper_static_id_prefix_1 .axis-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx3 .axis-tooltip-text-y { +#_sample_helper_static_id_prefix_3 .axis-tooltip-text-y { fill: #303030; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx1 .facet-strip-text-x { +#_sample_helper_static_id_prefix_1 .facet-strip-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx1 .facet-strip-text-y { +#_sample_helper_static_id_prefix_1 .facet-strip-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx3 .tooltip-text { +#_sample_helper_static_id_prefix_3 .tooltip-text { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx3 .tooltip-title { +#_sample_helper_static_id_prefix_3 .tooltip-title { fill: #bbbbbb; font-weight: bold; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx3 .tooltip-label { +#_sample_helper_static_id_prefix_3 .tooltip-label { fill: #bbbbbb; font-weight: bold; font-style: normal;font-family: sans-serif; @@ -264,7 +264,7 @@ font-size: 13.0px; } - + @@ -366,7 +366,7 @@ font-size: 13.0px; - + @@ -424,7 +424,7 @@ font-size: 13.0px; - + @@ -451,7 +451,7 @@ font-size: 13.0px; - + @@ -466,117 +466,117 @@ font-size: 13.0px; text { text-rendering: optimizeLegibility; } -#xXxprefixXx4 .plot-title { +#_sample_helper_static_id_prefix_4 .plot-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx4 .plot-subtitle { +#_sample_helper_static_id_prefix_4 .plot-subtitle { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx4 .plot-caption { +#_sample_helper_static_id_prefix_4 .plot-caption { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx4 .hyperlink-element { +#_sample_helper_static_id_prefix_4 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx4 .legend-title { +#_sample_helper_static_id_prefix_4 .legend-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx4 .legend-item { +#_sample_helper_static_id_prefix_4 .legend-item { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx4 .axis-title-x { +#_sample_helper_static_id_prefix_4 .axis-title-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx4 .axis-text-x { +#_sample_helper_static_id_prefix_4 .axis-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx6 .axis-tooltip-text-x { +#_sample_helper_static_id_prefix_6 .axis-tooltip-text-x { fill: #303030; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx4 .axis-title-y { +#_sample_helper_static_id_prefix_4 .axis-title-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx4 .axis-text-y { +#_sample_helper_static_id_prefix_4 .axis-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx6 .axis-tooltip-text-y { +#_sample_helper_static_id_prefix_6 .axis-tooltip-text-y { fill: #303030; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx4 .facet-strip-text-x { +#_sample_helper_static_id_prefix_4 .facet-strip-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx4 .facet-strip-text-y { +#_sample_helper_static_id_prefix_4 .facet-strip-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx6 .tooltip-text { +#_sample_helper_static_id_prefix_6 .tooltip-text { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx6 .tooltip-title { +#_sample_helper_static_id_prefix_6 .tooltip-title { fill: #bbbbbb; font-weight: bold; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx6 .tooltip-label { +#_sample_helper_static_id_prefix_6 .tooltip-label { fill: #bbbbbb; font-weight: bold; font-style: normal;font-family: sans-serif; @@ -585,7 +585,7 @@ font-size: 13.0px; } - + @@ -687,7 +687,7 @@ font-size: 13.0px; - + @@ -745,7 +745,7 @@ font-size: 13.0px; - + @@ -769,7 +769,7 @@ font-size: 13.0px; - + \ No newline at end of file diff --git a/docs/images/guides/stat/guideCandlestickLayerCustomizationDSL.svg b/docs/images/guides/stat/guideCandlestickLayerCustomizationDSL.svg index 12829a122..6ea5b5a0a 100644 --- a/docs/images/guides/stat/guideCandlestickLayerCustomizationDSL.svg +++ b/docs/images/guides/stat/guideCandlestickLayerCustomizationDSL.svg @@ -10,117 +10,117 @@ text { text-rendering: optimizeLegibility; } -#xXxprefixXx0 .plot-title { +#_sample_helper_static_id_prefix_0 .plot-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-x { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-x { fill: #ffffff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-y { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-y { fill: #ffffff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-text { +#_sample_helper_static_id_prefix_2 .tooltip-text { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-title { +#_sample_helper_static_id_prefix_2 .tooltip-title { fill: #474747; font-weight: bold; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-label { +#_sample_helper_static_id_prefix_2 .tooltip-label { fill: #474747; font-weight: bold; font-style: normal;font-family: sans-serif; @@ -129,7 +129,7 @@ font-size: 13.0px; } - + @@ -167,7 +167,7 @@ font-size: 13.0px; - + @@ -225,7 +225,7 @@ font-size: 13.0px; - + @@ -344,6 +344,6 @@ font-size: 13.0px; - + \ No newline at end of file diff --git a/docs/images/guides/stat/guideCandlestickLayerCustomizationDSL_dark.svg b/docs/images/guides/stat/guideCandlestickLayerCustomizationDSL_dark.svg index c5b01cd7d..40efdbcb2 100644 --- a/docs/images/guides/stat/guideCandlestickLayerCustomizationDSL_dark.svg +++ b/docs/images/guides/stat/guideCandlestickLayerCustomizationDSL_dark.svg @@ -10,117 +10,117 @@ text { text-rendering: optimizeLegibility; } -#xXxprefixXx0 .plot-title { +#_sample_helper_static_id_prefix_0 .plot-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-x { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-x { fill: #303030; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-y { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-y { fill: #303030; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-text { +#_sample_helper_static_id_prefix_2 .tooltip-text { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-title { +#_sample_helper_static_id_prefix_2 .tooltip-title { fill: #bbbbbb; font-weight: bold; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-label { +#_sample_helper_static_id_prefix_2 .tooltip-label { fill: #bbbbbb; font-weight: bold; font-style: normal;font-family: sans-serif; @@ -129,7 +129,7 @@ font-size: 13.0px; } - + @@ -267,7 +267,7 @@ font-size: 13.0px; - + @@ -325,7 +325,7 @@ font-size: 13.0px; - + @@ -344,6 +344,6 @@ font-size: 13.0px; - + \ No newline at end of file diff --git a/docs/images/guides/stat/guideCandlestickLayerCustomizationStatAPI.svg b/docs/images/guides/stat/guideCandlestickLayerCustomizationStatAPI.svg index 23761e69b..8a7b9dba4 100644 --- a/docs/images/guides/stat/guideCandlestickLayerCustomizationStatAPI.svg +++ b/docs/images/guides/stat/guideCandlestickLayerCustomizationStatAPI.svg @@ -10,117 +10,117 @@ text { text-rendering: optimizeLegibility; } -#xXxprefixXx0 .plot-title { +#_sample_helper_static_id_prefix_0 .plot-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-x { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-x { fill: #ffffff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-y { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-y { fill: #ffffff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-text { +#_sample_helper_static_id_prefix_2 .tooltip-text { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-title { +#_sample_helper_static_id_prefix_2 .tooltip-title { fill: #474747; font-weight: bold; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-label { +#_sample_helper_static_id_prefix_2 .tooltip-label { fill: #474747; font-weight: bold; font-style: normal;font-family: sans-serif; @@ -129,7 +129,7 @@ font-size: 13.0px; } - + @@ -167,7 +167,7 @@ font-size: 13.0px; - + @@ -225,7 +225,7 @@ font-size: 13.0px; - + @@ -394,6 +394,6 @@ font-size: 13.0px; - + \ No newline at end of file diff --git a/docs/images/guides/stat/guideCandlestickLayerCustomizationStatAPI_dark.svg b/docs/images/guides/stat/guideCandlestickLayerCustomizationStatAPI_dark.svg index ebc85f591..1381fb915 100644 --- a/docs/images/guides/stat/guideCandlestickLayerCustomizationStatAPI_dark.svg +++ b/docs/images/guides/stat/guideCandlestickLayerCustomizationStatAPI_dark.svg @@ -10,117 +10,117 @@ text { text-rendering: optimizeLegibility; } -#xXxprefixXx0 .plot-title { +#_sample_helper_static_id_prefix_0 .plot-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-x { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-x { fill: #303030; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-y { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-y { fill: #303030; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-text { +#_sample_helper_static_id_prefix_2 .tooltip-text { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-title { +#_sample_helper_static_id_prefix_2 .tooltip-title { fill: #bbbbbb; font-weight: bold; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-label { +#_sample_helper_static_id_prefix_2 .tooltip-label { fill: #bbbbbb; font-weight: bold; font-style: normal;font-family: sans-serif; @@ -129,7 +129,7 @@ font-size: 13.0px; } - + @@ -267,7 +267,7 @@ font-size: 13.0px; - + @@ -325,7 +325,7 @@ font-size: 13.0px; - + @@ -394,6 +394,6 @@ font-size: 13.0px; - + \ No newline at end of file diff --git a/docs/images/guides/stat/guideCandlestickSimpleCandlestickPlot.svg b/docs/images/guides/stat/guideCandlestickSimpleCandlestickPlot.svg index 9313493f9..fa0e01657 100644 --- a/docs/images/guides/stat/guideCandlestickSimpleCandlestickPlot.svg +++ b/docs/images/guides/stat/guideCandlestickSimpleCandlestickPlot.svg @@ -10,117 +10,117 @@ text { text-rendering: optimizeLegibility; } -#xXxprefixXx0 .plot-title { +#_sample_helper_static_id_prefix_0 .plot-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-x { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-x { fill: #ffffff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-y { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-y { fill: #ffffff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-text { +#_sample_helper_static_id_prefix_2 .tooltip-text { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-title { +#_sample_helper_static_id_prefix_2 .tooltip-title { fill: #474747; font-weight: bold; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-label { +#_sample_helper_static_id_prefix_2 .tooltip-label { fill: #474747; font-weight: bold; font-style: normal;font-family: sans-serif; @@ -129,7 +129,7 @@ font-size: 13.0px; } - + @@ -167,7 +167,7 @@ font-size: 13.0px; - + @@ -225,7 +225,7 @@ font-size: 13.0px; - + @@ -347,6 +347,6 @@ font-size: 13.0px; - + \ No newline at end of file diff --git a/docs/images/guides/stat/guideCandlestickSimpleCandlestickPlot_dark.svg b/docs/images/guides/stat/guideCandlestickSimpleCandlestickPlot_dark.svg index 0858c6f20..15efbc2ab 100644 --- a/docs/images/guides/stat/guideCandlestickSimpleCandlestickPlot_dark.svg +++ b/docs/images/guides/stat/guideCandlestickSimpleCandlestickPlot_dark.svg @@ -10,117 +10,117 @@ text { text-rendering: optimizeLegibility; } -#xXxprefixXx0 .plot-title { +#_sample_helper_static_id_prefix_0 .plot-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-x { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-x { fill: #303030; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-y { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-y { fill: #303030; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-text { +#_sample_helper_static_id_prefix_2 .tooltip-text { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-title { +#_sample_helper_static_id_prefix_2 .tooltip-title { fill: #bbbbbb; font-weight: bold; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-label { +#_sample_helper_static_id_prefix_2 .tooltip-label { fill: #bbbbbb; font-weight: bold; font-style: normal;font-family: sans-serif; @@ -129,7 +129,7 @@ font-size: 13.0px; } - + @@ -267,7 +267,7 @@ font-size: 13.0px; - + @@ -325,7 +325,7 @@ font-size: 13.0px; - + @@ -347,6 +347,6 @@ font-size: 13.0px; - + \ No newline at end of file diff --git a/docs/images/guides/stat/guideCandlestickStatCandlestickBoxesPlot.svg b/docs/images/guides/stat/guideCandlestickStatCandlestickBoxesPlot.svg index b4221638f..71561f82e 100644 --- a/docs/images/guides/stat/guideCandlestickStatCandlestickBoxesPlot.svg +++ b/docs/images/guides/stat/guideCandlestickStatCandlestickBoxesPlot.svg @@ -10,117 +10,117 @@ text { text-rendering: optimizeLegibility; } -#xXxprefixXx0 .plot-title { +#_sample_helper_static_id_prefix_0 .plot-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-x { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-x { fill: #ffffff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-y { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-y { fill: #ffffff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-text { +#_sample_helper_static_id_prefix_2 .tooltip-text { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-title { +#_sample_helper_static_id_prefix_2 .tooltip-title { fill: #474747; font-weight: bold; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-label { +#_sample_helper_static_id_prefix_2 .tooltip-label { fill: #474747; font-weight: bold; font-style: normal;font-family: sans-serif; @@ -129,7 +129,7 @@ font-size: 13.0px; } - + @@ -167,7 +167,7 @@ font-size: 13.0px; - + @@ -225,7 +225,7 @@ font-size: 13.0px; - + @@ -352,6 +352,6 @@ font-size: 13.0px; - + \ No newline at end of file diff --git a/docs/images/guides/stat/guideCandlestickStatCandlestickBoxesPlot_dark.svg b/docs/images/guides/stat/guideCandlestickStatCandlestickBoxesPlot_dark.svg index 1746d33b2..f8ee0f48b 100644 --- a/docs/images/guides/stat/guideCandlestickStatCandlestickBoxesPlot_dark.svg +++ b/docs/images/guides/stat/guideCandlestickStatCandlestickBoxesPlot_dark.svg @@ -10,117 +10,117 @@ text { text-rendering: optimizeLegibility; } -#xXxprefixXx0 .plot-title { +#_sample_helper_static_id_prefix_0 .plot-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-x { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-x { fill: #303030; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-y { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-y { fill: #303030; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-text { +#_sample_helper_static_id_prefix_2 .tooltip-text { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-title { +#_sample_helper_static_id_prefix_2 .tooltip-title { fill: #bbbbbb; font-weight: bold; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-label { +#_sample_helper_static_id_prefix_2 .tooltip-label { fill: #bbbbbb; font-weight: bold; font-style: normal;font-family: sans-serif; @@ -129,7 +129,7 @@ font-size: 13.0px; } - + @@ -267,7 +267,7 @@ font-size: 13.0px; - + @@ -325,7 +325,7 @@ font-size: 13.0px; - + @@ -352,6 +352,6 @@ font-size: 13.0px; - + \ No newline at end of file diff --git a/docs/images/guides/stat/guideCandlestickStatCandlestickErrorBarsPlot.svg b/docs/images/guides/stat/guideCandlestickStatCandlestickErrorBarsPlot.svg index 1b9d5b343..5134896aa 100644 --- a/docs/images/guides/stat/guideCandlestickStatCandlestickErrorBarsPlot.svg +++ b/docs/images/guides/stat/guideCandlestickStatCandlestickErrorBarsPlot.svg @@ -10,117 +10,117 @@ text { text-rendering: optimizeLegibility; } -#xXxprefixXx0 .plot-title { +#_sample_helper_static_id_prefix_0 .plot-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-x { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-x { fill: #ffffff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-y { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-y { fill: #ffffff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-text { +#_sample_helper_static_id_prefix_2 .tooltip-text { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-title { +#_sample_helper_static_id_prefix_2 .tooltip-title { fill: #474747; font-weight: bold; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-label { +#_sample_helper_static_id_prefix_2 .tooltip-label { fill: #474747; font-weight: bold; font-style: normal;font-family: sans-serif; @@ -129,7 +129,7 @@ font-size: 13.0px; } - + @@ -175,7 +175,7 @@ font-size: 13.0px; - + @@ -223,7 +223,7 @@ font-size: 13.0px; - + @@ -373,6 +373,6 @@ font-size: 13.0px; - + \ No newline at end of file diff --git a/docs/images/guides/stat/guideCandlestickStatCandlestickErrorBarsPlot_dark.svg b/docs/images/guides/stat/guideCandlestickStatCandlestickErrorBarsPlot_dark.svg index 7df7380ad..c840b0830 100644 --- a/docs/images/guides/stat/guideCandlestickStatCandlestickErrorBarsPlot_dark.svg +++ b/docs/images/guides/stat/guideCandlestickStatCandlestickErrorBarsPlot_dark.svg @@ -10,117 +10,117 @@ text { text-rendering: optimizeLegibility; } -#xXxprefixXx0 .plot-title { +#_sample_helper_static_id_prefix_0 .plot-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-x { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-x { fill: #303030; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-y { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-y { fill: #303030; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-text { +#_sample_helper_static_id_prefix_2 .tooltip-text { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-title { +#_sample_helper_static_id_prefix_2 .tooltip-title { fill: #bbbbbb; font-weight: bold; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-label { +#_sample_helper_static_id_prefix_2 .tooltip-label { fill: #bbbbbb; font-weight: bold; font-style: normal;font-family: sans-serif; @@ -129,7 +129,7 @@ font-size: 13.0px; } - + @@ -303,7 +303,7 @@ font-size: 13.0px; - + @@ -351,7 +351,7 @@ font-size: 13.0px; - + @@ -373,6 +373,6 @@ font-size: 13.0px; - + \ No newline at end of file diff --git a/docs/images/guides/stat/guideCountBarsVsCountPlot.svg b/docs/images/guides/stat/guideCountBarsVsCountPlot.svg index d6fc75672..049fb392c 100644 --- a/docs/images/guides/stat/guideCountBarsVsCountPlot.svg +++ b/docs/images/guides/stat/guideCountBarsVsCountPlot.svg @@ -10,54 +10,54 @@ text { text-rendering: optimizeLegibility; } -#xXxprefixXx0 .plot-title { +#_sample_helper_static_id_prefix_0 .plot-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; @@ -71,14 +71,14 @@ font-weight: normal; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; @@ -92,14 +92,14 @@ font-weight: normal; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; @@ -129,7 +129,7 @@ font-size: 13.0px; } - + @@ -145,117 +145,117 @@ font-size: 13.0px; text { text-rendering: optimizeLegibility; } -#xXxprefixXx1 .plot-title { +#_sample_helper_static_id_prefix_1 .plot-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx1 .plot-subtitle { +#_sample_helper_static_id_prefix_1 .plot-subtitle { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx1 .plot-caption { +#_sample_helper_static_id_prefix_1 .plot-caption { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx1 .hyperlink-element { +#_sample_helper_static_id_prefix_1 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx1 .legend-title { +#_sample_helper_static_id_prefix_1 .legend-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx1 .legend-item { +#_sample_helper_static_id_prefix_1 .legend-item { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx1 .axis-title-x { +#_sample_helper_static_id_prefix_1 .axis-title-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx1 .axis-text-x { +#_sample_helper_static_id_prefix_1 .axis-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx3 .axis-tooltip-text-x { +#_sample_helper_static_id_prefix_3 .axis-tooltip-text-x { fill: #ffffff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx1 .axis-title-y { +#_sample_helper_static_id_prefix_1 .axis-title-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx1 .axis-text-y { +#_sample_helper_static_id_prefix_1 .axis-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx3 .axis-tooltip-text-y { +#_sample_helper_static_id_prefix_3 .axis-tooltip-text-y { fill: #ffffff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx1 .facet-strip-text-x { +#_sample_helper_static_id_prefix_1 .facet-strip-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx1 .facet-strip-text-y { +#_sample_helper_static_id_prefix_1 .facet-strip-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx3 .tooltip-text { +#_sample_helper_static_id_prefix_3 .tooltip-text { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx3 .tooltip-title { +#_sample_helper_static_id_prefix_3 .tooltip-title { fill: #474747; font-weight: bold; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx3 .tooltip-label { +#_sample_helper_static_id_prefix_3 .tooltip-label { fill: #474747; font-weight: bold; font-style: normal;font-family: sans-serif; @@ -264,7 +264,7 @@ font-size: 13.0px; } - + @@ -296,7 +296,7 @@ font-size: 13.0px; - + @@ -318,7 +318,7 @@ font-size: 13.0px; - + @@ -428,7 +428,7 @@ font-size: 13.0px; - + @@ -443,117 +443,117 @@ font-size: 13.0px; text { text-rendering: optimizeLegibility; } -#xXxprefixXx4 .plot-title { +#_sample_helper_static_id_prefix_4 .plot-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx4 .plot-subtitle { +#_sample_helper_static_id_prefix_4 .plot-subtitle { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx4 .plot-caption { +#_sample_helper_static_id_prefix_4 .plot-caption { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx4 .hyperlink-element { +#_sample_helper_static_id_prefix_4 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx4 .legend-title { +#_sample_helper_static_id_prefix_4 .legend-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx4 .legend-item { +#_sample_helper_static_id_prefix_4 .legend-item { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx4 .axis-title-x { +#_sample_helper_static_id_prefix_4 .axis-title-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx4 .axis-text-x { +#_sample_helper_static_id_prefix_4 .axis-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx6 .axis-tooltip-text-x { +#_sample_helper_static_id_prefix_6 .axis-tooltip-text-x { fill: #ffffff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx4 .axis-title-y { +#_sample_helper_static_id_prefix_4 .axis-title-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx4 .axis-text-y { +#_sample_helper_static_id_prefix_4 .axis-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx6 .axis-tooltip-text-y { +#_sample_helper_static_id_prefix_6 .axis-tooltip-text-y { fill: #ffffff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx4 .facet-strip-text-x { +#_sample_helper_static_id_prefix_4 .facet-strip-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx4 .facet-strip-text-y { +#_sample_helper_static_id_prefix_4 .facet-strip-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx6 .tooltip-text { +#_sample_helper_static_id_prefix_6 .tooltip-text { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx6 .tooltip-title { +#_sample_helper_static_id_prefix_6 .tooltip-title { fill: #474747; font-weight: bold; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx6 .tooltip-label { +#_sample_helper_static_id_prefix_6 .tooltip-label { fill: #474747; font-weight: bold; font-style: normal;font-family: sans-serif; @@ -562,7 +562,7 @@ font-size: 13.0px; } - + @@ -594,7 +594,7 @@ font-size: 13.0px; - + @@ -616,7 +616,7 @@ font-size: 13.0px; - + @@ -726,7 +726,7 @@ font-size: 13.0px; - + \ No newline at end of file diff --git a/docs/images/guides/stat/guideCountBarsVsCountPlot_dark.svg b/docs/images/guides/stat/guideCountBarsVsCountPlot_dark.svg index 5894ea893..20f58e406 100644 --- a/docs/images/guides/stat/guideCountBarsVsCountPlot_dark.svg +++ b/docs/images/guides/stat/guideCountBarsVsCountPlot_dark.svg @@ -10,54 +10,54 @@ text { text-rendering: optimizeLegibility; } -#xXxprefixXx0 .plot-title { +#_sample_helper_static_id_prefix_0 .plot-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; @@ -71,14 +71,14 @@ font-weight: normal; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; @@ -92,14 +92,14 @@ font-weight: normal; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; @@ -129,7 +129,7 @@ font-size: 13.0px; } - + @@ -145,117 +145,117 @@ font-size: 13.0px; text { text-rendering: optimizeLegibility; } -#xXxprefixXx1 .plot-title { +#_sample_helper_static_id_prefix_1 .plot-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx1 .plot-subtitle { +#_sample_helper_static_id_prefix_1 .plot-subtitle { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx1 .plot-caption { +#_sample_helper_static_id_prefix_1 .plot-caption { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx1 .hyperlink-element { +#_sample_helper_static_id_prefix_1 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx1 .legend-title { +#_sample_helper_static_id_prefix_1 .legend-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx1 .legend-item { +#_sample_helper_static_id_prefix_1 .legend-item { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx1 .axis-title-x { +#_sample_helper_static_id_prefix_1 .axis-title-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx1 .axis-text-x { +#_sample_helper_static_id_prefix_1 .axis-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx3 .axis-tooltip-text-x { +#_sample_helper_static_id_prefix_3 .axis-tooltip-text-x { fill: #303030; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx1 .axis-title-y { +#_sample_helper_static_id_prefix_1 .axis-title-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx1 .axis-text-y { +#_sample_helper_static_id_prefix_1 .axis-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx3 .axis-tooltip-text-y { +#_sample_helper_static_id_prefix_3 .axis-tooltip-text-y { fill: #303030; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx1 .facet-strip-text-x { +#_sample_helper_static_id_prefix_1 .facet-strip-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx1 .facet-strip-text-y { +#_sample_helper_static_id_prefix_1 .facet-strip-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx3 .tooltip-text { +#_sample_helper_static_id_prefix_3 .tooltip-text { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx3 .tooltip-title { +#_sample_helper_static_id_prefix_3 .tooltip-title { fill: #bbbbbb; font-weight: bold; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx3 .tooltip-label { +#_sample_helper_static_id_prefix_3 .tooltip-label { fill: #bbbbbb; font-weight: bold; font-style: normal;font-family: sans-serif; @@ -264,7 +264,7 @@ font-size: 13.0px; } - + @@ -379,7 +379,7 @@ font-size: 13.0px; - + @@ -401,7 +401,7 @@ font-size: 13.0px; - + @@ -428,7 +428,7 @@ font-size: 13.0px; - + @@ -443,117 +443,117 @@ font-size: 13.0px; text { text-rendering: optimizeLegibility; } -#xXxprefixXx4 .plot-title { +#_sample_helper_static_id_prefix_4 .plot-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx4 .plot-subtitle { +#_sample_helper_static_id_prefix_4 .plot-subtitle { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx4 .plot-caption { +#_sample_helper_static_id_prefix_4 .plot-caption { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx4 .hyperlink-element { +#_sample_helper_static_id_prefix_4 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx4 .legend-title { +#_sample_helper_static_id_prefix_4 .legend-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx4 .legend-item { +#_sample_helper_static_id_prefix_4 .legend-item { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx4 .axis-title-x { +#_sample_helper_static_id_prefix_4 .axis-title-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx4 .axis-text-x { +#_sample_helper_static_id_prefix_4 .axis-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx6 .axis-tooltip-text-x { +#_sample_helper_static_id_prefix_6 .axis-tooltip-text-x { fill: #303030; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx4 .axis-title-y { +#_sample_helper_static_id_prefix_4 .axis-title-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx4 .axis-text-y { +#_sample_helper_static_id_prefix_4 .axis-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx6 .axis-tooltip-text-y { +#_sample_helper_static_id_prefix_6 .axis-tooltip-text-y { fill: #303030; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx4 .facet-strip-text-x { +#_sample_helper_static_id_prefix_4 .facet-strip-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx4 .facet-strip-text-y { +#_sample_helper_static_id_prefix_4 .facet-strip-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx6 .tooltip-text { +#_sample_helper_static_id_prefix_6 .tooltip-text { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx6 .tooltip-title { +#_sample_helper_static_id_prefix_6 .tooltip-title { fill: #bbbbbb; font-weight: bold; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx6 .tooltip-label { +#_sample_helper_static_id_prefix_6 .tooltip-label { fill: #bbbbbb; font-weight: bold; font-style: normal;font-family: sans-serif; @@ -562,7 +562,7 @@ font-size: 13.0px; } - + @@ -677,7 +677,7 @@ font-size: 13.0px; - + @@ -699,7 +699,7 @@ font-size: 13.0px; - + @@ -726,7 +726,7 @@ font-size: 13.0px; - + \ No newline at end of file diff --git a/docs/images/guides/stat/guideCountConfigureGroupedCountPlot.svg b/docs/images/guides/stat/guideCountConfigureGroupedCountPlot.svg index b35ee7ffb..66a2834c4 100644 --- a/docs/images/guides/stat/guideCountConfigureGroupedCountPlot.svg +++ b/docs/images/guides/stat/guideCountConfigureGroupedCountPlot.svg @@ -10,117 +10,117 @@ text { text-rendering: optimizeLegibility; } -#xXxprefixXx0 .plot-title { +#_sample_helper_static_id_prefix_0 .plot-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-x { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-x { fill: #ffffff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-y { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-y { fill: #ffffff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-text { +#_sample_helper_static_id_prefix_2 .tooltip-text { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-title { +#_sample_helper_static_id_prefix_2 .tooltip-title { fill: #474747; font-weight: bold; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-label { +#_sample_helper_static_id_prefix_2 .tooltip-label { fill: #474747; font-weight: bold; font-style: normal;font-family: sans-serif; @@ -129,7 +129,7 @@ font-size: 13.0px; } - + @@ -171,7 +171,7 @@ font-size: 13.0px; - + @@ -203,7 +203,7 @@ font-size: 13.0px; - + @@ -401,6 +401,6 @@ font-size: 13.0px; - + \ No newline at end of file diff --git a/docs/images/guides/stat/guideCountConfigureGroupedCountPlot_dark.svg b/docs/images/guides/stat/guideCountConfigureGroupedCountPlot_dark.svg index 5ff076afc..6c6a1265d 100644 --- a/docs/images/guides/stat/guideCountConfigureGroupedCountPlot_dark.svg +++ b/docs/images/guides/stat/guideCountConfigureGroupedCountPlot_dark.svg @@ -10,117 +10,117 @@ text { text-rendering: optimizeLegibility; } -#xXxprefixXx0 .plot-title { +#_sample_helper_static_id_prefix_0 .plot-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-x { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-x { fill: #303030; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-y { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-y { fill: #303030; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-text { +#_sample_helper_static_id_prefix_2 .tooltip-text { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-title { +#_sample_helper_static_id_prefix_2 .tooltip-title { fill: #bbbbbb; font-weight: bold; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-label { +#_sample_helper_static_id_prefix_2 .tooltip-label { fill: #bbbbbb; font-weight: bold; font-style: normal;font-family: sans-serif; @@ -129,7 +129,7 @@ font-size: 13.0px; } - + @@ -289,7 +289,7 @@ font-size: 13.0px; - + @@ -321,7 +321,7 @@ font-size: 13.0px; - + @@ -401,6 +401,6 @@ font-size: 13.0px; - + \ No newline at end of file diff --git a/docs/images/guides/stat/guideCountConfigurePlot.svg b/docs/images/guides/stat/guideCountConfigurePlot.svg index a62bebd80..5a19106c2 100644 --- a/docs/images/guides/stat/guideCountConfigurePlot.svg +++ b/docs/images/guides/stat/guideCountConfigurePlot.svg @@ -10,117 +10,117 @@ text { text-rendering: optimizeLegibility; } -#xXxprefixXx0 .plot-title { +#_sample_helper_static_id_prefix_0 .plot-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-x { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-x { fill: #ffffff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-y { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-y { fill: #ffffff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-text { +#_sample_helper_static_id_prefix_2 .tooltip-text { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-title { +#_sample_helper_static_id_prefix_2 .tooltip-title { fill: #474747; font-weight: bold; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-label { +#_sample_helper_static_id_prefix_2 .tooltip-label { fill: #474747; font-weight: bold; font-style: normal;font-family: sans-serif; @@ -129,7 +129,7 @@ font-size: 13.0px; } - + @@ -171,7 +171,7 @@ font-size: 13.0px; - + @@ -193,7 +193,7 @@ font-size: 13.0px; - + @@ -456,6 +456,6 @@ font-size: 13.0px; - + \ No newline at end of file diff --git a/docs/images/guides/stat/guideCountConfigurePlot_dark.svg b/docs/images/guides/stat/guideCountConfigurePlot_dark.svg index d09c97c5c..ac61cb261 100644 --- a/docs/images/guides/stat/guideCountConfigurePlot_dark.svg +++ b/docs/images/guides/stat/guideCountConfigurePlot_dark.svg @@ -10,117 +10,117 @@ text { text-rendering: optimizeLegibility; } -#xXxprefixXx0 .plot-title { +#_sample_helper_static_id_prefix_0 .plot-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-x { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-x { fill: #303030; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-y { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-y { fill: #303030; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-text { +#_sample_helper_static_id_prefix_2 .tooltip-text { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-title { +#_sample_helper_static_id_prefix_2 .tooltip-title { fill: #bbbbbb; font-weight: bold; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-label { +#_sample_helper_static_id_prefix_2 .tooltip-label { fill: #bbbbbb; font-weight: bold; font-style: normal;font-family: sans-serif; @@ -129,7 +129,7 @@ font-size: 13.0px; } - + @@ -289,7 +289,7 @@ font-size: 13.0px; - + @@ -311,7 +311,7 @@ font-size: 13.0px; - + @@ -456,6 +456,6 @@ font-size: 13.0px; - + \ No newline at end of file diff --git a/docs/images/guides/stat/guideCountConfigureSimpleGroupedCountPlot.svg b/docs/images/guides/stat/guideCountConfigureSimpleGroupedCountPlot.svg index b51c0aa1e..f0ba9ca91 100644 --- a/docs/images/guides/stat/guideCountConfigureSimpleGroupedCountPlot.svg +++ b/docs/images/guides/stat/guideCountConfigureSimpleGroupedCountPlot.svg @@ -10,117 +10,117 @@ text { text-rendering: optimizeLegibility; } -#xXxprefixXx0 .plot-title { +#_sample_helper_static_id_prefix_0 .plot-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-x { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-x { fill: #ffffff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-y { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-y { fill: #ffffff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-text { +#_sample_helper_static_id_prefix_2 .tooltip-text { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-title { +#_sample_helper_static_id_prefix_2 .tooltip-title { fill: #474747; font-weight: bold; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-label { +#_sample_helper_static_id_prefix_2 .tooltip-label { fill: #474747; font-weight: bold; font-style: normal;font-family: sans-serif; @@ -129,7 +129,7 @@ font-size: 13.0px; } - + @@ -173,7 +173,7 @@ font-size: 13.0px; - + @@ -211,7 +211,7 @@ font-size: 13.0px; - + @@ -416,6 +416,6 @@ font-size: 13.0px; - + \ No newline at end of file diff --git a/docs/images/guides/stat/guideCountConfigureSimpleGroupedCountPlot_dark.svg b/docs/images/guides/stat/guideCountConfigureSimpleGroupedCountPlot_dark.svg index 3b388abc1..e0c81edee 100644 --- a/docs/images/guides/stat/guideCountConfigureSimpleGroupedCountPlot_dark.svg +++ b/docs/images/guides/stat/guideCountConfigureSimpleGroupedCountPlot_dark.svg @@ -10,117 +10,117 @@ text { text-rendering: optimizeLegibility; } -#xXxprefixXx0 .plot-title { +#_sample_helper_static_id_prefix_0 .plot-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-x { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-x { fill: #303030; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-y { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-y { fill: #303030; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-text { +#_sample_helper_static_id_prefix_2 .tooltip-text { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-title { +#_sample_helper_static_id_prefix_2 .tooltip-title { fill: #bbbbbb; font-weight: bold; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-label { +#_sample_helper_static_id_prefix_2 .tooltip-label { fill: #bbbbbb; font-weight: bold; font-style: normal;font-family: sans-serif; @@ -129,7 +129,7 @@ font-size: 13.0px; } - + @@ -298,7 +298,7 @@ font-size: 13.0px; - + @@ -336,7 +336,7 @@ font-size: 13.0px; - + @@ -416,6 +416,6 @@ font-size: 13.0px; - + \ No newline at end of file diff --git a/docs/images/guides/stat/guideCountGroupByCountPlot.svg b/docs/images/guides/stat/guideCountGroupByCountPlot.svg index b237bc912..6baf4372d 100644 --- a/docs/images/guides/stat/guideCountGroupByCountPlot.svg +++ b/docs/images/guides/stat/guideCountGroupByCountPlot.svg @@ -10,117 +10,117 @@ text { text-rendering: optimizeLegibility; } -#xXxprefixXx0 .plot-title { +#_sample_helper_static_id_prefix_0 .plot-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-x { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-x { fill: #ffffff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-y { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-y { fill: #ffffff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-text { +#_sample_helper_static_id_prefix_2 .tooltip-text { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-title { +#_sample_helper_static_id_prefix_2 .tooltip-title { fill: #474747; font-weight: bold; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-label { +#_sample_helper_static_id_prefix_2 .tooltip-label { fill: #474747; font-weight: bold; font-style: normal;font-family: sans-serif; @@ -129,7 +129,7 @@ font-size: 13.0px; } - + @@ -179,7 +179,7 @@ font-size: 13.0px; - + @@ -211,7 +211,7 @@ font-size: 13.0px; - + @@ -437,6 +437,6 @@ font-size: 13.0px; - + \ No newline at end of file diff --git a/docs/images/guides/stat/guideCountGroupByCountPlot_dark.svg b/docs/images/guides/stat/guideCountGroupByCountPlot_dark.svg index 629d90262..3fde22a75 100644 --- a/docs/images/guides/stat/guideCountGroupByCountPlot_dark.svg +++ b/docs/images/guides/stat/guideCountGroupByCountPlot_dark.svg @@ -10,117 +10,117 @@ text { text-rendering: optimizeLegibility; } -#xXxprefixXx0 .plot-title { +#_sample_helper_static_id_prefix_0 .plot-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-x { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-x { fill: #303030; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-y { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-y { fill: #303030; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-text { +#_sample_helper_static_id_prefix_2 .tooltip-text { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-title { +#_sample_helper_static_id_prefix_2 .tooltip-title { fill: #bbbbbb; font-weight: bold; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-label { +#_sample_helper_static_id_prefix_2 .tooltip-label { fill: #bbbbbb; font-weight: bold; font-style: normal;font-family: sans-serif; @@ -129,7 +129,7 @@ font-size: 13.0px; } - + @@ -325,7 +325,7 @@ font-size: 13.0px; - + @@ -357,7 +357,7 @@ font-size: 13.0px; - + @@ -437,6 +437,6 @@ font-size: 13.0px; - + \ No newline at end of file diff --git a/docs/images/guides/stat/guideCountGroupedCountPlot.svg b/docs/images/guides/stat/guideCountGroupedCountPlot.svg index b237bc912..6baf4372d 100644 --- a/docs/images/guides/stat/guideCountGroupedCountPlot.svg +++ b/docs/images/guides/stat/guideCountGroupedCountPlot.svg @@ -10,117 +10,117 @@ text { text-rendering: optimizeLegibility; } -#xXxprefixXx0 .plot-title { +#_sample_helper_static_id_prefix_0 .plot-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-x { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-x { fill: #ffffff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-y { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-y { fill: #ffffff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-text { +#_sample_helper_static_id_prefix_2 .tooltip-text { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-title { +#_sample_helper_static_id_prefix_2 .tooltip-title { fill: #474747; font-weight: bold; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-label { +#_sample_helper_static_id_prefix_2 .tooltip-label { fill: #474747; font-weight: bold; font-style: normal;font-family: sans-serif; @@ -129,7 +129,7 @@ font-size: 13.0px; } - + @@ -179,7 +179,7 @@ font-size: 13.0px; - + @@ -211,7 +211,7 @@ font-size: 13.0px; - + @@ -437,6 +437,6 @@ font-size: 13.0px; - + \ No newline at end of file diff --git a/docs/images/guides/stat/guideCountGroupedCountPlot_dark.svg b/docs/images/guides/stat/guideCountGroupedCountPlot_dark.svg index 629d90262..3fde22a75 100644 --- a/docs/images/guides/stat/guideCountGroupedCountPlot_dark.svg +++ b/docs/images/guides/stat/guideCountGroupedCountPlot_dark.svg @@ -10,117 +10,117 @@ text { text-rendering: optimizeLegibility; } -#xXxprefixXx0 .plot-title { +#_sample_helper_static_id_prefix_0 .plot-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-x { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-x { fill: #303030; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-y { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-y { fill: #303030; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-text { +#_sample_helper_static_id_prefix_2 .tooltip-text { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-title { +#_sample_helper_static_id_prefix_2 .tooltip-title { fill: #bbbbbb; font-weight: bold; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-label { +#_sample_helper_static_id_prefix_2 .tooltip-label { fill: #bbbbbb; font-weight: bold; font-style: normal;font-family: sans-serif; @@ -129,7 +129,7 @@ font-size: 13.0px; } - + @@ -325,7 +325,7 @@ font-size: 13.0px; - + @@ -357,7 +357,7 @@ font-size: 13.0px; - + @@ -437,6 +437,6 @@ font-size: 13.0px; - + \ No newline at end of file diff --git a/docs/images/guides/stat/guideCountGroupedStatCountBarsPlot.svg b/docs/images/guides/stat/guideCountGroupedStatCountBarsPlot.svg index 833048abd..d963862f8 100644 --- a/docs/images/guides/stat/guideCountGroupedStatCountBarsPlot.svg +++ b/docs/images/guides/stat/guideCountGroupedStatCountBarsPlot.svg @@ -10,117 +10,117 @@ text { text-rendering: optimizeLegibility; } -#xXxprefixXx0 .plot-title { +#_sample_helper_static_id_prefix_0 .plot-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-x { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-x { fill: #ffffff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-y { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-y { fill: #ffffff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-text { +#_sample_helper_static_id_prefix_2 .tooltip-text { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-title { +#_sample_helper_static_id_prefix_2 .tooltip-title { fill: #474747; font-weight: bold; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-label { +#_sample_helper_static_id_prefix_2 .tooltip-label { fill: #474747; font-weight: bold; font-style: normal;font-family: sans-serif; @@ -129,7 +129,7 @@ font-size: 13.0px; } - + @@ -179,7 +179,7 @@ font-size: 13.0px; - + @@ -211,7 +211,7 @@ font-size: 13.0px; - + @@ -379,6 +379,6 @@ font-size: 13.0px; - + \ No newline at end of file diff --git a/docs/images/guides/stat/guideCountGroupedStatCountBarsPlot_dark.svg b/docs/images/guides/stat/guideCountGroupedStatCountBarsPlot_dark.svg index 09877a8ad..a7b48f95c 100644 --- a/docs/images/guides/stat/guideCountGroupedStatCountBarsPlot_dark.svg +++ b/docs/images/guides/stat/guideCountGroupedStatCountBarsPlot_dark.svg @@ -10,117 +10,117 @@ text { text-rendering: optimizeLegibility; } -#xXxprefixXx0 .plot-title { +#_sample_helper_static_id_prefix_0 .plot-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-x { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-x { fill: #303030; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-y { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-y { fill: #303030; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-text { +#_sample_helper_static_id_prefix_2 .tooltip-text { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-title { +#_sample_helper_static_id_prefix_2 .tooltip-title { fill: #bbbbbb; font-weight: bold; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-label { +#_sample_helper_static_id_prefix_2 .tooltip-label { fill: #bbbbbb; font-weight: bold; font-style: normal;font-family: sans-serif; @@ -129,7 +129,7 @@ font-size: 13.0px; } - + @@ -325,7 +325,7 @@ font-size: 13.0px; - + @@ -357,7 +357,7 @@ font-size: 13.0px; - + @@ -379,6 +379,6 @@ font-size: 13.0px; - + \ No newline at end of file diff --git a/docs/images/guides/stat/guideCountGroupedStatCountBarsWithColorPlot.svg b/docs/images/guides/stat/guideCountGroupedStatCountBarsWithColorPlot.svg index 832423b04..983cb8a48 100644 --- a/docs/images/guides/stat/guideCountGroupedStatCountBarsWithColorPlot.svg +++ b/docs/images/guides/stat/guideCountGroupedStatCountBarsWithColorPlot.svg @@ -10,117 +10,117 @@ text { text-rendering: optimizeLegibility; } -#xXxprefixXx0 .plot-title { +#_sample_helper_static_id_prefix_0 .plot-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-x { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-x { fill: #ffffff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-y { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-y { fill: #ffffff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-text { +#_sample_helper_static_id_prefix_2 .tooltip-text { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-title { +#_sample_helper_static_id_prefix_2 .tooltip-title { fill: #474747; font-weight: bold; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-label { +#_sample_helper_static_id_prefix_2 .tooltip-label { fill: #474747; font-weight: bold; font-style: normal;font-family: sans-serif; @@ -129,7 +129,7 @@ font-size: 13.0px; } - + @@ -179,7 +179,7 @@ font-size: 13.0px; - + @@ -211,7 +211,7 @@ font-size: 13.0px; - + @@ -437,6 +437,6 @@ font-size: 13.0px; - + \ No newline at end of file diff --git a/docs/images/guides/stat/guideCountGroupedStatCountBarsWithColorPlot_dark.svg b/docs/images/guides/stat/guideCountGroupedStatCountBarsWithColorPlot_dark.svg index 0c0cfa9fd..814fcfab8 100644 --- a/docs/images/guides/stat/guideCountGroupedStatCountBarsWithColorPlot_dark.svg +++ b/docs/images/guides/stat/guideCountGroupedStatCountBarsWithColorPlot_dark.svg @@ -10,117 +10,117 @@ text { text-rendering: optimizeLegibility; } -#xXxprefixXx0 .plot-title { +#_sample_helper_static_id_prefix_0 .plot-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-x { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-x { fill: #303030; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-y { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-y { fill: #303030; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-text { +#_sample_helper_static_id_prefix_2 .tooltip-text { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-title { +#_sample_helper_static_id_prefix_2 .tooltip-title { fill: #bbbbbb; font-weight: bold; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-label { +#_sample_helper_static_id_prefix_2 .tooltip-label { fill: #bbbbbb; font-weight: bold; font-style: normal;font-family: sans-serif; @@ -129,7 +129,7 @@ font-size: 13.0px; } - + @@ -325,7 +325,7 @@ font-size: 13.0px; - + @@ -357,7 +357,7 @@ font-size: 13.0px; - + @@ -437,6 +437,6 @@ font-size: 13.0px; - + \ No newline at end of file diff --git a/docs/images/guides/stat/guideCountPlotWithItr.svg b/docs/images/guides/stat/guideCountPlotWithItr.svg index fc0dab167..786af41cd 100644 --- a/docs/images/guides/stat/guideCountPlotWithItr.svg +++ b/docs/images/guides/stat/guideCountPlotWithItr.svg @@ -10,117 +10,117 @@ text { text-rendering: optimizeLegibility; } -#xXxprefixXx0 .plot-title { +#_sample_helper_static_id_prefix_0 .plot-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-x { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-x { fill: #ffffff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-y { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-y { fill: #ffffff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-text { +#_sample_helper_static_id_prefix_2 .tooltip-text { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-title { +#_sample_helper_static_id_prefix_2 .tooltip-title { fill: #474747; font-weight: bold; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-label { +#_sample_helper_static_id_prefix_2 .tooltip-label { fill: #474747; font-weight: bold; font-style: normal;font-family: sans-serif; @@ -129,7 +129,7 @@ font-size: 13.0px; } - + @@ -167,7 +167,7 @@ font-size: 13.0px; - + @@ -181,7 +181,7 @@ font-size: 13.0px; - + @@ -299,6 +299,6 @@ font-size: 13.0px; - + \ No newline at end of file diff --git a/docs/images/guides/stat/guideCountPlotWithItr_dark.svg b/docs/images/guides/stat/guideCountPlotWithItr_dark.svg index a856d32c3..1a45cb422 100644 --- a/docs/images/guides/stat/guideCountPlotWithItr_dark.svg +++ b/docs/images/guides/stat/guideCountPlotWithItr_dark.svg @@ -10,117 +10,117 @@ text { text-rendering: optimizeLegibility; } -#xXxprefixXx0 .plot-title { +#_sample_helper_static_id_prefix_0 .plot-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-x { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-x { fill: #303030; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-y { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-y { fill: #303030; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-text { +#_sample_helper_static_id_prefix_2 .tooltip-text { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-title { +#_sample_helper_static_id_prefix_2 .tooltip-title { fill: #bbbbbb; font-weight: bold; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-label { +#_sample_helper_static_id_prefix_2 .tooltip-label { fill: #bbbbbb; font-weight: bold; font-style: normal;font-family: sans-serif; @@ -129,7 +129,7 @@ font-size: 13.0px; } - + @@ -263,7 +263,7 @@ font-size: 13.0px; - + @@ -277,7 +277,7 @@ font-size: 13.0px; - + @@ -299,6 +299,6 @@ font-size: 13.0px; - + \ No newline at end of file diff --git a/docs/images/guides/stat/guideCountPlotWithWeight.svg b/docs/images/guides/stat/guideCountPlotWithWeight.svg index 58deff71a..f3355df7e 100644 --- a/docs/images/guides/stat/guideCountPlotWithWeight.svg +++ b/docs/images/guides/stat/guideCountPlotWithWeight.svg @@ -10,117 +10,117 @@ text { text-rendering: optimizeLegibility; } -#xXxprefixXx0 .plot-title { +#_sample_helper_static_id_prefix_0 .plot-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-x { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-x { fill: #ffffff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-y { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-y { fill: #ffffff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-text { +#_sample_helper_static_id_prefix_2 .tooltip-text { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-title { +#_sample_helper_static_id_prefix_2 .tooltip-title { fill: #474747; font-weight: bold; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-label { +#_sample_helper_static_id_prefix_2 .tooltip-label { fill: #474747; font-weight: bold; font-style: normal;font-family: sans-serif; @@ -129,7 +129,7 @@ font-size: 13.0px; } - + @@ -171,7 +171,7 @@ font-size: 13.0px; - + @@ -193,7 +193,7 @@ font-size: 13.0px; - + @@ -333,6 +333,6 @@ font-size: 13.0px; - + \ No newline at end of file diff --git a/docs/images/guides/stat/guideCountPlotWithWeight_dark.svg b/docs/images/guides/stat/guideCountPlotWithWeight_dark.svg index f0ae32b51..451c97fe7 100644 --- a/docs/images/guides/stat/guideCountPlotWithWeight_dark.svg +++ b/docs/images/guides/stat/guideCountPlotWithWeight_dark.svg @@ -10,117 +10,117 @@ text { text-rendering: optimizeLegibility; } -#xXxprefixXx0 .plot-title { +#_sample_helper_static_id_prefix_0 .plot-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-x { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-x { fill: #303030; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-y { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-y { fill: #303030; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-text { +#_sample_helper_static_id_prefix_2 .tooltip-text { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-title { +#_sample_helper_static_id_prefix_2 .tooltip-title { fill: #bbbbbb; font-weight: bold; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-label { +#_sample_helper_static_id_prefix_2 .tooltip-label { fill: #bbbbbb; font-weight: bold; font-style: normal;font-family: sans-serif; @@ -129,7 +129,7 @@ font-size: 13.0px; } - + @@ -289,7 +289,7 @@ font-size: 13.0px; - + @@ -311,7 +311,7 @@ font-size: 13.0px; - + @@ -333,6 +333,6 @@ font-size: 13.0px; - + \ No newline at end of file diff --git a/docs/images/guides/stat/guideCountSimpleCountPlot.svg b/docs/images/guides/stat/guideCountSimpleCountPlot.svg index ed15775d2..b458e4b29 100644 --- a/docs/images/guides/stat/guideCountSimpleCountPlot.svg +++ b/docs/images/guides/stat/guideCountSimpleCountPlot.svg @@ -10,117 +10,117 @@ text { text-rendering: optimizeLegibility; } -#xXxprefixXx0 .plot-title { +#_sample_helper_static_id_prefix_0 .plot-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-x { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-x { fill: #ffffff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-y { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-y { fill: #ffffff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-text { +#_sample_helper_static_id_prefix_2 .tooltip-text { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-title { +#_sample_helper_static_id_prefix_2 .tooltip-title { fill: #474747; font-weight: bold; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-label { +#_sample_helper_static_id_prefix_2 .tooltip-label { fill: #474747; font-weight: bold; font-style: normal;font-family: sans-serif; @@ -129,7 +129,7 @@ font-size: 13.0px; } - + @@ -171,7 +171,7 @@ font-size: 13.0px; - + @@ -193,7 +193,7 @@ font-size: 13.0px; - + @@ -333,6 +333,6 @@ font-size: 13.0px; - + \ No newline at end of file diff --git a/docs/images/guides/stat/guideCountSimpleCountPlot_dark.svg b/docs/images/guides/stat/guideCountSimpleCountPlot_dark.svg index dc5cc204c..50060f44f 100644 --- a/docs/images/guides/stat/guideCountSimpleCountPlot_dark.svg +++ b/docs/images/guides/stat/guideCountSimpleCountPlot_dark.svg @@ -10,117 +10,117 @@ text { text-rendering: optimizeLegibility; } -#xXxprefixXx0 .plot-title { +#_sample_helper_static_id_prefix_0 .plot-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-x { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-x { fill: #303030; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-y { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-y { fill: #303030; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-text { +#_sample_helper_static_id_prefix_2 .tooltip-text { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-title { +#_sample_helper_static_id_prefix_2 .tooltip-title { fill: #bbbbbb; font-weight: bold; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-label { +#_sample_helper_static_id_prefix_2 .tooltip-label { fill: #bbbbbb; font-weight: bold; font-style: normal;font-family: sans-serif; @@ -129,7 +129,7 @@ font-size: 13.0px; } - + @@ -289,7 +289,7 @@ font-size: 13.0px; - + @@ -311,7 +311,7 @@ font-size: 13.0px; - + @@ -333,6 +333,6 @@ font-size: 13.0px; - + \ No newline at end of file diff --git a/docs/images/guides/stat/guideCountSimpleGroupedCountPlot.svg b/docs/images/guides/stat/guideCountSimpleGroupedCountPlot.svg index b237bc912..6baf4372d 100644 --- a/docs/images/guides/stat/guideCountSimpleGroupedCountPlot.svg +++ b/docs/images/guides/stat/guideCountSimpleGroupedCountPlot.svg @@ -10,117 +10,117 @@ text { text-rendering: optimizeLegibility; } -#xXxprefixXx0 .plot-title { +#_sample_helper_static_id_prefix_0 .plot-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-x { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-x { fill: #ffffff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-y { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-y { fill: #ffffff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-text { +#_sample_helper_static_id_prefix_2 .tooltip-text { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-title { +#_sample_helper_static_id_prefix_2 .tooltip-title { fill: #474747; font-weight: bold; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-label { +#_sample_helper_static_id_prefix_2 .tooltip-label { fill: #474747; font-weight: bold; font-style: normal;font-family: sans-serif; @@ -129,7 +129,7 @@ font-size: 13.0px; } - + @@ -179,7 +179,7 @@ font-size: 13.0px; - + @@ -211,7 +211,7 @@ font-size: 13.0px; - + @@ -437,6 +437,6 @@ font-size: 13.0px; - + \ No newline at end of file diff --git a/docs/images/guides/stat/guideCountSimpleGroupedCountPlot_dark.svg b/docs/images/guides/stat/guideCountSimpleGroupedCountPlot_dark.svg index 629d90262..3fde22a75 100644 --- a/docs/images/guides/stat/guideCountSimpleGroupedCountPlot_dark.svg +++ b/docs/images/guides/stat/guideCountSimpleGroupedCountPlot_dark.svg @@ -10,117 +10,117 @@ text { text-rendering: optimizeLegibility; } -#xXxprefixXx0 .plot-title { +#_sample_helper_static_id_prefix_0 .plot-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-x { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-x { fill: #303030; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-y { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-y { fill: #303030; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-text { +#_sample_helper_static_id_prefix_2 .tooltip-text { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-title { +#_sample_helper_static_id_prefix_2 .tooltip-title { fill: #bbbbbb; font-weight: bold; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-label { +#_sample_helper_static_id_prefix_2 .tooltip-label { fill: #bbbbbb; font-weight: bold; font-style: normal;font-family: sans-serif; @@ -129,7 +129,7 @@ font-size: 13.0px; } - + @@ -325,7 +325,7 @@ font-size: 13.0px; - + @@ -357,7 +357,7 @@ font-size: 13.0px; - + @@ -437,6 +437,6 @@ font-size: 13.0px; - + \ No newline at end of file diff --git a/docs/images/guides/stat/guideCountSimplePlot.svg b/docs/images/guides/stat/guideCountSimplePlot.svg index acf0528b3..6770ecced 100644 --- a/docs/images/guides/stat/guideCountSimplePlot.svg +++ b/docs/images/guides/stat/guideCountSimplePlot.svg @@ -10,117 +10,117 @@ text { text-rendering: optimizeLegibility; } -#xXxprefixXx0 .plot-title { +#_sample_helper_static_id_prefix_0 .plot-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-x { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-x { fill: #ffffff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-y { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-y { fill: #ffffff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-text { +#_sample_helper_static_id_prefix_2 .tooltip-text { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-title { +#_sample_helper_static_id_prefix_2 .tooltip-title { fill: #474747; font-weight: bold; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-label { +#_sample_helper_static_id_prefix_2 .tooltip-label { fill: #474747; font-weight: bold; font-style: normal;font-family: sans-serif; @@ -129,7 +129,7 @@ font-size: 13.0px; } - + @@ -171,7 +171,7 @@ font-size: 13.0px; - + @@ -193,7 +193,7 @@ font-size: 13.0px; - + @@ -338,6 +338,6 @@ font-size: 13.0px; - + \ No newline at end of file diff --git a/docs/images/guides/stat/guideCountSimplePlot_dark.svg b/docs/images/guides/stat/guideCountSimplePlot_dark.svg index 7cd51c27c..6226ddf94 100644 --- a/docs/images/guides/stat/guideCountSimplePlot_dark.svg +++ b/docs/images/guides/stat/guideCountSimplePlot_dark.svg @@ -10,117 +10,117 @@ text { text-rendering: optimizeLegibility; } -#xXxprefixXx0 .plot-title { +#_sample_helper_static_id_prefix_0 .plot-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-x { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-x { fill: #303030; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-y { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-y { fill: #303030; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-text { +#_sample_helper_static_id_prefix_2 .tooltip-text { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-title { +#_sample_helper_static_id_prefix_2 .tooltip-title { fill: #bbbbbb; font-weight: bold; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-label { +#_sample_helper_static_id_prefix_2 .tooltip-label { fill: #bbbbbb; font-weight: bold; font-style: normal;font-family: sans-serif; @@ -129,7 +129,7 @@ font-size: 13.0px; } - + @@ -289,7 +289,7 @@ font-size: 13.0px; - + @@ -311,7 +311,7 @@ font-size: 13.0px; - + @@ -338,6 +338,6 @@ font-size: 13.0px; - + \ No newline at end of file diff --git a/docs/images/guides/stat/guideCountStatCountBarsPlot.svg b/docs/images/guides/stat/guideCountStatCountBarsPlot.svg index a6539c2c8..cea242fcc 100644 --- a/docs/images/guides/stat/guideCountStatCountBarsPlot.svg +++ b/docs/images/guides/stat/guideCountStatCountBarsPlot.svg @@ -10,117 +10,117 @@ text { text-rendering: optimizeLegibility; } -#xXxprefixXx0 .plot-title { +#_sample_helper_static_id_prefix_0 .plot-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-x { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-x { fill: #ffffff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-y { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-y { fill: #ffffff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-text { +#_sample_helper_static_id_prefix_2 .tooltip-text { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-title { +#_sample_helper_static_id_prefix_2 .tooltip-title { fill: #474747; font-weight: bold; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-label { +#_sample_helper_static_id_prefix_2 .tooltip-label { fill: #474747; font-weight: bold; font-style: normal;font-family: sans-serif; @@ -129,7 +129,7 @@ font-size: 13.0px; } - + @@ -171,7 +171,7 @@ font-size: 13.0px; - + @@ -193,7 +193,7 @@ font-size: 13.0px; - + @@ -338,6 +338,6 @@ font-size: 13.0px; - + \ No newline at end of file diff --git a/docs/images/guides/stat/guideCountStatCountBarsPlot_dark.svg b/docs/images/guides/stat/guideCountStatCountBarsPlot_dark.svg index 5c1c62497..1ec922007 100644 --- a/docs/images/guides/stat/guideCountStatCountBarsPlot_dark.svg +++ b/docs/images/guides/stat/guideCountStatCountBarsPlot_dark.svg @@ -10,117 +10,117 @@ text { text-rendering: optimizeLegibility; } -#xXxprefixXx0 .plot-title { +#_sample_helper_static_id_prefix_0 .plot-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-x { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-x { fill: #303030; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-y { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-y { fill: #303030; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-text { +#_sample_helper_static_id_prefix_2 .tooltip-text { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-title { +#_sample_helper_static_id_prefix_2 .tooltip-title { fill: #bbbbbb; font-weight: bold; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-label { +#_sample_helper_static_id_prefix_2 .tooltip-label { fill: #bbbbbb; font-weight: bold; font-style: normal;font-family: sans-serif; @@ -129,7 +129,7 @@ font-size: 13.0px; } - + @@ -289,7 +289,7 @@ font-size: 13.0px; - + @@ -311,7 +311,7 @@ font-size: 13.0px; - + @@ -338,6 +338,6 @@ font-size: 13.0px; - + \ No newline at end of file diff --git a/docs/images/guides/stat/guideCountStatCountFillColor.svg b/docs/images/guides/stat/guideCountStatCountFillColor.svg index 2d37fad65..7d3a9fe40 100644 --- a/docs/images/guides/stat/guideCountStatCountFillColor.svg +++ b/docs/images/guides/stat/guideCountStatCountFillColor.svg @@ -10,117 +10,117 @@ text { text-rendering: optimizeLegibility; } -#xXxprefixXx0 .plot-title { +#_sample_helper_static_id_prefix_0 .plot-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-x { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-x { fill: #ffffff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-y { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-y { fill: #ffffff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-text { +#_sample_helper_static_id_prefix_2 .tooltip-text { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-title { +#_sample_helper_static_id_prefix_2 .tooltip-title { fill: #474747; font-weight: bold; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-label { +#_sample_helper_static_id_prefix_2 .tooltip-label { fill: #474747; font-weight: bold; font-style: normal;font-family: sans-serif; @@ -129,7 +129,7 @@ font-size: 13.0px; } - + @@ -171,7 +171,7 @@ font-size: 13.0px; - + @@ -193,7 +193,7 @@ font-size: 13.0px; - + @@ -442,6 +442,6 @@ font-size: 13.0px; - + \ No newline at end of file diff --git a/docs/images/guides/stat/guideCountStatCountFillColor_dark.svg b/docs/images/guides/stat/guideCountStatCountFillColor_dark.svg index b9cc32cda..60d798544 100644 --- a/docs/images/guides/stat/guideCountStatCountFillColor_dark.svg +++ b/docs/images/guides/stat/guideCountStatCountFillColor_dark.svg @@ -10,117 +10,117 @@ text { text-rendering: optimizeLegibility; } -#xXxprefixXx0 .plot-title { +#_sample_helper_static_id_prefix_0 .plot-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-x { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-x { fill: #303030; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-y { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-y { fill: #303030; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-text { +#_sample_helper_static_id_prefix_2 .tooltip-text { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-title { +#_sample_helper_static_id_prefix_2 .tooltip-title { fill: #bbbbbb; font-weight: bold; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-label { +#_sample_helper_static_id_prefix_2 .tooltip-label { fill: #bbbbbb; font-weight: bold; font-style: normal;font-family: sans-serif; @@ -129,7 +129,7 @@ font-size: 13.0px; } - + @@ -289,7 +289,7 @@ font-size: 13.0px; - + @@ -311,7 +311,7 @@ font-size: 13.0px; - + @@ -442,6 +442,6 @@ font-size: 13.0px; - + \ No newline at end of file diff --git a/docs/images/guides/stat/guideCountStatCountPointsPlot.svg b/docs/images/guides/stat/guideCountStatCountPointsPlot.svg index 0b1183d39..6740d075f 100644 --- a/docs/images/guides/stat/guideCountStatCountPointsPlot.svg +++ b/docs/images/guides/stat/guideCountStatCountPointsPlot.svg @@ -10,117 +10,117 @@ text { text-rendering: optimizeLegibility; } -#xXxprefixXx0 .plot-title { +#_sample_helper_static_id_prefix_0 .plot-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-x { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-x { fill: #ffffff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-y { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-y { fill: #ffffff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-text { +#_sample_helper_static_id_prefix_2 .tooltip-text { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-title { +#_sample_helper_static_id_prefix_2 .tooltip-title { fill: #474747; font-weight: bold; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-label { +#_sample_helper_static_id_prefix_2 .tooltip-label { fill: #474747; font-weight: bold; font-style: normal;font-family: sans-serif; @@ -129,7 +129,7 @@ font-size: 13.0px; } - + @@ -169,7 +169,7 @@ font-size: 13.0px; - + @@ -188,7 +188,7 @@ font-size: 13.0px; - + @@ -555,6 +555,6 @@ font-size: 13.0px; - + \ No newline at end of file diff --git a/docs/images/guides/stat/guideCountStatCountPointsPlot_dark.svg b/docs/images/guides/stat/guideCountStatCountPointsPlot_dark.svg index 0115c3d4a..f4c9678e7 100644 --- a/docs/images/guides/stat/guideCountStatCountPointsPlot_dark.svg +++ b/docs/images/guides/stat/guideCountStatCountPointsPlot_dark.svg @@ -10,117 +10,117 @@ text { text-rendering: optimizeLegibility; } -#xXxprefixXx0 .plot-title { +#_sample_helper_static_id_prefix_0 .plot-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-x { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-x { fill: #303030; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-y { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-y { fill: #303030; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-text { +#_sample_helper_static_id_prefix_2 .tooltip-text { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-title { +#_sample_helper_static_id_prefix_2 .tooltip-title { fill: #bbbbbb; font-weight: bold; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-label { +#_sample_helper_static_id_prefix_2 .tooltip-label { fill: #bbbbbb; font-weight: bold; font-style: normal;font-family: sans-serif; @@ -129,7 +129,7 @@ font-size: 13.0px; } - + @@ -280,7 +280,7 @@ font-size: 13.0px; - + @@ -299,7 +299,7 @@ font-size: 13.0px; - + @@ -555,6 +555,6 @@ font-size: 13.0px; - + \ No newline at end of file diff --git a/docs/images/guides/stat/guideCountWithHLine.svg b/docs/images/guides/stat/guideCountWithHLine.svg index 228e77cdb..4628f4fcd 100644 --- a/docs/images/guides/stat/guideCountWithHLine.svg +++ b/docs/images/guides/stat/guideCountWithHLine.svg @@ -10,117 +10,117 @@ text { text-rendering: optimizeLegibility; } -#xXxprefixXx0 .plot-title { +#_sample_helper_static_id_prefix_0 .plot-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx3 .axis-tooltip-text-x { +#_sample_helper_static_id_prefix_3 .axis-tooltip-text-x { fill: #ffffff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx3 .axis-tooltip-text-y { +#_sample_helper_static_id_prefix_3 .axis-tooltip-text-y { fill: #ffffff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx3 .tooltip-text { +#_sample_helper_static_id_prefix_3 .tooltip-text { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx3 .tooltip-title { +#_sample_helper_static_id_prefix_3 .tooltip-title { fill: #474747; font-weight: bold; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx3 .tooltip-label { +#_sample_helper_static_id_prefix_3 .tooltip-label { fill: #474747; font-weight: bold; font-style: normal;font-family: sans-serif; @@ -129,7 +129,7 @@ font-size: 13.0px; } - + @@ -171,7 +171,7 @@ font-size: 13.0px; - + @@ -197,13 +197,13 @@ font-size: 13.0px; - + - + @@ -343,6 +343,6 @@ font-size: 13.0px; - + \ No newline at end of file diff --git a/docs/images/guides/stat/guideCountWithHLine_dark.svg b/docs/images/guides/stat/guideCountWithHLine_dark.svg index dc394b411..eb546d28b 100644 --- a/docs/images/guides/stat/guideCountWithHLine_dark.svg +++ b/docs/images/guides/stat/guideCountWithHLine_dark.svg @@ -10,117 +10,117 @@ text { text-rendering: optimizeLegibility; } -#xXxprefixXx0 .plot-title { +#_sample_helper_static_id_prefix_0 .plot-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx3 .axis-tooltip-text-x { +#_sample_helper_static_id_prefix_3 .axis-tooltip-text-x { fill: #303030; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx3 .axis-tooltip-text-y { +#_sample_helper_static_id_prefix_3 .axis-tooltip-text-y { fill: #303030; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx3 .tooltip-text { +#_sample_helper_static_id_prefix_3 .tooltip-text { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx3 .tooltip-title { +#_sample_helper_static_id_prefix_3 .tooltip-title { fill: #bbbbbb; font-weight: bold; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx3 .tooltip-label { +#_sample_helper_static_id_prefix_3 .tooltip-label { fill: #bbbbbb; font-weight: bold; font-style: normal;font-family: sans-serif; @@ -129,7 +129,7 @@ font-size: 13.0px; } - + @@ -289,7 +289,7 @@ font-size: 13.0px; - + @@ -315,13 +315,13 @@ font-size: 13.0px; - + - + @@ -343,6 +343,6 @@ font-size: 13.0px; - + \ No newline at end of file diff --git a/docs/images/guides/stat/guideHeatmapConfigureHeatmap.svg b/docs/images/guides/stat/guideHeatmapConfigureHeatmap.svg index 3c2da04ec..4f2469b75 100644 --- a/docs/images/guides/stat/guideHeatmapConfigureHeatmap.svg +++ b/docs/images/guides/stat/guideHeatmapConfigureHeatmap.svg @@ -10,117 +10,117 @@ text { text-rendering: optimizeLegibility; } -#xXxprefixXx0 .plot-title { +#_sample_helper_static_id_prefix_0 .plot-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-x { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-x { fill: #ffffff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-y { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-y { fill: #ffffff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-text { +#_sample_helper_static_id_prefix_2 .tooltip-text { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-title { +#_sample_helper_static_id_prefix_2 .tooltip-title { fill: #474747; font-weight: bold; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-label { +#_sample_helper_static_id_prefix_2 .tooltip-label { fill: #474747; font-weight: bold; font-style: normal;font-family: sans-serif; @@ -129,7 +129,7 @@ font-size: 13.0px; } - + @@ -163,7 +163,7 @@ font-size: 13.0px; - + @@ -187,7 +187,7 @@ font-size: 13.0px; - + @@ -404,6 +404,6 @@ font-size: 13.0px; - + \ No newline at end of file diff --git a/docs/images/guides/stat/guideHeatmapConfigureHeatmap_dark.svg b/docs/images/guides/stat/guideHeatmapConfigureHeatmap_dark.svg index 4393533c0..f598bd9f6 100644 --- a/docs/images/guides/stat/guideHeatmapConfigureHeatmap_dark.svg +++ b/docs/images/guides/stat/guideHeatmapConfigureHeatmap_dark.svg @@ -10,117 +10,117 @@ text { text-rendering: optimizeLegibility; } -#xXxprefixXx0 .plot-title { +#_sample_helper_static_id_prefix_0 .plot-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-x { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-x { fill: #303030; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-y { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-y { fill: #303030; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-text { +#_sample_helper_static_id_prefix_2 .tooltip-text { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-title { +#_sample_helper_static_id_prefix_2 .tooltip-title { fill: #bbbbbb; font-weight: bold; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-label { +#_sample_helper_static_id_prefix_2 .tooltip-label { fill: #bbbbbb; font-weight: bold; font-style: normal;font-family: sans-serif; @@ -129,7 +129,7 @@ font-size: 13.0px; } - + @@ -253,7 +253,7 @@ font-size: 13.0px; - + @@ -277,7 +277,7 @@ font-size: 13.0px; - + @@ -404,6 +404,6 @@ font-size: 13.0px; - + \ No newline at end of file diff --git a/docs/images/guides/stat/guideHeatmapHeatmapInDf.svg b/docs/images/guides/stat/guideHeatmapHeatmapInDf.svg index 6e3a41607..4c6925be3 100644 --- a/docs/images/guides/stat/guideHeatmapHeatmapInDf.svg +++ b/docs/images/guides/stat/guideHeatmapHeatmapInDf.svg @@ -10,117 +10,117 @@ text { text-rendering: optimizeLegibility; } -#xXxprefixXx0 .plot-title { +#_sample_helper_static_id_prefix_0 .plot-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-x { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-x { fill: #ffffff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-y { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-y { fill: #ffffff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-text { +#_sample_helper_static_id_prefix_2 .tooltip-text { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-title { +#_sample_helper_static_id_prefix_2 .tooltip-title { fill: #474747; font-weight: bold; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-label { +#_sample_helper_static_id_prefix_2 .tooltip-label { fill: #474747; font-weight: bold; font-style: normal;font-family: sans-serif; @@ -129,7 +129,7 @@ font-size: 13.0px; } - + @@ -163,7 +163,7 @@ font-size: 13.0px; - + @@ -187,7 +187,7 @@ font-size: 13.0px; - + @@ -404,6 +404,6 @@ font-size: 13.0px; - + \ No newline at end of file diff --git a/docs/images/guides/stat/guideHeatmapHeatmapInDf_dark.svg b/docs/images/guides/stat/guideHeatmapHeatmapInDf_dark.svg index 554710077..59029d064 100644 --- a/docs/images/guides/stat/guideHeatmapHeatmapInDf_dark.svg +++ b/docs/images/guides/stat/guideHeatmapHeatmapInDf_dark.svg @@ -10,117 +10,117 @@ text { text-rendering: optimizeLegibility; } -#xXxprefixXx0 .plot-title { +#_sample_helper_static_id_prefix_0 .plot-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-x { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-x { fill: #303030; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-y { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-y { fill: #303030; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-text { +#_sample_helper_static_id_prefix_2 .tooltip-text { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-title { +#_sample_helper_static_id_prefix_2 .tooltip-title { fill: #bbbbbb; font-weight: bold; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-label { +#_sample_helper_static_id_prefix_2 .tooltip-label { fill: #bbbbbb; font-weight: bold; font-style: normal;font-family: sans-serif; @@ -129,7 +129,7 @@ font-size: 13.0px; } - + @@ -253,7 +253,7 @@ font-size: 13.0px; - + @@ -277,7 +277,7 @@ font-size: 13.0px; - + @@ -404,6 +404,6 @@ font-size: 13.0px; - + \ No newline at end of file diff --git a/docs/images/guides/stat/guideHeatmapHeatmapOnDf.svg b/docs/images/guides/stat/guideHeatmapHeatmapOnDf.svg index 56d7738d3..8f2306e1e 100644 --- a/docs/images/guides/stat/guideHeatmapHeatmapOnDf.svg +++ b/docs/images/guides/stat/guideHeatmapHeatmapOnDf.svg @@ -10,117 +10,117 @@ text { text-rendering: optimizeLegibility; } -#xXxprefixXx0 .plot-title { +#_sample_helper_static_id_prefix_0 .plot-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-x { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-x { fill: #ffffff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-y { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-y { fill: #ffffff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-text { +#_sample_helper_static_id_prefix_2 .tooltip-text { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-title { +#_sample_helper_static_id_prefix_2 .tooltip-title { fill: #474747; font-weight: bold; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-label { +#_sample_helper_static_id_prefix_2 .tooltip-label { fill: #474747; font-weight: bold; font-style: normal;font-family: sans-serif; @@ -129,7 +129,7 @@ font-size: 13.0px; } - + @@ -163,7 +163,7 @@ font-size: 13.0px; - + @@ -187,7 +187,7 @@ font-size: 13.0px; - + @@ -399,6 +399,6 @@ font-size: 13.0px; - + \ No newline at end of file diff --git a/docs/images/guides/stat/guideHeatmapHeatmapOnDf_dark.svg b/docs/images/guides/stat/guideHeatmapHeatmapOnDf_dark.svg index 72f7d0ccf..396eb365d 100644 --- a/docs/images/guides/stat/guideHeatmapHeatmapOnDf_dark.svg +++ b/docs/images/guides/stat/guideHeatmapHeatmapOnDf_dark.svg @@ -10,117 +10,117 @@ text { text-rendering: optimizeLegibility; } -#xXxprefixXx0 .plot-title { +#_sample_helper_static_id_prefix_0 .plot-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-x { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-x { fill: #303030; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-y { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-y { fill: #303030; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-text { +#_sample_helper_static_id_prefix_2 .tooltip-text { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-title { +#_sample_helper_static_id_prefix_2 .tooltip-title { fill: #bbbbbb; font-weight: bold; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-label { +#_sample_helper_static_id_prefix_2 .tooltip-label { fill: #bbbbbb; font-weight: bold; font-style: normal;font-family: sans-serif; @@ -129,7 +129,7 @@ font-size: 13.0px; } - + @@ -253,7 +253,7 @@ font-size: 13.0px; - + @@ -277,7 +277,7 @@ font-size: 13.0px; - + @@ -399,6 +399,6 @@ font-size: 13.0px; - + \ No newline at end of file diff --git a/docs/images/guides/stat/guideHeatmapSimpleHeatmapInDf.svg b/docs/images/guides/stat/guideHeatmapSimpleHeatmapInDf.svg index fa6816482..7b4376499 100644 --- a/docs/images/guides/stat/guideHeatmapSimpleHeatmapInDf.svg +++ b/docs/images/guides/stat/guideHeatmapSimpleHeatmapInDf.svg @@ -10,117 +10,117 @@ text { text-rendering: optimizeLegibility; } -#xXxprefixXx0 .plot-title { +#_sample_helper_static_id_prefix_0 .plot-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-x { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-x { fill: #ffffff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-y { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-y { fill: #ffffff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-text { +#_sample_helper_static_id_prefix_2 .tooltip-text { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-title { +#_sample_helper_static_id_prefix_2 .tooltip-title { fill: #474747; font-weight: bold; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-label { +#_sample_helper_static_id_prefix_2 .tooltip-label { fill: #474747; font-weight: bold; font-style: normal;font-family: sans-serif; @@ -129,7 +129,7 @@ font-size: 13.0px; } - + @@ -163,7 +163,7 @@ font-size: 13.0px; - + @@ -187,7 +187,7 @@ font-size: 13.0px; - + @@ -399,6 +399,6 @@ font-size: 13.0px; - + \ No newline at end of file diff --git a/docs/images/guides/stat/guideHeatmapSimpleHeatmapInDf_dark.svg b/docs/images/guides/stat/guideHeatmapSimpleHeatmapInDf_dark.svg index 4d157e775..ef9791a31 100644 --- a/docs/images/guides/stat/guideHeatmapSimpleHeatmapInDf_dark.svg +++ b/docs/images/guides/stat/guideHeatmapSimpleHeatmapInDf_dark.svg @@ -10,117 +10,117 @@ text { text-rendering: optimizeLegibility; } -#xXxprefixXx0 .plot-title { +#_sample_helper_static_id_prefix_0 .plot-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-x { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-x { fill: #303030; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-y { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-y { fill: #303030; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-text { +#_sample_helper_static_id_prefix_2 .tooltip-text { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-title { +#_sample_helper_static_id_prefix_2 .tooltip-title { fill: #bbbbbb; font-weight: bold; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-label { +#_sample_helper_static_id_prefix_2 .tooltip-label { fill: #bbbbbb; font-weight: bold; font-style: normal;font-family: sans-serif; @@ -129,7 +129,7 @@ font-size: 13.0px; } - + @@ -253,7 +253,7 @@ font-size: 13.0px; - + @@ -277,7 +277,7 @@ font-size: 13.0px; - + @@ -399,6 +399,6 @@ font-size: 13.0px; - + \ No newline at end of file diff --git a/docs/images/guides/stat/guideHeatmapStatCount2DPlot.svg b/docs/images/guides/stat/guideHeatmapStatCount2DPlot.svg index afa6dc2b0..8feab7d6b 100644 --- a/docs/images/guides/stat/guideHeatmapStatCount2DPlot.svg +++ b/docs/images/guides/stat/guideHeatmapStatCount2DPlot.svg @@ -10,117 +10,117 @@ text { text-rendering: optimizeLegibility; } -#xXxprefixXx0 .plot-title { +#_sample_helper_static_id_prefix_0 .plot-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-x { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-x { fill: #ffffff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-y { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-y { fill: #ffffff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-text { +#_sample_helper_static_id_prefix_2 .tooltip-text { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-title { +#_sample_helper_static_id_prefix_2 .tooltip-title { fill: #474747; font-weight: bold; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-label { +#_sample_helper_static_id_prefix_2 .tooltip-label { fill: #474747; font-weight: bold; font-style: normal;font-family: sans-serif; @@ -129,7 +129,7 @@ font-size: 13.0px; } - + @@ -163,7 +163,7 @@ font-size: 13.0px; - + @@ -187,7 +187,7 @@ font-size: 13.0px; - + @@ -392,6 +392,6 @@ font-size: 13.0px; - + \ No newline at end of file diff --git a/docs/images/guides/stat/guideHeatmapStatCount2DPlot_dark.svg b/docs/images/guides/stat/guideHeatmapStatCount2DPlot_dark.svg index 1aad167b8..2c1c60025 100644 --- a/docs/images/guides/stat/guideHeatmapStatCount2DPlot_dark.svg +++ b/docs/images/guides/stat/guideHeatmapStatCount2DPlot_dark.svg @@ -10,117 +10,117 @@ text { text-rendering: optimizeLegibility; } -#xXxprefixXx0 .plot-title { +#_sample_helper_static_id_prefix_0 .plot-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-x { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-x { fill: #303030; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-y { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-y { fill: #303030; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-text { +#_sample_helper_static_id_prefix_2 .tooltip-text { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-title { +#_sample_helper_static_id_prefix_2 .tooltip-title { fill: #bbbbbb; font-weight: bold; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-label { +#_sample_helper_static_id_prefix_2 .tooltip-label { fill: #bbbbbb; font-weight: bold; font-style: normal;font-family: sans-serif; @@ -129,7 +129,7 @@ font-size: 13.0px; } - + @@ -253,7 +253,7 @@ font-size: 13.0px; - + @@ -277,7 +277,7 @@ font-size: 13.0px; - + @@ -392,6 +392,6 @@ font-size: 13.0px; - + \ No newline at end of file diff --git a/docs/images/guides/stat/guideHeatmapStatCount2DTile.svg b/docs/images/guides/stat/guideHeatmapStatCount2DTile.svg index 8cf21cc96..d1bd07b8d 100644 --- a/docs/images/guides/stat/guideHeatmapStatCount2DTile.svg +++ b/docs/images/guides/stat/guideHeatmapStatCount2DTile.svg @@ -10,117 +10,117 @@ text { text-rendering: optimizeLegibility; } -#xXxprefixXx0 .plot-title { +#_sample_helper_static_id_prefix_0 .plot-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-x { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-x { fill: #ffffff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-y { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-y { fill: #ffffff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-text { +#_sample_helper_static_id_prefix_2 .tooltip-text { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-title { +#_sample_helper_static_id_prefix_2 .tooltip-title { fill: #474747; font-weight: bold; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-label { +#_sample_helper_static_id_prefix_2 .tooltip-label { fill: #474747; font-weight: bold; font-style: normal;font-family: sans-serif; @@ -129,7 +129,7 @@ font-size: 13.0px; } - + @@ -163,7 +163,7 @@ font-size: 13.0px; - + @@ -187,7 +187,7 @@ font-size: 13.0px; - + @@ -404,6 +404,6 @@ font-size: 13.0px; - + \ No newline at end of file diff --git a/docs/images/guides/stat/guideHeatmapStatCount2DTile_dark.svg b/docs/images/guides/stat/guideHeatmapStatCount2DTile_dark.svg index 6eff0e99d..e033e602a 100644 --- a/docs/images/guides/stat/guideHeatmapStatCount2DTile_dark.svg +++ b/docs/images/guides/stat/guideHeatmapStatCount2DTile_dark.svg @@ -10,117 +10,117 @@ text { text-rendering: optimizeLegibility; } -#xXxprefixXx0 .plot-title { +#_sample_helper_static_id_prefix_0 .plot-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-x { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-x { fill: #303030; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-y { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-y { fill: #303030; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-text { +#_sample_helper_static_id_prefix_2 .tooltip-text { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-title { +#_sample_helper_static_id_prefix_2 .tooltip-title { fill: #bbbbbb; font-weight: bold; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-label { +#_sample_helper_static_id_prefix_2 .tooltip-label { fill: #bbbbbb; font-weight: bold; font-style: normal;font-family: sans-serif; @@ -129,7 +129,7 @@ font-size: 13.0px; } - + @@ -253,7 +253,7 @@ font-size: 13.0px; - + @@ -277,7 +277,7 @@ font-size: 13.0px; - + @@ -404,6 +404,6 @@ font-size: 13.0px; - + \ No newline at end of file diff --git a/docs/images/guides/stat/guideHeatmapTileVsHeatMap.svg b/docs/images/guides/stat/guideHeatmapTileVsHeatMap.svg index c36836b25..514b37b6c 100644 --- a/docs/images/guides/stat/guideHeatmapTileVsHeatMap.svg +++ b/docs/images/guides/stat/guideHeatmapTileVsHeatMap.svg @@ -10,54 +10,54 @@ text { text-rendering: optimizeLegibility; } -#xXxprefixXx0 .plot-title { +#_sample_helper_static_id_prefix_0 .plot-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; @@ -71,14 +71,14 @@ font-weight: normal; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; @@ -92,14 +92,14 @@ font-weight: normal; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; @@ -129,7 +129,7 @@ font-size: 13.0px; } - + @@ -145,117 +145,117 @@ font-size: 13.0px; text { text-rendering: optimizeLegibility; } -#xXxprefixXx1 .plot-title { +#_sample_helper_static_id_prefix_1 .plot-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx1 .plot-subtitle { +#_sample_helper_static_id_prefix_1 .plot-subtitle { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx1 .plot-caption { +#_sample_helper_static_id_prefix_1 .plot-caption { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx1 .hyperlink-element { +#_sample_helper_static_id_prefix_1 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx1 .legend-title { +#_sample_helper_static_id_prefix_1 .legend-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx1 .legend-item { +#_sample_helper_static_id_prefix_1 .legend-item { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx1 .axis-title-x { +#_sample_helper_static_id_prefix_1 .axis-title-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx1 .axis-text-x { +#_sample_helper_static_id_prefix_1 .axis-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx3 .axis-tooltip-text-x { +#_sample_helper_static_id_prefix_3 .axis-tooltip-text-x { fill: #ffffff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx1 .axis-title-y { +#_sample_helper_static_id_prefix_1 .axis-title-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx1 .axis-text-y { +#_sample_helper_static_id_prefix_1 .axis-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx3 .axis-tooltip-text-y { +#_sample_helper_static_id_prefix_3 .axis-tooltip-text-y { fill: #ffffff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx1 .facet-strip-text-x { +#_sample_helper_static_id_prefix_1 .facet-strip-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx1 .facet-strip-text-y { +#_sample_helper_static_id_prefix_1 .facet-strip-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx3 .tooltip-text { +#_sample_helper_static_id_prefix_3 .tooltip-text { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx3 .tooltip-title { +#_sample_helper_static_id_prefix_3 .tooltip-title { fill: #474747; font-weight: bold; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx3 .tooltip-label { +#_sample_helper_static_id_prefix_3 .tooltip-label { fill: #474747; font-weight: bold; font-style: normal;font-family: sans-serif; @@ -264,7 +264,7 @@ font-size: 13.0px; } - + @@ -298,7 +298,7 @@ font-size: 13.0px; - + @@ -322,7 +322,7 @@ font-size: 13.0px; - + @@ -539,7 +539,7 @@ font-size: 13.0px; - + @@ -554,117 +554,117 @@ font-size: 13.0px; text { text-rendering: optimizeLegibility; } -#xXxprefixXx4 .plot-title { +#_sample_helper_static_id_prefix_4 .plot-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx4 .plot-subtitle { +#_sample_helper_static_id_prefix_4 .plot-subtitle { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx4 .plot-caption { +#_sample_helper_static_id_prefix_4 .plot-caption { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx4 .hyperlink-element { +#_sample_helper_static_id_prefix_4 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx4 .legend-title { +#_sample_helper_static_id_prefix_4 .legend-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx4 .legend-item { +#_sample_helper_static_id_prefix_4 .legend-item { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx4 .axis-title-x { +#_sample_helper_static_id_prefix_4 .axis-title-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx4 .axis-text-x { +#_sample_helper_static_id_prefix_4 .axis-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx6 .axis-tooltip-text-x { +#_sample_helper_static_id_prefix_6 .axis-tooltip-text-x { fill: #ffffff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx4 .axis-title-y { +#_sample_helper_static_id_prefix_4 .axis-title-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx4 .axis-text-y { +#_sample_helper_static_id_prefix_4 .axis-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx6 .axis-tooltip-text-y { +#_sample_helper_static_id_prefix_6 .axis-tooltip-text-y { fill: #ffffff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx4 .facet-strip-text-x { +#_sample_helper_static_id_prefix_4 .facet-strip-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx4 .facet-strip-text-y { +#_sample_helper_static_id_prefix_4 .facet-strip-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx6 .tooltip-text { +#_sample_helper_static_id_prefix_6 .tooltip-text { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx6 .tooltip-title { +#_sample_helper_static_id_prefix_6 .tooltip-title { fill: #474747; font-weight: bold; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx6 .tooltip-label { +#_sample_helper_static_id_prefix_6 .tooltip-label { fill: #474747; font-weight: bold; font-style: normal;font-family: sans-serif; @@ -673,7 +673,7 @@ font-size: 13.0px; } - + @@ -707,7 +707,7 @@ font-size: 13.0px; - + @@ -731,7 +731,7 @@ font-size: 13.0px; - + @@ -948,7 +948,7 @@ font-size: 13.0px; - + \ No newline at end of file diff --git a/docs/images/guides/stat/guideHeatmapTileVsHeatMap_dark.svg b/docs/images/guides/stat/guideHeatmapTileVsHeatMap_dark.svg index 79a54937a..fac44cc56 100644 --- a/docs/images/guides/stat/guideHeatmapTileVsHeatMap_dark.svg +++ b/docs/images/guides/stat/guideHeatmapTileVsHeatMap_dark.svg @@ -10,54 +10,54 @@ text { text-rendering: optimizeLegibility; } -#xXxprefixXx0 .plot-title { +#_sample_helper_static_id_prefix_0 .plot-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; @@ -71,14 +71,14 @@ font-weight: normal; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; @@ -92,14 +92,14 @@ font-weight: normal; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; @@ -129,7 +129,7 @@ font-size: 13.0px; } - + @@ -145,117 +145,117 @@ font-size: 13.0px; text { text-rendering: optimizeLegibility; } -#xXxprefixXx1 .plot-title { +#_sample_helper_static_id_prefix_1 .plot-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx1 .plot-subtitle { +#_sample_helper_static_id_prefix_1 .plot-subtitle { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx1 .plot-caption { +#_sample_helper_static_id_prefix_1 .plot-caption { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx1 .hyperlink-element { +#_sample_helper_static_id_prefix_1 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx1 .legend-title { +#_sample_helper_static_id_prefix_1 .legend-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx1 .legend-item { +#_sample_helper_static_id_prefix_1 .legend-item { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx1 .axis-title-x { +#_sample_helper_static_id_prefix_1 .axis-title-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx1 .axis-text-x { +#_sample_helper_static_id_prefix_1 .axis-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx3 .axis-tooltip-text-x { +#_sample_helper_static_id_prefix_3 .axis-tooltip-text-x { fill: #303030; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx1 .axis-title-y { +#_sample_helper_static_id_prefix_1 .axis-title-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx1 .axis-text-y { +#_sample_helper_static_id_prefix_1 .axis-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx3 .axis-tooltip-text-y { +#_sample_helper_static_id_prefix_3 .axis-tooltip-text-y { fill: #303030; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx1 .facet-strip-text-x { +#_sample_helper_static_id_prefix_1 .facet-strip-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx1 .facet-strip-text-y { +#_sample_helper_static_id_prefix_1 .facet-strip-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx3 .tooltip-text { +#_sample_helper_static_id_prefix_3 .tooltip-text { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx3 .tooltip-title { +#_sample_helper_static_id_prefix_3 .tooltip-title { fill: #bbbbbb; font-weight: bold; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx3 .tooltip-label { +#_sample_helper_static_id_prefix_3 .tooltip-label { fill: #bbbbbb; font-weight: bold; font-style: normal;font-family: sans-serif; @@ -264,7 +264,7 @@ font-size: 13.0px; } - + @@ -388,7 +388,7 @@ font-size: 13.0px; - + @@ -412,7 +412,7 @@ font-size: 13.0px; - + @@ -539,7 +539,7 @@ font-size: 13.0px; - + @@ -554,117 +554,117 @@ font-size: 13.0px; text { text-rendering: optimizeLegibility; } -#xXxprefixXx4 .plot-title { +#_sample_helper_static_id_prefix_4 .plot-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx4 .plot-subtitle { +#_sample_helper_static_id_prefix_4 .plot-subtitle { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx4 .plot-caption { +#_sample_helper_static_id_prefix_4 .plot-caption { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx4 .hyperlink-element { +#_sample_helper_static_id_prefix_4 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx4 .legend-title { +#_sample_helper_static_id_prefix_4 .legend-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx4 .legend-item { +#_sample_helper_static_id_prefix_4 .legend-item { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx4 .axis-title-x { +#_sample_helper_static_id_prefix_4 .axis-title-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx4 .axis-text-x { +#_sample_helper_static_id_prefix_4 .axis-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx6 .axis-tooltip-text-x { +#_sample_helper_static_id_prefix_6 .axis-tooltip-text-x { fill: #303030; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx4 .axis-title-y { +#_sample_helper_static_id_prefix_4 .axis-title-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx4 .axis-text-y { +#_sample_helper_static_id_prefix_4 .axis-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx6 .axis-tooltip-text-y { +#_sample_helper_static_id_prefix_6 .axis-tooltip-text-y { fill: #303030; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx4 .facet-strip-text-x { +#_sample_helper_static_id_prefix_4 .facet-strip-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx4 .facet-strip-text-y { +#_sample_helper_static_id_prefix_4 .facet-strip-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx6 .tooltip-text { +#_sample_helper_static_id_prefix_6 .tooltip-text { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx6 .tooltip-title { +#_sample_helper_static_id_prefix_6 .tooltip-title { fill: #bbbbbb; font-weight: bold; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx6 .tooltip-label { +#_sample_helper_static_id_prefix_6 .tooltip-label { fill: #bbbbbb; font-weight: bold; font-style: normal;font-family: sans-serif; @@ -673,7 +673,7 @@ font-size: 13.0px; } - + @@ -797,7 +797,7 @@ font-size: 13.0px; - + @@ -821,7 +821,7 @@ font-size: 13.0px; - + @@ -948,7 +948,7 @@ font-size: 13.0px; - + \ No newline at end of file diff --git a/docs/images/guides/stat/guideHeatmapWithFillColor.svg b/docs/images/guides/stat/guideHeatmapWithFillColor.svg index 5dd990f36..cde20f257 100644 --- a/docs/images/guides/stat/guideHeatmapWithFillColor.svg +++ b/docs/images/guides/stat/guideHeatmapWithFillColor.svg @@ -10,117 +10,117 @@ text { text-rendering: optimizeLegibility; } -#xXxprefixXx0 .plot-title { +#_sample_helper_static_id_prefix_0 .plot-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-x { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-x { fill: #ffffff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-y { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-y { fill: #ffffff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-text { +#_sample_helper_static_id_prefix_2 .tooltip-text { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-title { +#_sample_helper_static_id_prefix_2 .tooltip-title { fill: #474747; font-weight: bold; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-label { +#_sample_helper_static_id_prefix_2 .tooltip-label { fill: #474747; font-weight: bold; font-style: normal;font-family: sans-serif; @@ -129,7 +129,7 @@ font-size: 13.0px; } - + @@ -163,7 +163,7 @@ font-size: 13.0px; - + @@ -187,7 +187,7 @@ font-size: 13.0px; - + @@ -379,6 +379,6 @@ font-size: 13.0px; - + \ No newline at end of file diff --git a/docs/images/guides/stat/guideHeatmapWithFillColor_dark.svg b/docs/images/guides/stat/guideHeatmapWithFillColor_dark.svg index 97a31a870..77fcb891d 100644 --- a/docs/images/guides/stat/guideHeatmapWithFillColor_dark.svg +++ b/docs/images/guides/stat/guideHeatmapWithFillColor_dark.svg @@ -10,117 +10,117 @@ text { text-rendering: optimizeLegibility; } -#xXxprefixXx0 .plot-title { +#_sample_helper_static_id_prefix_0 .plot-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-x { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-x { fill: #303030; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-y { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-y { fill: #303030; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-text { +#_sample_helper_static_id_prefix_2 .tooltip-text { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-title { +#_sample_helper_static_id_prefix_2 .tooltip-title { fill: #bbbbbb; font-weight: bold; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-label { +#_sample_helper_static_id_prefix_2 .tooltip-label { fill: #bbbbbb; font-weight: bold; font-style: normal;font-family: sans-serif; @@ -129,7 +129,7 @@ font-size: 13.0px; } - + @@ -245,7 +245,7 @@ font-size: 13.0px; - + @@ -269,7 +269,7 @@ font-size: 13.0px; - + @@ -379,6 +379,6 @@ font-size: 13.0px; - + \ No newline at end of file diff --git a/docs/images/guides/stat/guideHeatmapWithIterable.svg b/docs/images/guides/stat/guideHeatmapWithIterable.svg index 96c4914a3..30c1c18d0 100644 --- a/docs/images/guides/stat/guideHeatmapWithIterable.svg +++ b/docs/images/guides/stat/guideHeatmapWithIterable.svg @@ -10,117 +10,117 @@ text { text-rendering: optimizeLegibility; } -#xXxprefixXx0 .plot-title { +#_sample_helper_static_id_prefix_0 .plot-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-x { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-x { fill: #ffffff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-y { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-y { fill: #ffffff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-text { +#_sample_helper_static_id_prefix_2 .tooltip-text { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-title { +#_sample_helper_static_id_prefix_2 .tooltip-title { fill: #474747; font-weight: bold; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-label { +#_sample_helper_static_id_prefix_2 .tooltip-label { fill: #474747; font-weight: bold; font-style: normal;font-family: sans-serif; @@ -129,7 +129,7 @@ font-size: 13.0px; } - + @@ -173,7 +173,7 @@ font-size: 13.0px; - + @@ -189,7 +189,7 @@ font-size: 13.0px; - + @@ -428,6 +428,6 @@ font-size: 13.0px; - + \ No newline at end of file diff --git a/docs/images/guides/stat/guideHeatmapWithIterable_dark.svg b/docs/images/guides/stat/guideHeatmapWithIterable_dark.svg index e54b0ab7b..cf50d671c 100644 --- a/docs/images/guides/stat/guideHeatmapWithIterable_dark.svg +++ b/docs/images/guides/stat/guideHeatmapWithIterable_dark.svg @@ -10,117 +10,117 @@ text { text-rendering: optimizeLegibility; } -#xXxprefixXx0 .plot-title { +#_sample_helper_static_id_prefix_0 .plot-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-x { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-x { fill: #303030; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-y { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-y { fill: #303030; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-text { +#_sample_helper_static_id_prefix_2 .tooltip-text { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-title { +#_sample_helper_static_id_prefix_2 .tooltip-title { fill: #bbbbbb; font-weight: bold; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-label { +#_sample_helper_static_id_prefix_2 .tooltip-label { fill: #bbbbbb; font-weight: bold; font-style: normal;font-family: sans-serif; @@ -129,7 +129,7 @@ font-size: 13.0px; } - + @@ -290,7 +290,7 @@ font-size: 13.0px; - + @@ -306,7 +306,7 @@ font-size: 13.0px; - + @@ -428,6 +428,6 @@ font-size: 13.0px; - + \ No newline at end of file diff --git a/docs/images/guides/stat/guideHeatmapWithWeight.svg b/docs/images/guides/stat/guideHeatmapWithWeight.svg index fa6816482..7b4376499 100644 --- a/docs/images/guides/stat/guideHeatmapWithWeight.svg +++ b/docs/images/guides/stat/guideHeatmapWithWeight.svg @@ -10,117 +10,117 @@ text { text-rendering: optimizeLegibility; } -#xXxprefixXx0 .plot-title { +#_sample_helper_static_id_prefix_0 .plot-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-x { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-x { fill: #ffffff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-y { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-y { fill: #ffffff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-text { +#_sample_helper_static_id_prefix_2 .tooltip-text { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-title { +#_sample_helper_static_id_prefix_2 .tooltip-title { fill: #474747; font-weight: bold; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-label { +#_sample_helper_static_id_prefix_2 .tooltip-label { fill: #474747; font-weight: bold; font-style: normal;font-family: sans-serif; @@ -129,7 +129,7 @@ font-size: 13.0px; } - + @@ -163,7 +163,7 @@ font-size: 13.0px; - + @@ -187,7 +187,7 @@ font-size: 13.0px; - + @@ -399,6 +399,6 @@ font-size: 13.0px; - + \ No newline at end of file diff --git a/docs/images/guides/stat/guideHeatmapWithWeight_dark.svg b/docs/images/guides/stat/guideHeatmapWithWeight_dark.svg index 4d157e775..ef9791a31 100644 --- a/docs/images/guides/stat/guideHeatmapWithWeight_dark.svg +++ b/docs/images/guides/stat/guideHeatmapWithWeight_dark.svg @@ -10,117 +10,117 @@ text { text-rendering: optimizeLegibility; } -#xXxprefixXx0 .plot-title { +#_sample_helper_static_id_prefix_0 .plot-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-x { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-x { fill: #303030; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-y { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-y { fill: #303030; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-text { +#_sample_helper_static_id_prefix_2 .tooltip-text { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-title { +#_sample_helper_static_id_prefix_2 .tooltip-title { fill: #bbbbbb; font-weight: bold; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-label { +#_sample_helper_static_id_prefix_2 .tooltip-label { fill: #bbbbbb; font-weight: bold; font-style: normal;font-family: sans-serif; @@ -129,7 +129,7 @@ font-size: 13.0px; } - + @@ -253,7 +253,7 @@ font-size: 13.0px; - + @@ -277,7 +277,7 @@ font-size: 13.0px; - + @@ -399,6 +399,6 @@ font-size: 13.0px; - + \ No newline at end of file diff --git a/docs/images/quickstart_sample.svg b/docs/images/quickstart_sample.svg index 5cff5d418..e5983ef3c 100644 --- a/docs/images/quickstart_sample.svg +++ b/docs/images/quickstart_sample.svg @@ -10,117 +10,117 @@ text { text-rendering: optimizeLegibility; } -#xXxprefixXx0 .plot-title { +#_sample_helper_static_id_prefix_0 .plot-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx3 .axis-tooltip-text-x { +#_sample_helper_static_id_prefix_3 .axis-tooltip-text-x { fill: #ffffff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx3 .axis-tooltip-text-y { +#_sample_helper_static_id_prefix_3 .axis-tooltip-text-y { fill: #ffffff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx3 .tooltip-text { +#_sample_helper_static_id_prefix_3 .tooltip-text { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx3 .tooltip-title { +#_sample_helper_static_id_prefix_3 .tooltip-title { fill: #474747; font-weight: bold; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx3 .tooltip-label { +#_sample_helper_static_id_prefix_3 .tooltip-label { fill: #474747; font-weight: bold; font-style: normal;font-family: sans-serif; @@ -129,7 +129,7 @@ font-size: 13.0px; } - + @@ -175,7 +175,7 @@ font-size: 13.0px; - + @@ -205,13 +205,13 @@ font-size: 13.0px; - + - + @@ -475,6 +475,6 @@ font-size: 13.0px; - + \ No newline at end of file diff --git a/docs/images/quickstart_sample_dark.svg b/docs/images/quickstart_sample_dark.svg index d3e3767c5..c53ba0134 100644 --- a/docs/images/quickstart_sample_dark.svg +++ b/docs/images/quickstart_sample_dark.svg @@ -10,117 +10,117 @@ text { text-rendering: optimizeLegibility; } -#xXxprefixXx0 .plot-title { +#_sample_helper_static_id_prefix_0 .plot-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx3 .axis-tooltip-text-x { +#_sample_helper_static_id_prefix_3 .axis-tooltip-text-x { fill: #303030; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx3 .axis-tooltip-text-y { +#_sample_helper_static_id_prefix_3 .axis-tooltip-text-y { fill: #303030; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx3 .tooltip-text { +#_sample_helper_static_id_prefix_3 .tooltip-text { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx3 .tooltip-title { +#_sample_helper_static_id_prefix_3 .tooltip-title { fill: #bbbbbb; font-weight: bold; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx3 .tooltip-label { +#_sample_helper_static_id_prefix_3 .tooltip-label { fill: #bbbbbb; font-weight: bold; font-style: normal;font-family: sans-serif; @@ -129,7 +129,7 @@ font-size: 13.0px; } - + @@ -313,7 +313,7 @@ font-size: 13.0px; - + @@ -343,13 +343,13 @@ font-size: 13.0px; - + - + @@ -475,6 +475,6 @@ font-size: 13.0px; - + \ No newline at end of file diff --git a/docs/images/samples/area/area_fixed.svg b/docs/images/samples/area/area_fixed.svg index ea4d405ea..a992f29a1 100644 --- a/docs/images/samples/area/area_fixed.svg +++ b/docs/images/samples/area/area_fixed.svg @@ -10,117 +10,117 @@ text { text-rendering: optimizeLegibility; } -#xXxprefixXx0 .plot-title { +#_sample_helper_static_id_prefix_0 .plot-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx3 .axis-tooltip-text-x { +#_sample_helper_static_id_prefix_3 .axis-tooltip-text-x { fill: #ffffff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx3 .axis-tooltip-text-y { +#_sample_helper_static_id_prefix_3 .axis-tooltip-text-y { fill: #ffffff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx3 .tooltip-text { +#_sample_helper_static_id_prefix_3 .tooltip-text { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx3 .tooltip-title { +#_sample_helper_static_id_prefix_3 .tooltip-title { fill: #474747; font-weight: bold; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx3 .tooltip-label { +#_sample_helper_static_id_prefix_3 .tooltip-label { fill: #474747; font-weight: bold; font-style: normal;font-family: sans-serif; @@ -129,7 +129,7 @@ font-size: 13.0px; } - + @@ -179,7 +179,7 @@ font-size: 13.0px; - + @@ -201,13 +201,13 @@ font-size: 13.0px; - + - + @@ -395,6 +395,6 @@ font-size: 13.0px; - + \ No newline at end of file diff --git a/docs/images/samples/area/area_fixed_dark.svg b/docs/images/samples/area/area_fixed_dark.svg index f7e4a9756..0ff701238 100644 --- a/docs/images/samples/area/area_fixed_dark.svg +++ b/docs/images/samples/area/area_fixed_dark.svg @@ -10,117 +10,117 @@ text { text-rendering: optimizeLegibility; } -#xXxprefixXx0 .plot-title { +#_sample_helper_static_id_prefix_0 .plot-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx3 .axis-tooltip-text-x { +#_sample_helper_static_id_prefix_3 .axis-tooltip-text-x { fill: #303030; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx3 .axis-tooltip-text-y { +#_sample_helper_static_id_prefix_3 .axis-tooltip-text-y { fill: #303030; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx3 .tooltip-text { +#_sample_helper_static_id_prefix_3 .tooltip-text { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx3 .tooltip-title { +#_sample_helper_static_id_prefix_3 .tooltip-title { fill: #bbbbbb; font-weight: bold; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx3 .tooltip-label { +#_sample_helper_static_id_prefix_3 .tooltip-label { fill: #bbbbbb; font-weight: bold; font-style: normal;font-family: sans-serif; @@ -129,7 +129,7 @@ font-size: 13.0px; } - + @@ -335,7 +335,7 @@ font-size: 13.0px; - + @@ -357,13 +357,13 @@ font-size: 13.0px; - + - + @@ -395,6 +395,6 @@ font-size: 13.0px; - + \ No newline at end of file diff --git a/docs/images/samples/area/area_settings.svg b/docs/images/samples/area/area_settings.svg index a0de9d7a6..b47c79312 100644 --- a/docs/images/samples/area/area_settings.svg +++ b/docs/images/samples/area/area_settings.svg @@ -10,117 +10,117 @@ text { text-rendering: optimizeLegibility; } -#xXxprefixXx0 .plot-title { +#_sample_helper_static_id_prefix_0 .plot-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-x { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-x { fill: #ffffff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-y { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-y { fill: #ffffff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-text { +#_sample_helper_static_id_prefix_2 .tooltip-text { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-title { +#_sample_helper_static_id_prefix_2 .tooltip-title { fill: #474747; font-weight: bold; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-label { +#_sample_helper_static_id_prefix_2 .tooltip-label { fill: #474747; font-weight: bold; font-style: normal;font-family: sans-serif; @@ -129,7 +129,7 @@ font-size: 13.0px; } - + @@ -181,7 +181,7 @@ font-size: 13.0px; - + @@ -197,7 +197,7 @@ font-size: 13.0px; - + @@ -379,6 +379,6 @@ font-size: 13.0px; - + \ No newline at end of file diff --git a/docs/images/samples/area/area_settings_dark.svg b/docs/images/samples/area/area_settings_dark.svg index 6a451687a..42b7f56f7 100644 --- a/docs/images/samples/area/area_settings_dark.svg +++ b/docs/images/samples/area/area_settings_dark.svg @@ -10,117 +10,117 @@ text { text-rendering: optimizeLegibility; } -#xXxprefixXx0 .plot-title { +#_sample_helper_static_id_prefix_0 .plot-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-x { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-x { fill: #303030; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-y { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-y { fill: #303030; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-text { +#_sample_helper_static_id_prefix_2 .tooltip-text { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-title { +#_sample_helper_static_id_prefix_2 .tooltip-title { fill: #bbbbbb; font-weight: bold; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-label { +#_sample_helper_static_id_prefix_2 .tooltip-label { fill: #bbbbbb; font-weight: bold; font-style: normal;font-family: sans-serif; @@ -129,7 +129,7 @@ font-size: 13.0px; } - + @@ -336,7 +336,7 @@ font-size: 13.0px; - + @@ -352,7 +352,7 @@ font-size: 13.0px; - + @@ -379,6 +379,6 @@ font-size: 13.0px; - + \ No newline at end of file diff --git a/docs/images/samples/area/area_with_mark_line.svg b/docs/images/samples/area/area_with_mark_line.svg index 6e50ee93b..54ba8066a 100644 --- a/docs/images/samples/area/area_with_mark_line.svg +++ b/docs/images/samples/area/area_with_mark_line.svg @@ -10,117 +10,117 @@ text { text-rendering: optimizeLegibility; } -#xXxprefixXx0 .plot-title { +#_sample_helper_static_id_prefix_0 .plot-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx4 .axis-tooltip-text-x { +#_sample_helper_static_id_prefix_4 .axis-tooltip-text-x { fill: #ffffff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx4 .axis-tooltip-text-y { +#_sample_helper_static_id_prefix_4 .axis-tooltip-text-y { fill: #ffffff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx4 .tooltip-text { +#_sample_helper_static_id_prefix_4 .tooltip-text { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx4 .tooltip-title { +#_sample_helper_static_id_prefix_4 .tooltip-title { fill: #474747; font-weight: bold; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx4 .tooltip-label { +#_sample_helper_static_id_prefix_4 .tooltip-label { fill: #474747; font-weight: bold; font-style: normal;font-family: sans-serif; @@ -129,7 +129,7 @@ font-size: 13.0px; } - + @@ -179,7 +179,7 @@ font-size: 13.0px; - + @@ -211,19 +211,19 @@ font-size: 13.0px; - + - + - + @@ -444,6 +444,6 @@ font-size: 13.0px; - + \ No newline at end of file diff --git a/docs/images/samples/area/area_with_mark_line_dark.svg b/docs/images/samples/area/area_with_mark_line_dark.svg index 2ed4ce45e..529ed057b 100644 --- a/docs/images/samples/area/area_with_mark_line_dark.svg +++ b/docs/images/samples/area/area_with_mark_line_dark.svg @@ -10,117 +10,117 @@ text { text-rendering: optimizeLegibility; } -#xXxprefixXx0 .plot-title { +#_sample_helper_static_id_prefix_0 .plot-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx4 .axis-tooltip-text-x { +#_sample_helper_static_id_prefix_4 .axis-tooltip-text-x { fill: #303030; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx4 .axis-tooltip-text-y { +#_sample_helper_static_id_prefix_4 .axis-tooltip-text-y { fill: #303030; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx4 .tooltip-text { +#_sample_helper_static_id_prefix_4 .tooltip-text { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx4 .tooltip-title { +#_sample_helper_static_id_prefix_4 .tooltip-title { fill: #bbbbbb; font-weight: bold; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx4 .tooltip-label { +#_sample_helper_static_id_prefix_4 .tooltip-label { fill: #bbbbbb; font-weight: bold; font-style: normal;font-family: sans-serif; @@ -129,7 +129,7 @@ font-size: 13.0px; } - + @@ -335,7 +335,7 @@ font-size: 13.0px; - + @@ -367,19 +367,19 @@ font-size: 13.0px; - + - + - + @@ -444,6 +444,6 @@ font-size: 13.0px; - + \ No newline at end of file diff --git a/docs/images/samples/area/area_with_reversed_axis.svg b/docs/images/samples/area/area_with_reversed_axis.svg index adc15d8ee..4109776da 100644 --- a/docs/images/samples/area/area_with_reversed_axis.svg +++ b/docs/images/samples/area/area_with_reversed_axis.svg @@ -10,117 +10,117 @@ text { text-rendering: optimizeLegibility; } -#xXxprefixXx0 .plot-title { +#_sample_helper_static_id_prefix_0 .plot-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-x { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-x { fill: #ffffff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-y { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-y { fill: #ffffff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-text { +#_sample_helper_static_id_prefix_2 .tooltip-text { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-title { +#_sample_helper_static_id_prefix_2 .tooltip-title { fill: #474747; font-weight: bold; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-label { +#_sample_helper_static_id_prefix_2 .tooltip-label { fill: #474747; font-weight: bold; font-style: normal;font-family: sans-serif; @@ -129,7 +129,7 @@ font-size: 13.0px; } - + @@ -177,7 +177,7 @@ font-size: 13.0px; - + @@ -193,7 +193,7 @@ font-size: 13.0px; - + @@ -364,6 +364,6 @@ font-size: 13.0px; - + \ No newline at end of file diff --git a/docs/images/samples/area/area_with_reversed_axis_dark.svg b/docs/images/samples/area/area_with_reversed_axis_dark.svg index d3a410565..71addd40f 100644 --- a/docs/images/samples/area/area_with_reversed_axis_dark.svg +++ b/docs/images/samples/area/area_with_reversed_axis_dark.svg @@ -10,117 +10,117 @@ text { text-rendering: optimizeLegibility; } -#xXxprefixXx0 .plot-title { +#_sample_helper_static_id_prefix_0 .plot-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-x { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-x { fill: #303030; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-y { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-y { fill: #303030; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-text { +#_sample_helper_static_id_prefix_2 .tooltip-text { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-title { +#_sample_helper_static_id_prefix_2 .tooltip-title { fill: #bbbbbb; font-weight: bold; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-label { +#_sample_helper_static_id_prefix_2 .tooltip-label { fill: #bbbbbb; font-weight: bold; font-style: normal;font-family: sans-serif; @@ -129,7 +129,7 @@ font-size: 13.0px; } - + @@ -316,7 +316,7 @@ font-size: 13.0px; - + @@ -332,7 +332,7 @@ font-size: 13.0px; - + @@ -364,6 +364,6 @@ font-size: 13.0px; - + \ No newline at end of file diff --git a/docs/images/samples/area/density_plot.svg b/docs/images/samples/area/density_plot.svg index e3e4beb64..d16b91aa3 100644 --- a/docs/images/samples/area/density_plot.svg +++ b/docs/images/samples/area/density_plot.svg @@ -10,117 +10,117 @@ text { text-rendering: optimizeLegibility; } -#xXxprefixXx0 .plot-title { +#_sample_helper_static_id_prefix_0 .plot-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-x { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-x { fill: #ffffff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-y { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-y { fill: #ffffff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-text { +#_sample_helper_static_id_prefix_2 .tooltip-text { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-title { +#_sample_helper_static_id_prefix_2 .tooltip-title { fill: #474747; font-weight: bold; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-label { +#_sample_helper_static_id_prefix_2 .tooltip-label { fill: #474747; font-weight: bold; font-style: normal;font-family: sans-serif; @@ -129,7 +129,7 @@ font-size: 13.0px; } - + @@ -175,7 +175,7 @@ font-size: 13.0px; - + @@ -191,7 +191,7 @@ font-size: 13.0px; - + @@ -345,6 +345,6 @@ font-size: 13.0px; - + \ No newline at end of file diff --git a/docs/images/samples/area/density_plot_dark.svg b/docs/images/samples/area/density_plot_dark.svg index 9cddff9f7..f2fe1d43c 100644 --- a/docs/images/samples/area/density_plot_dark.svg +++ b/docs/images/samples/area/density_plot_dark.svg @@ -10,117 +10,117 @@ text { text-rendering: optimizeLegibility; } -#xXxprefixXx0 .plot-title { +#_sample_helper_static_id_prefix_0 .plot-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-x { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-x { fill: #303030; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-y { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-y { fill: #303030; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-text { +#_sample_helper_static_id_prefix_2 .tooltip-text { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-title { +#_sample_helper_static_id_prefix_2 .tooltip-title { fill: #bbbbbb; font-weight: bold; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-label { +#_sample_helper_static_id_prefix_2 .tooltip-label { fill: #bbbbbb; font-weight: bold; font-style: normal;font-family: sans-serif; @@ -129,7 +129,7 @@ font-size: 13.0px; } - + @@ -307,7 +307,7 @@ font-size: 13.0px; - + @@ -323,7 +323,7 @@ font-size: 13.0px; - + @@ -345,6 +345,6 @@ font-size: 13.0px; - + \ No newline at end of file diff --git a/docs/images/samples/area/functional_area_plot.svg b/docs/images/samples/area/functional_area_plot.svg index a6007e380..8a0ae7887 100644 --- a/docs/images/samples/area/functional_area_plot.svg +++ b/docs/images/samples/area/functional_area_plot.svg @@ -10,117 +10,117 @@ text { text-rendering: optimizeLegibility; } -#xXxprefixXx0 .plot-title { +#_sample_helper_static_id_prefix_0 .plot-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-x { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-x { fill: #ffffff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-y { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-y { fill: #ffffff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-text { +#_sample_helper_static_id_prefix_2 .tooltip-text { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-title { +#_sample_helper_static_id_prefix_2 .tooltip-title { fill: #474747; font-weight: bold; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-label { +#_sample_helper_static_id_prefix_2 .tooltip-label { fill: #474747; font-weight: bold; font-style: normal;font-family: sans-serif; @@ -129,7 +129,7 @@ font-size: 13.0px; } - + @@ -185,7 +185,7 @@ font-size: 13.0px; - + @@ -201,7 +201,7 @@ font-size: 13.0px; - + @@ -394,6 +394,6 @@ font-size: 13.0px; - + \ No newline at end of file diff --git a/docs/images/samples/area/functional_area_plot_dark.svg b/docs/images/samples/area/functional_area_plot_dark.svg index 66bcb1bdd..5e03f1549 100644 --- a/docs/images/samples/area/functional_area_plot_dark.svg +++ b/docs/images/samples/area/functional_area_plot_dark.svg @@ -10,117 +10,117 @@ text { text-rendering: optimizeLegibility; } -#xXxprefixXx0 .plot-title { +#_sample_helper_static_id_prefix_0 .plot-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-x { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-x { fill: #303030; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-y { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-y { fill: #303030; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-text { +#_sample_helper_static_id_prefix_2 .tooltip-text { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-title { +#_sample_helper_static_id_prefix_2 .tooltip-title { fill: #bbbbbb; font-weight: bold; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-label { +#_sample_helper_static_id_prefix_2 .tooltip-label { fill: #bbbbbb; font-weight: bold; font-style: normal;font-family: sans-serif; @@ -129,7 +129,7 @@ font-size: 13.0px; } - + @@ -356,7 +356,7 @@ font-size: 13.0px; - + @@ -372,7 +372,7 @@ font-size: 13.0px; - + @@ -394,6 +394,6 @@ font-size: 13.0px; - + \ No newline at end of file diff --git a/docs/images/samples/area/preview_area_with_mark_line.svg b/docs/images/samples/area/preview_area_with_mark_line.svg index c303baef5..07f1aa45b 100644 --- a/docs/images/samples/area/preview_area_with_mark_line.svg +++ b/docs/images/samples/area/preview_area_with_mark_line.svg @@ -10,117 +10,117 @@ text { text-rendering: optimizeLegibility; } -#xXxprefixXx0 .plot-title { +#_sample_helper_static_id_prefix_0 .plot-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx4 .axis-tooltip-text-x { +#_sample_helper_static_id_prefix_4 .axis-tooltip-text-x { fill: #ffffff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx4 .axis-tooltip-text-y { +#_sample_helper_static_id_prefix_4 .axis-tooltip-text-y { fill: #ffffff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx4 .tooltip-text { +#_sample_helper_static_id_prefix_4 .tooltip-text { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx4 .tooltip-title { +#_sample_helper_static_id_prefix_4 .tooltip-title { fill: #474747; font-weight: bold; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx4 .tooltip-label { +#_sample_helper_static_id_prefix_4 .tooltip-label { fill: #474747; font-weight: bold; font-style: normal;font-family: sans-serif; @@ -129,7 +129,7 @@ font-size: 13.0px; } - + @@ -179,7 +179,7 @@ font-size: 13.0px; - + @@ -211,19 +211,19 @@ font-size: 13.0px; - + - + - + @@ -444,6 +444,6 @@ font-size: 13.0px; - + \ No newline at end of file diff --git a/docs/images/samples/area/preview_area_with_mark_line_dark.svg b/docs/images/samples/area/preview_area_with_mark_line_dark.svg index 98bec4f4b..98d12a6bf 100644 --- a/docs/images/samples/area/preview_area_with_mark_line_dark.svg +++ b/docs/images/samples/area/preview_area_with_mark_line_dark.svg @@ -10,117 +10,117 @@ text { text-rendering: optimizeLegibility; } -#xXxprefixXx0 .plot-title { +#_sample_helper_static_id_prefix_0 .plot-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx4 .axis-tooltip-text-x { +#_sample_helper_static_id_prefix_4 .axis-tooltip-text-x { fill: #303030; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx4 .axis-tooltip-text-y { +#_sample_helper_static_id_prefix_4 .axis-tooltip-text-y { fill: #303030; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx4 .tooltip-text { +#_sample_helper_static_id_prefix_4 .tooltip-text { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx4 .tooltip-title { +#_sample_helper_static_id_prefix_4 .tooltip-title { fill: #bbbbbb; font-weight: bold; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx4 .tooltip-label { +#_sample_helper_static_id_prefix_4 .tooltip-label { fill: #bbbbbb; font-weight: bold; font-style: normal;font-family: sans-serif; @@ -129,7 +129,7 @@ font-size: 13.0px; } - + @@ -335,7 +335,7 @@ font-size: 13.0px; - + @@ -367,19 +367,19 @@ font-size: 13.0px; - + - + - + @@ -444,6 +444,6 @@ font-size: 13.0px; - + \ No newline at end of file diff --git a/docs/images/samples/area/several_areas.svg b/docs/images/samples/area/several_areas.svg index 7418bfaa1..0aaab9f2c 100644 --- a/docs/images/samples/area/several_areas.svg +++ b/docs/images/samples/area/several_areas.svg @@ -10,117 +10,117 @@ text { text-rendering: optimizeLegibility; } -#xXxprefixXx0 .plot-title { +#_sample_helper_static_id_prefix_0 .plot-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-x { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-x { fill: #ffffff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-y { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-y { fill: #ffffff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-text { +#_sample_helper_static_id_prefix_2 .tooltip-text { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-title { +#_sample_helper_static_id_prefix_2 .tooltip-title { fill: #474747; font-weight: bold; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-label { +#_sample_helper_static_id_prefix_2 .tooltip-label { fill: #474747; font-weight: bold; font-style: normal;font-family: sans-serif; @@ -129,7 +129,7 @@ font-size: 13.0px; } - + @@ -171,7 +171,7 @@ font-size: 13.0px; - + @@ -219,7 +219,7 @@ font-size: 13.0px; - + @@ -450,6 +450,6 @@ font-size: 13.0px; - + \ No newline at end of file diff --git a/docs/images/samples/area/several_areas_dark.svg b/docs/images/samples/area/several_areas_dark.svg index de241ea5b..f9ec336c6 100644 --- a/docs/images/samples/area/several_areas_dark.svg +++ b/docs/images/samples/area/several_areas_dark.svg @@ -10,117 +10,117 @@ text { text-rendering: optimizeLegibility; } -#xXxprefixXx0 .plot-title { +#_sample_helper_static_id_prefix_0 .plot-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-x { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-x { fill: #303030; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-y { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-y { fill: #303030; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-text { +#_sample_helper_static_id_prefix_2 .tooltip-text { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-title { +#_sample_helper_static_id_prefix_2 .tooltip-title { fill: #bbbbbb; font-weight: bold; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-label { +#_sample_helper_static_id_prefix_2 .tooltip-label { fill: #bbbbbb; font-weight: bold; font-style: normal;font-family: sans-serif; @@ -129,7 +129,7 @@ font-size: 13.0px; } - + @@ -287,7 +287,7 @@ font-size: 13.0px; - + @@ -335,7 +335,7 @@ font-size: 13.0px; - + @@ -450,6 +450,6 @@ font-size: 13.0px; - + \ No newline at end of file diff --git a/docs/images/samples/area/simple_area.svg b/docs/images/samples/area/simple_area.svg index 5f8c02b61..4117a9479 100644 --- a/docs/images/samples/area/simple_area.svg +++ b/docs/images/samples/area/simple_area.svg @@ -10,117 +10,117 @@ text { text-rendering: optimizeLegibility; } -#xXxprefixXx0 .plot-title { +#_sample_helper_static_id_prefix_0 .plot-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-x { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-x { fill: #ffffff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-y { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-y { fill: #ffffff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-text { +#_sample_helper_static_id_prefix_2 .tooltip-text { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-title { +#_sample_helper_static_id_prefix_2 .tooltip-title { fill: #474747; font-weight: bold; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-label { +#_sample_helper_static_id_prefix_2 .tooltip-label { fill: #474747; font-weight: bold; font-style: normal;font-family: sans-serif; @@ -129,7 +129,7 @@ font-size: 13.0px; } - + @@ -175,7 +175,7 @@ font-size: 13.0px; - + @@ -191,7 +191,7 @@ font-size: 13.0px; - + @@ -345,6 +345,6 @@ font-size: 13.0px; - + \ No newline at end of file diff --git a/docs/images/samples/area/simple_area_dark.svg b/docs/images/samples/area/simple_area_dark.svg index f5cbfbc89..774d7d576 100644 --- a/docs/images/samples/area/simple_area_dark.svg +++ b/docs/images/samples/area/simple_area_dark.svg @@ -10,117 +10,117 @@ text { text-rendering: optimizeLegibility; } -#xXxprefixXx0 .plot-title { +#_sample_helper_static_id_prefix_0 .plot-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-x { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-x { fill: #303030; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-y { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-y { fill: #303030; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-text { +#_sample_helper_static_id_prefix_2 .tooltip-text { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-title { +#_sample_helper_static_id_prefix_2 .tooltip-title { fill: #bbbbbb; font-weight: bold; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-label { +#_sample_helper_static_id_prefix_2 .tooltip-label { fill: #bbbbbb; font-weight: bold; font-style: normal;font-family: sans-serif; @@ -129,7 +129,7 @@ font-size: 13.0px; } - + @@ -307,7 +307,7 @@ font-size: 13.0px; - + @@ -323,7 +323,7 @@ font-size: 13.0px; - + @@ -345,6 +345,6 @@ font-size: 13.0px; - + \ No newline at end of file diff --git a/docs/images/samples/area/smoothed_area.svg b/docs/images/samples/area/smoothed_area.svg index 240bc64af..ba05bde29 100644 --- a/docs/images/samples/area/smoothed_area.svg +++ b/docs/images/samples/area/smoothed_area.svg @@ -10,117 +10,117 @@ text { text-rendering: optimizeLegibility; } -#xXxprefixXx0 .plot-title { +#_sample_helper_static_id_prefix_0 .plot-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-x { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-x { fill: #ffffff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-y { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-y { fill: #ffffff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-text { +#_sample_helper_static_id_prefix_2 .tooltip-text { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-title { +#_sample_helper_static_id_prefix_2 .tooltip-title { fill: #474747; font-weight: bold; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-label { +#_sample_helper_static_id_prefix_2 .tooltip-label { fill: #474747; font-weight: bold; font-style: normal;font-family: sans-serif; @@ -129,7 +129,7 @@ font-size: 13.0px; } - + @@ -171,7 +171,7 @@ font-size: 13.0px; - + @@ -187,7 +187,7 @@ font-size: 13.0px; - + @@ -327,6 +327,6 @@ font-size: 13.0px; - + \ No newline at end of file diff --git a/docs/images/samples/area/smoothed_area_dark.svg b/docs/images/samples/area/smoothed_area_dark.svg index 26a533ee6..e6bed79ee 100644 --- a/docs/images/samples/area/smoothed_area_dark.svg +++ b/docs/images/samples/area/smoothed_area_dark.svg @@ -10,117 +10,117 @@ text { text-rendering: optimizeLegibility; } -#xXxprefixXx0 .plot-title { +#_sample_helper_static_id_prefix_0 .plot-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-x { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-x { fill: #303030; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-y { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-y { fill: #303030; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-text { +#_sample_helper_static_id_prefix_2 .tooltip-text { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-title { +#_sample_helper_static_id_prefix_2 .tooltip-title { fill: #bbbbbb; font-weight: bold; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-label { +#_sample_helper_static_id_prefix_2 .tooltip-label { fill: #bbbbbb; font-weight: bold; font-style: normal;font-family: sans-serif; @@ -129,7 +129,7 @@ font-size: 13.0px; } - + @@ -289,7 +289,7 @@ font-size: 13.0px; - + @@ -305,7 +305,7 @@ font-size: 13.0px; - + @@ -327,6 +327,6 @@ font-size: 13.0px; - + \ No newline at end of file diff --git a/docs/images/samples/area/smoothed_area_with_points.svg b/docs/images/samples/area/smoothed_area_with_points.svg index 3ff69eb82..466dbbcb9 100644 --- a/docs/images/samples/area/smoothed_area_with_points.svg +++ b/docs/images/samples/area/smoothed_area_with_points.svg @@ -10,117 +10,117 @@ text { text-rendering: optimizeLegibility; } -#xXxprefixXx0 .plot-title { +#_sample_helper_static_id_prefix_0 .plot-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx3 .axis-tooltip-text-x { +#_sample_helper_static_id_prefix_3 .axis-tooltip-text-x { fill: #ffffff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx3 .axis-tooltip-text-y { +#_sample_helper_static_id_prefix_3 .axis-tooltip-text-y { fill: #ffffff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx3 .tooltip-text { +#_sample_helper_static_id_prefix_3 .tooltip-text { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx3 .tooltip-title { +#_sample_helper_static_id_prefix_3 .tooltip-title { fill: #474747; font-weight: bold; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx3 .tooltip-label { +#_sample_helper_static_id_prefix_3 .tooltip-label { fill: #474747; font-weight: bold; font-style: normal;font-family: sans-serif; @@ -129,7 +129,7 @@ font-size: 13.0px; } - + @@ -173,7 +173,7 @@ font-size: 13.0px; - + @@ -206,13 +206,13 @@ font-size: 13.0px; - + - + @@ -359,6 +359,6 @@ font-size: 13.0px; - + \ No newline at end of file diff --git a/docs/images/samples/area/smoothed_area_with_points_dark.svg b/docs/images/samples/area/smoothed_area_with_points_dark.svg index 91b4f9c84..43c418045 100644 --- a/docs/images/samples/area/smoothed_area_with_points_dark.svg +++ b/docs/images/samples/area/smoothed_area_with_points_dark.svg @@ -10,117 +10,117 @@ text { text-rendering: optimizeLegibility; } -#xXxprefixXx0 .plot-title { +#_sample_helper_static_id_prefix_0 .plot-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx3 .axis-tooltip-text-x { +#_sample_helper_static_id_prefix_3 .axis-tooltip-text-x { fill: #303030; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx3 .axis-tooltip-text-y { +#_sample_helper_static_id_prefix_3 .axis-tooltip-text-y { fill: #303030; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx3 .tooltip-text { +#_sample_helper_static_id_prefix_3 .tooltip-text { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx3 .tooltip-title { +#_sample_helper_static_id_prefix_3 .tooltip-title { fill: #bbbbbb; font-weight: bold; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx3 .tooltip-label { +#_sample_helper_static_id_prefix_3 .tooltip-label { fill: #bbbbbb; font-weight: bold; font-style: normal;font-family: sans-serif; @@ -129,7 +129,7 @@ font-size: 13.0px; } - + @@ -298,7 +298,7 @@ font-size: 13.0px; - + @@ -331,13 +331,13 @@ font-size: 13.0px; - + - + @@ -359,6 +359,6 @@ font-size: 13.0px; - + \ No newline at end of file diff --git a/docs/images/samples/bars/bar_gradient.svg b/docs/images/samples/bars/bar_gradient.svg index ece262165..85b924a54 100644 --- a/docs/images/samples/bars/bar_gradient.svg +++ b/docs/images/samples/bars/bar_gradient.svg @@ -10,117 +10,117 @@ text { text-rendering: optimizeLegibility; } -#xXxprefixXx0 .plot-title { +#_sample_helper_static_id_prefix_0 .plot-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-x { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-x { fill: #ffffff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-y { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-y { fill: #ffffff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-text { +#_sample_helper_static_id_prefix_2 .tooltip-text { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-title { +#_sample_helper_static_id_prefix_2 .tooltip-title { fill: #474747; font-weight: bold; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-label { +#_sample_helper_static_id_prefix_2 .tooltip-label { fill: #474747; font-weight: bold; font-style: normal;font-family: sans-serif; @@ -129,7 +129,7 @@ font-size: 13.0px; } - + @@ -171,7 +171,7 @@ font-size: 13.0px; - + @@ -193,7 +193,7 @@ font-size: 13.0px; - + @@ -450,6 +450,6 @@ font-size: 13.0px; - + \ No newline at end of file diff --git a/docs/images/samples/bars/bar_gradient_dark.svg b/docs/images/samples/bars/bar_gradient_dark.svg index 6a8146778..5e662468b 100644 --- a/docs/images/samples/bars/bar_gradient_dark.svg +++ b/docs/images/samples/bars/bar_gradient_dark.svg @@ -10,117 +10,117 @@ text { text-rendering: optimizeLegibility; } -#xXxprefixXx0 .plot-title { +#_sample_helper_static_id_prefix_0 .plot-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-x { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-x { fill: #303030; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-y { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-y { fill: #303030; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-text { +#_sample_helper_static_id_prefix_2 .tooltip-text { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-title { +#_sample_helper_static_id_prefix_2 .tooltip-title { fill: #bbbbbb; font-weight: bold; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-label { +#_sample_helper_static_id_prefix_2 .tooltip-label { fill: #bbbbbb; font-weight: bold; font-style: normal;font-family: sans-serif; @@ -129,7 +129,7 @@ font-size: 13.0px; } - + @@ -289,7 +289,7 @@ font-size: 13.0px; - + @@ -311,7 +311,7 @@ font-size: 13.0px; - + @@ -450,6 +450,6 @@ font-size: 13.0px; - + \ No newline at end of file diff --git a/docs/images/samples/bars/bar_settings.svg b/docs/images/samples/bars/bar_settings.svg index c1c3b9ae4..6374488a8 100644 --- a/docs/images/samples/bars/bar_settings.svg +++ b/docs/images/samples/bars/bar_settings.svg @@ -10,117 +10,117 @@ text { text-rendering: optimizeLegibility; } -#xXxprefixXx0 .plot-title { +#_sample_helper_static_id_prefix_0 .plot-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-x { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-x { fill: #ffffff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-y { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-y { fill: #ffffff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-text { +#_sample_helper_static_id_prefix_2 .tooltip-text { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-title { +#_sample_helper_static_id_prefix_2 .tooltip-title { fill: #474747; font-weight: bold; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-label { +#_sample_helper_static_id_prefix_2 .tooltip-label { fill: #474747; font-weight: bold; font-style: normal;font-family: sans-serif; @@ -129,7 +129,7 @@ font-size: 13.0px; } - + @@ -179,7 +179,7 @@ font-size: 13.0px; - + @@ -201,7 +201,7 @@ font-size: 13.0px; - + @@ -374,6 +374,6 @@ font-size: 13.0px; - + \ No newline at end of file diff --git a/docs/images/samples/bars/bar_settings_dark.svg b/docs/images/samples/bars/bar_settings_dark.svg index 5379207c5..9f4b35034 100644 --- a/docs/images/samples/bars/bar_settings_dark.svg +++ b/docs/images/samples/bars/bar_settings_dark.svg @@ -10,117 +10,117 @@ text { text-rendering: optimizeLegibility; } -#xXxprefixXx0 .plot-title { +#_sample_helper_static_id_prefix_0 .plot-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-x { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-x { fill: #303030; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-y { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-y { fill: #303030; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-text { +#_sample_helper_static_id_prefix_2 .tooltip-text { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-title { +#_sample_helper_static_id_prefix_2 .tooltip-title { fill: #bbbbbb; font-weight: bold; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-label { +#_sample_helper_static_id_prefix_2 .tooltip-label { fill: #bbbbbb; font-weight: bold; font-style: normal;font-family: sans-serif; @@ -129,7 +129,7 @@ font-size: 13.0px; } - + @@ -325,7 +325,7 @@ font-size: 13.0px; - + @@ -347,7 +347,7 @@ font-size: 13.0px; - + @@ -374,6 +374,6 @@ font-size: 13.0px; - + \ No newline at end of file diff --git a/docs/images/samples/bars/bar_with_reversed_axis.svg b/docs/images/samples/bars/bar_with_reversed_axis.svg index dd5582fca..046a8e2fd 100644 --- a/docs/images/samples/bars/bar_with_reversed_axis.svg +++ b/docs/images/samples/bars/bar_with_reversed_axis.svg @@ -10,117 +10,117 @@ text { text-rendering: optimizeLegibility; } -#xXxprefixXx0 .plot-title { +#_sample_helper_static_id_prefix_0 .plot-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-x { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-x { fill: #ffffff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-y { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-y { fill: #ffffff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-text { +#_sample_helper_static_id_prefix_2 .tooltip-text { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-title { +#_sample_helper_static_id_prefix_2 .tooltip-title { fill: #474747; font-weight: bold; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-label { +#_sample_helper_static_id_prefix_2 .tooltip-label { fill: #474747; font-weight: bold; font-style: normal;font-family: sans-serif; @@ -129,7 +129,7 @@ font-size: 13.0px; } - + @@ -169,7 +169,7 @@ font-size: 13.0px; - + @@ -187,7 +187,7 @@ font-size: 13.0px; - + @@ -316,6 +316,6 @@ font-size: 13.0px; - + \ No newline at end of file diff --git a/docs/images/samples/bars/bar_with_reversed_axis_dark.svg b/docs/images/samples/bars/bar_with_reversed_axis_dark.svg index 219611184..901573730 100644 --- a/docs/images/samples/bars/bar_with_reversed_axis_dark.svg +++ b/docs/images/samples/bars/bar_with_reversed_axis_dark.svg @@ -10,117 +10,117 @@ text { text-rendering: optimizeLegibility; } -#xXxprefixXx0 .plot-title { +#_sample_helper_static_id_prefix_0 .plot-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-x { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-x { fill: #303030; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-y { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-y { fill: #303030; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-text { +#_sample_helper_static_id_prefix_2 .tooltip-text { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-title { +#_sample_helper_static_id_prefix_2 .tooltip-title { fill: #bbbbbb; font-weight: bold; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-label { +#_sample_helper_static_id_prefix_2 .tooltip-label { fill: #bbbbbb; font-weight: bold; font-style: normal;font-family: sans-serif; @@ -129,7 +129,7 @@ font-size: 13.0px; } - + @@ -276,7 +276,7 @@ font-size: 13.0px; - + @@ -294,7 +294,7 @@ font-size: 13.0px; - + @@ -316,6 +316,6 @@ font-size: 13.0px; - + \ No newline at end of file diff --git a/docs/images/samples/bars/fixed_bar.svg b/docs/images/samples/bars/fixed_bar.svg index d507eb8b3..9451cb77a 100644 --- a/docs/images/samples/bars/fixed_bar.svg +++ b/docs/images/samples/bars/fixed_bar.svg @@ -10,117 +10,117 @@ text { text-rendering: optimizeLegibility; } -#xXxprefixXx0 .plot-title { +#_sample_helper_static_id_prefix_0 .plot-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx3 .axis-tooltip-text-x { +#_sample_helper_static_id_prefix_3 .axis-tooltip-text-x { fill: #ffffff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx3 .axis-tooltip-text-y { +#_sample_helper_static_id_prefix_3 .axis-tooltip-text-y { fill: #ffffff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx3 .tooltip-text { +#_sample_helper_static_id_prefix_3 .tooltip-text { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx3 .tooltip-title { +#_sample_helper_static_id_prefix_3 .tooltip-title { fill: #474747; font-weight: bold; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx3 .tooltip-label { +#_sample_helper_static_id_prefix_3 .tooltip-label { fill: #474747; font-weight: bold; font-style: normal;font-family: sans-serif; @@ -129,7 +129,7 @@ font-size: 13.0px; } - + @@ -179,7 +179,7 @@ font-size: 13.0px; - + @@ -217,13 +217,13 @@ font-size: 13.0px; - + - + @@ -391,6 +391,6 @@ font-size: 13.0px; - + \ No newline at end of file diff --git a/docs/images/samples/bars/fixed_bar_dark.svg b/docs/images/samples/bars/fixed_bar_dark.svg index e78243e2e..d1da48d9d 100644 --- a/docs/images/samples/bars/fixed_bar_dark.svg +++ b/docs/images/samples/bars/fixed_bar_dark.svg @@ -10,117 +10,117 @@ text { text-rendering: optimizeLegibility; } -#xXxprefixXx0 .plot-title { +#_sample_helper_static_id_prefix_0 .plot-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx3 .axis-tooltip-text-x { +#_sample_helper_static_id_prefix_3 .axis-tooltip-text-x { fill: #303030; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx3 .axis-tooltip-text-y { +#_sample_helper_static_id_prefix_3 .axis-tooltip-text-y { fill: #303030; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx3 .tooltip-text { +#_sample_helper_static_id_prefix_3 .tooltip-text { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx3 .tooltip-title { +#_sample_helper_static_id_prefix_3 .tooltip-title { fill: #bbbbbb; font-weight: bold; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx3 .tooltip-label { +#_sample_helper_static_id_prefix_3 .tooltip-label { fill: #bbbbbb; font-weight: bold; font-style: normal;font-family: sans-serif; @@ -129,7 +129,7 @@ font-size: 13.0px; } - + @@ -325,7 +325,7 @@ font-size: 13.0px; - + @@ -363,13 +363,13 @@ font-size: 13.0px; - + - + @@ -391,6 +391,6 @@ font-size: 13.0px; - + \ No newline at end of file diff --git a/docs/images/samples/bars/functional_bars_plot.svg b/docs/images/samples/bars/functional_bars_plot.svg index 7d35fe38a..45074d3e1 100644 --- a/docs/images/samples/bars/functional_bars_plot.svg +++ b/docs/images/samples/bars/functional_bars_plot.svg @@ -10,117 +10,117 @@ text { text-rendering: optimizeLegibility; } -#xXxprefixXx0 .plot-title { +#_sample_helper_static_id_prefix_0 .plot-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-x { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-x { fill: #ffffff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-y { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-y { fill: #ffffff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-text { +#_sample_helper_static_id_prefix_2 .tooltip-text { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-title { +#_sample_helper_static_id_prefix_2 .tooltip-title { fill: #474747; font-weight: bold; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-label { +#_sample_helper_static_id_prefix_2 .tooltip-label { fill: #474747; font-weight: bold; font-style: normal;font-family: sans-serif; @@ -129,7 +129,7 @@ font-size: 13.0px; } - + @@ -187,7 +187,7 @@ font-size: 13.0px; - + @@ -517,7 +517,7 @@ font-size: 13.0px; - + @@ -721,6 +721,6 @@ font-size: 13.0px; - + \ No newline at end of file diff --git a/docs/images/samples/bars/functional_bars_plot_dark.svg b/docs/images/samples/bars/functional_bars_plot_dark.svg index 091a123d6..dc707d64c 100644 --- a/docs/images/samples/bars/functional_bars_plot_dark.svg +++ b/docs/images/samples/bars/functional_bars_plot_dark.svg @@ -10,117 +10,117 @@ text { text-rendering: optimizeLegibility; } -#xXxprefixXx0 .plot-title { +#_sample_helper_static_id_prefix_0 .plot-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-x { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-x { fill: #303030; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-y { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-y { fill: #303030; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-text { +#_sample_helper_static_id_prefix_2 .tooltip-text { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-title { +#_sample_helper_static_id_prefix_2 .tooltip-title { fill: #bbbbbb; font-weight: bold; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-label { +#_sample_helper_static_id_prefix_2 .tooltip-label { fill: #bbbbbb; font-weight: bold; font-style: normal;font-family: sans-serif; @@ -129,7 +129,7 @@ font-size: 13.0px; } - + @@ -369,7 +369,7 @@ font-size: 13.0px; - + @@ -699,7 +699,7 @@ font-size: 13.0px; - + @@ -721,6 +721,6 @@ font-size: 13.0px; - + \ No newline at end of file diff --git a/docs/images/samples/bars/grouped_bars.svg b/docs/images/samples/bars/grouped_bars.svg index 56601d71b..12f90db0c 100644 --- a/docs/images/samples/bars/grouped_bars.svg +++ b/docs/images/samples/bars/grouped_bars.svg @@ -10,117 +10,117 @@ text { text-rendering: optimizeLegibility; } -#xXxprefixXx0 .plot-title { +#_sample_helper_static_id_prefix_0 .plot-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-x { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-x { fill: #ffffff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-y { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-y { fill: #ffffff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-text { +#_sample_helper_static_id_prefix_2 .tooltip-text { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-title { +#_sample_helper_static_id_prefix_2 .tooltip-title { fill: #474747; font-weight: bold; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-label { +#_sample_helper_static_id_prefix_2 .tooltip-label { fill: #474747; font-weight: bold; font-style: normal;font-family: sans-serif; @@ -129,7 +129,7 @@ font-size: 13.0px; } - + @@ -175,7 +175,7 @@ font-size: 13.0px; - + @@ -225,7 +225,7 @@ font-size: 13.0px; - + @@ -442,6 +442,6 @@ font-size: 13.0px; - + \ No newline at end of file diff --git a/docs/images/samples/bars/grouped_bars_dark.svg b/docs/images/samples/bars/grouped_bars_dark.svg index 4d4937f63..6e82bb7cf 100644 --- a/docs/images/samples/bars/grouped_bars_dark.svg +++ b/docs/images/samples/bars/grouped_bars_dark.svg @@ -10,117 +10,117 @@ text { text-rendering: optimizeLegibility; } -#xXxprefixXx0 .plot-title { +#_sample_helper_static_id_prefix_0 .plot-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-x { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-x { fill: #303030; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-y { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-y { fill: #303030; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-text { +#_sample_helper_static_id_prefix_2 .tooltip-text { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-title { +#_sample_helper_static_id_prefix_2 .tooltip-title { fill: #bbbbbb; font-weight: bold; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-label { +#_sample_helper_static_id_prefix_2 .tooltip-label { fill: #bbbbbb; font-weight: bold; font-style: normal;font-family: sans-serif; @@ -129,7 +129,7 @@ font-size: 13.0px; } - + @@ -307,7 +307,7 @@ font-size: 13.0px; - + @@ -357,7 +357,7 @@ font-size: 13.0px; - + @@ -442,6 +442,6 @@ font-size: 13.0px; - + \ No newline at end of file diff --git a/docs/images/samples/bars/histogram_2.svg b/docs/images/samples/bars/histogram_2.svg index 9cd74349b..f38b1d50d 100644 --- a/docs/images/samples/bars/histogram_2.svg +++ b/docs/images/samples/bars/histogram_2.svg @@ -10,117 +10,117 @@ text { text-rendering: optimizeLegibility; } -#xXxprefixXx0 .plot-title { +#_sample_helper_static_id_prefix_0 .plot-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-x { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-x { fill: #ffffff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-y { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-y { fill: #ffffff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-text { +#_sample_helper_static_id_prefix_2 .tooltip-text { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-title { +#_sample_helper_static_id_prefix_2 .tooltip-title { fill: #474747; font-weight: bold; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-label { +#_sample_helper_static_id_prefix_2 .tooltip-label { fill: #474747; font-weight: bold; font-style: normal;font-family: sans-serif; @@ -129,7 +129,7 @@ font-size: 13.0px; } - + @@ -173,7 +173,7 @@ font-size: 13.0px; - + @@ -221,7 +221,7 @@ font-size: 13.0px; - + @@ -368,6 +368,6 @@ font-size: 13.0px; - + \ No newline at end of file diff --git a/docs/images/samples/bars/histogram_2_dark.svg b/docs/images/samples/bars/histogram_2_dark.svg index 12812ca93..7b48b6340 100644 --- a/docs/images/samples/bars/histogram_2_dark.svg +++ b/docs/images/samples/bars/histogram_2_dark.svg @@ -10,117 +10,117 @@ text { text-rendering: optimizeLegibility; } -#xXxprefixXx0 .plot-title { +#_sample_helper_static_id_prefix_0 .plot-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-x { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-x { fill: #303030; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-y { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-y { fill: #303030; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-text { +#_sample_helper_static_id_prefix_2 .tooltip-text { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-title { +#_sample_helper_static_id_prefix_2 .tooltip-title { fill: #bbbbbb; font-weight: bold; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-label { +#_sample_helper_static_id_prefix_2 .tooltip-label { fill: #bbbbbb; font-weight: bold; font-style: normal;font-family: sans-serif; @@ -129,7 +129,7 @@ font-size: 13.0px; } - + @@ -298,7 +298,7 @@ font-size: 13.0px; - + @@ -346,7 +346,7 @@ font-size: 13.0px; - + @@ -368,6 +368,6 @@ font-size: 13.0px; - + \ No newline at end of file diff --git a/docs/images/samples/bars/horizontal_bars.svg b/docs/images/samples/bars/horizontal_bars.svg index aa6d3c128..db96f57d4 100644 --- a/docs/images/samples/bars/horizontal_bars.svg +++ b/docs/images/samples/bars/horizontal_bars.svg @@ -10,117 +10,117 @@ text { text-rendering: optimizeLegibility; } -#xXxprefixXx0 .plot-title { +#_sample_helper_static_id_prefix_0 .plot-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-x { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-x { fill: #ffffff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-y { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-y { fill: #ffffff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-text { +#_sample_helper_static_id_prefix_2 .tooltip-text { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-title { +#_sample_helper_static_id_prefix_2 .tooltip-title { fill: #474747; font-weight: bold; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-label { +#_sample_helper_static_id_prefix_2 .tooltip-label { fill: #474747; font-weight: bold; font-style: normal;font-family: sans-serif; @@ -129,7 +129,7 @@ font-size: 13.0px; } - + @@ -167,7 +167,7 @@ font-size: 13.0px; - + @@ -189,7 +189,7 @@ font-size: 13.0px; - + @@ -434,6 +434,6 @@ font-size: 13.0px; - + \ No newline at end of file diff --git a/docs/images/samples/bars/horizontal_bars_dark.svg b/docs/images/samples/bars/horizontal_bars_dark.svg index 448c51c74..958827ff8 100644 --- a/docs/images/samples/bars/horizontal_bars_dark.svg +++ b/docs/images/samples/bars/horizontal_bars_dark.svg @@ -10,117 +10,117 @@ text { text-rendering: optimizeLegibility; } -#xXxprefixXx0 .plot-title { +#_sample_helper_static_id_prefix_0 .plot-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-x { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-x { fill: #303030; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-y { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-y { fill: #303030; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-text { +#_sample_helper_static_id_prefix_2 .tooltip-text { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-title { +#_sample_helper_static_id_prefix_2 .tooltip-title { fill: #bbbbbb; font-weight: bold; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-label { +#_sample_helper_static_id_prefix_2 .tooltip-label { fill: #bbbbbb; font-weight: bold; font-style: normal;font-family: sans-serif; @@ -129,7 +129,7 @@ font-size: 13.0px; } - + @@ -267,7 +267,7 @@ font-size: 13.0px; - + @@ -289,7 +289,7 @@ font-size: 13.0px; - + @@ -434,6 +434,6 @@ font-size: 13.0px; - + \ No newline at end of file diff --git a/docs/images/samples/bars/simple_bar_plot.svg b/docs/images/samples/bars/simple_bar_plot.svg index 6d83d7be4..78c916ef1 100644 --- a/docs/images/samples/bars/simple_bar_plot.svg +++ b/docs/images/samples/bars/simple_bar_plot.svg @@ -10,117 +10,117 @@ text { text-rendering: optimizeLegibility; } -#xXxprefixXx0 .plot-title { +#_sample_helper_static_id_prefix_0 .plot-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-x { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-x { fill: #ffffff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-y { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-y { fill: #ffffff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-text { +#_sample_helper_static_id_prefix_2 .tooltip-text { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-title { +#_sample_helper_static_id_prefix_2 .tooltip-title { fill: #474747; font-weight: bold; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-label { +#_sample_helper_static_id_prefix_2 .tooltip-label { fill: #474747; font-weight: bold; font-style: normal;font-family: sans-serif; @@ -129,7 +129,7 @@ font-size: 13.0px; } - + @@ -167,7 +167,7 @@ font-size: 13.0px; - + @@ -185,7 +185,7 @@ font-size: 13.0px; - + @@ -312,6 +312,6 @@ font-size: 13.0px; - + \ No newline at end of file diff --git a/docs/images/samples/bars/simple_bar_plot_dark.svg b/docs/images/samples/bars/simple_bar_plot_dark.svg index 177e76d22..70f637d7f 100644 --- a/docs/images/samples/bars/simple_bar_plot_dark.svg +++ b/docs/images/samples/bars/simple_bar_plot_dark.svg @@ -10,117 +10,117 @@ text { text-rendering: optimizeLegibility; } -#xXxprefixXx0 .plot-title { +#_sample_helper_static_id_prefix_0 .plot-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-x { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-x { fill: #303030; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-y { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-y { fill: #303030; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-text { +#_sample_helper_static_id_prefix_2 .tooltip-text { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-title { +#_sample_helper_static_id_prefix_2 .tooltip-title { fill: #bbbbbb; font-weight: bold; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-label { +#_sample_helper_static_id_prefix_2 .tooltip-label { fill: #bbbbbb; font-weight: bold; font-style: normal;font-family: sans-serif; @@ -129,7 +129,7 @@ font-size: 13.0px; } - + @@ -267,7 +267,7 @@ font-size: 13.0px; - + @@ -285,7 +285,7 @@ font-size: 13.0px; - + @@ -312,6 +312,6 @@ font-size: 13.0px; - + \ No newline at end of file diff --git a/docs/images/samples/bars/stacked_bars.svg b/docs/images/samples/bars/stacked_bars.svg index 849f032ef..1dbba5a4b 100644 --- a/docs/images/samples/bars/stacked_bars.svg +++ b/docs/images/samples/bars/stacked_bars.svg @@ -10,117 +10,117 @@ text { text-rendering: optimizeLegibility; } -#xXxprefixXx0 .plot-title { +#_sample_helper_static_id_prefix_0 .plot-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-x { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-x { fill: #ffffff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-y { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-y { fill: #ffffff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-text { +#_sample_helper_static_id_prefix_2 .tooltip-text { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-title { +#_sample_helper_static_id_prefix_2 .tooltip-title { fill: #474747; font-weight: bold; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-label { +#_sample_helper_static_id_prefix_2 .tooltip-label { fill: #474747; font-weight: bold; font-style: normal;font-family: sans-serif; @@ -129,7 +129,7 @@ font-size: 13.0px; } - + @@ -179,7 +179,7 @@ font-size: 13.0px; - + @@ -229,7 +229,7 @@ font-size: 13.0px; - + @@ -460,6 +460,6 @@ font-size: 13.0px; - + \ No newline at end of file diff --git a/docs/images/samples/bars/stacked_bars_dark.svg b/docs/images/samples/bars/stacked_bars_dark.svg index 1d5b39e0c..f28d9ea7e 100644 --- a/docs/images/samples/bars/stacked_bars_dark.svg +++ b/docs/images/samples/bars/stacked_bars_dark.svg @@ -10,117 +10,117 @@ text { text-rendering: optimizeLegibility; } -#xXxprefixXx0 .plot-title { +#_sample_helper_static_id_prefix_0 .plot-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-x { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-x { fill: #303030; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-y { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-y { fill: #303030; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-text { +#_sample_helper_static_id_prefix_2 .tooltip-text { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-title { +#_sample_helper_static_id_prefix_2 .tooltip-title { fill: #bbbbbb; font-weight: bold; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-label { +#_sample_helper_static_id_prefix_2 .tooltip-label { fill: #bbbbbb; font-weight: bold; font-style: normal;font-family: sans-serif; @@ -129,7 +129,7 @@ font-size: 13.0px; } - + @@ -325,7 +325,7 @@ font-size: 13.0px; - + @@ -375,7 +375,7 @@ font-size: 13.0px; - + @@ -460,6 +460,6 @@ font-size: 13.0px; - + \ No newline at end of file diff --git a/docs/images/samples/boxplot/boxplot_categories.svg b/docs/images/samples/boxplot/boxplot_categories.svg index 4427cd764..8c0edec3a 100644 --- a/docs/images/samples/boxplot/boxplot_categories.svg +++ b/docs/images/samples/boxplot/boxplot_categories.svg @@ -10,117 +10,117 @@ text { text-rendering: optimizeLegibility; } -#xXxprefixXx0 .plot-title { +#_sample_helper_static_id_prefix_0 .plot-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx3 .axis-tooltip-text-x { +#_sample_helper_static_id_prefix_3 .axis-tooltip-text-x { fill: #ffffff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx3 .axis-tooltip-text-y { +#_sample_helper_static_id_prefix_3 .axis-tooltip-text-y { fill: #ffffff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx3 .tooltip-text { +#_sample_helper_static_id_prefix_3 .tooltip-text { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx3 .tooltip-title { +#_sample_helper_static_id_prefix_3 .tooltip-title { fill: #474747; font-weight: bold; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx3 .tooltip-label { +#_sample_helper_static_id_prefix_3 .tooltip-label { fill: #474747; font-weight: bold; font-style: normal;font-family: sans-serif; @@ -129,7 +129,7 @@ font-size: 13.0px; } - + @@ -185,7 +185,7 @@ font-size: 13.0px; - + @@ -559,13 +559,13 @@ font-size: 13.0px; - + - + @@ -836,6 +836,6 @@ font-size: 13.0px; - + \ No newline at end of file diff --git a/docs/images/samples/boxplot/boxplot_categories_dark.svg b/docs/images/samples/boxplot/boxplot_categories_dark.svg index 689547747..28bf7ad29 100644 --- a/docs/images/samples/boxplot/boxplot_categories_dark.svg +++ b/docs/images/samples/boxplot/boxplot_categories_dark.svg @@ -10,117 +10,117 @@ text { text-rendering: optimizeLegibility; } -#xXxprefixXx0 .plot-title { +#_sample_helper_static_id_prefix_0 .plot-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx3 .axis-tooltip-text-x { +#_sample_helper_static_id_prefix_3 .axis-tooltip-text-x { fill: #303030; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx3 .axis-tooltip-text-y { +#_sample_helper_static_id_prefix_3 .axis-tooltip-text-y { fill: #303030; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx3 .tooltip-text { +#_sample_helper_static_id_prefix_3 .tooltip-text { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx3 .tooltip-title { +#_sample_helper_static_id_prefix_3 .tooltip-title { fill: #bbbbbb; font-weight: bold; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx3 .tooltip-label { +#_sample_helper_static_id_prefix_3 .tooltip-label { fill: #bbbbbb; font-weight: bold; font-style: normal;font-family: sans-serif; @@ -129,7 +129,7 @@ font-size: 13.0px; } - + @@ -358,7 +358,7 @@ font-size: 13.0px; - + @@ -732,13 +732,13 @@ font-size: 13.0px; - + - + @@ -836,6 +836,6 @@ font-size: 13.0px; - + \ No newline at end of file diff --git a/docs/images/samples/boxplot/boxplot_expr.svg b/docs/images/samples/boxplot/boxplot_expr.svg index d2ccc045a..57fe5577f 100644 --- a/docs/images/samples/boxplot/boxplot_expr.svg +++ b/docs/images/samples/boxplot/boxplot_expr.svg @@ -10,117 +10,117 @@ text { text-rendering: optimizeLegibility; } -#xXxprefixXx0 .plot-title { +#_sample_helper_static_id_prefix_0 .plot-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx3 .axis-tooltip-text-x { +#_sample_helper_static_id_prefix_3 .axis-tooltip-text-x { fill: #ffffff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx3 .axis-tooltip-text-y { +#_sample_helper_static_id_prefix_3 .axis-tooltip-text-y { fill: #ffffff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx3 .tooltip-text { +#_sample_helper_static_id_prefix_3 .tooltip-text { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx3 .tooltip-title { +#_sample_helper_static_id_prefix_3 .tooltip-title { fill: #474747; font-weight: bold; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx3 .tooltip-label { +#_sample_helper_static_id_prefix_3 .tooltip-label { fill: #474747; font-weight: bold; font-style: normal;font-family: sans-serif; @@ -129,7 +129,7 @@ font-size: 13.0px; } - + @@ -173,7 +173,7 @@ font-size: 13.0px; - + @@ -253,13 +253,13 @@ font-size: 13.0px; - + - + @@ -402,6 +402,6 @@ font-size: 13.0px; - + \ No newline at end of file diff --git a/docs/images/samples/boxplot/boxplot_expr_dark.svg b/docs/images/samples/boxplot/boxplot_expr_dark.svg index 636b01fc6..19e56cede 100644 --- a/docs/images/samples/boxplot/boxplot_expr_dark.svg +++ b/docs/images/samples/boxplot/boxplot_expr_dark.svg @@ -10,117 +10,117 @@ text { text-rendering: optimizeLegibility; } -#xXxprefixXx0 .plot-title { +#_sample_helper_static_id_prefix_0 .plot-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx3 .axis-tooltip-text-x { +#_sample_helper_static_id_prefix_3 .axis-tooltip-text-x { fill: #303030; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx3 .axis-tooltip-text-y { +#_sample_helper_static_id_prefix_3 .axis-tooltip-text-y { fill: #303030; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx3 .tooltip-text { +#_sample_helper_static_id_prefix_3 .tooltip-text { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx3 .tooltip-title { +#_sample_helper_static_id_prefix_3 .tooltip-title { fill: #bbbbbb; font-weight: bold; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx3 .tooltip-label { +#_sample_helper_static_id_prefix_3 .tooltip-label { fill: #bbbbbb; font-weight: bold; font-style: normal;font-family: sans-serif; @@ -129,7 +129,7 @@ font-size: 13.0px; } - + @@ -294,7 +294,7 @@ font-size: 13.0px; - + @@ -374,13 +374,13 @@ font-size: 13.0px; - + - + @@ -402,6 +402,6 @@ font-size: 13.0px; - + \ No newline at end of file diff --git a/docs/images/samples/boxplot/boxplot_life_exp.svg b/docs/images/samples/boxplot/boxplot_life_exp.svg index 31fbb649a..ae59bd665 100644 --- a/docs/images/samples/boxplot/boxplot_life_exp.svg +++ b/docs/images/samples/boxplot/boxplot_life_exp.svg @@ -10,117 +10,117 @@ text { text-rendering: optimizeLegibility; } -#xXxprefixXx0 .plot-title { +#_sample_helper_static_id_prefix_0 .plot-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx3 .axis-tooltip-text-y { +#_sample_helper_static_id_prefix_3 .axis-tooltip-text-y { fill: #ffffff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx3 .axis-tooltip-text-x { +#_sample_helper_static_id_prefix_3 .axis-tooltip-text-x { fill: #ffffff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx3 .tooltip-text { +#_sample_helper_static_id_prefix_3 .tooltip-text { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx3 .tooltip-title { +#_sample_helper_static_id_prefix_3 .tooltip-title { fill: #474747; font-weight: bold; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx3 .tooltip-label { +#_sample_helper_static_id_prefix_3 .tooltip-label { fill: #474747; font-weight: bold; font-style: normal;font-family: sans-serif; @@ -129,7 +129,7 @@ font-size: 13.0px; } - + @@ -169,7 +169,7 @@ font-size: 13.0px; - + @@ -271,13 +271,13 @@ font-size: 13.0px; - + - + @@ -410,6 +410,6 @@ font-size: 13.0px; - + \ No newline at end of file diff --git a/docs/images/samples/boxplot/boxplot_life_exp_dark.svg b/docs/images/samples/boxplot/boxplot_life_exp_dark.svg index fd69c784c..b5be5d634 100644 --- a/docs/images/samples/boxplot/boxplot_life_exp_dark.svg +++ b/docs/images/samples/boxplot/boxplot_life_exp_dark.svg @@ -10,117 +10,117 @@ text { text-rendering: optimizeLegibility; } -#xXxprefixXx0 .plot-title { +#_sample_helper_static_id_prefix_0 .plot-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx3 .axis-tooltip-text-y { +#_sample_helper_static_id_prefix_3 .axis-tooltip-text-y { fill: #303030; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx3 .axis-tooltip-text-x { +#_sample_helper_static_id_prefix_3 .axis-tooltip-text-x { fill: #303030; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx3 .tooltip-text { +#_sample_helper_static_id_prefix_3 .tooltip-text { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx3 .tooltip-title { +#_sample_helper_static_id_prefix_3 .tooltip-title { fill: #bbbbbb; font-weight: bold; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx3 .tooltip-label { +#_sample_helper_static_id_prefix_3 .tooltip-label { fill: #bbbbbb; font-weight: bold; font-style: normal;font-family: sans-serif; @@ -129,7 +129,7 @@ font-size: 13.0px; } - + @@ -280,7 +280,7 @@ font-size: 13.0px; - + @@ -382,13 +382,13 @@ font-size: 13.0px; - + - + @@ -410,6 +410,6 @@ font-size: 13.0px; - + \ No newline at end of file diff --git a/docs/images/samples/candlestick/candlestick_settings_dsl.svg b/docs/images/samples/candlestick/candlestick_settings_dsl.svg index 63cbe75a7..29e0dc426 100644 --- a/docs/images/samples/candlestick/candlestick_settings_dsl.svg +++ b/docs/images/samples/candlestick/candlestick_settings_dsl.svg @@ -10,117 +10,117 @@ text { text-rendering: optimizeLegibility; } -#xXxprefixXx0 .plot-title { +#_sample_helper_static_id_prefix_0 .plot-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-x { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-x { fill: #ffffff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-y { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-y { fill: #ffffff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-text { +#_sample_helper_static_id_prefix_2 .tooltip-text { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-title { +#_sample_helper_static_id_prefix_2 .tooltip-title { fill: #474747; font-weight: bold; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-label { +#_sample_helper_static_id_prefix_2 .tooltip-label { fill: #474747; font-weight: bold; font-style: normal;font-family: sans-serif; @@ -129,7 +129,7 @@ font-size: 13.0px; } - + @@ -185,7 +185,7 @@ font-size: 13.0px; - + @@ -293,7 +293,7 @@ font-size: 13.0px; - + @@ -488,6 +488,6 @@ font-size: 13.0px; - + \ No newline at end of file diff --git a/docs/images/samples/candlestick/candlestick_settings_dsl_dark.svg b/docs/images/samples/candlestick/candlestick_settings_dsl_dark.svg index 2886ac6b8..737f97c4d 100644 --- a/docs/images/samples/candlestick/candlestick_settings_dsl_dark.svg +++ b/docs/images/samples/candlestick/candlestick_settings_dsl_dark.svg @@ -10,117 +10,117 @@ text { text-rendering: optimizeLegibility; } -#xXxprefixXx0 .plot-title { +#_sample_helper_static_id_prefix_0 .plot-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-x { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-x { fill: #303030; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-y { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-y { fill: #303030; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-text { +#_sample_helper_static_id_prefix_2 .tooltip-text { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-title { +#_sample_helper_static_id_prefix_2 .tooltip-title { fill: #bbbbbb; font-weight: bold; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-label { +#_sample_helper_static_id_prefix_2 .tooltip-label { fill: #bbbbbb; font-weight: bold; font-style: normal;font-family: sans-serif; @@ -129,7 +129,7 @@ font-size: 13.0px; } - + @@ -358,7 +358,7 @@ font-size: 13.0px; - + @@ -466,7 +466,7 @@ font-size: 13.0px; - + @@ -488,6 +488,6 @@ font-size: 13.0px; - + \ No newline at end of file diff --git a/docs/images/samples/candlestick/candlestick_settings_stat_api.svg b/docs/images/samples/candlestick/candlestick_settings_stat_api.svg index 87d8abacf..71cbd2bbf 100644 --- a/docs/images/samples/candlestick/candlestick_settings_stat_api.svg +++ b/docs/images/samples/candlestick/candlestick_settings_stat_api.svg @@ -10,117 +10,117 @@ text { text-rendering: optimizeLegibility; } -#xXxprefixXx0 .plot-title { +#_sample_helper_static_id_prefix_0 .plot-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-x { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-x { fill: #ffffff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-y { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-y { fill: #ffffff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-text { +#_sample_helper_static_id_prefix_2 .tooltip-text { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-title { +#_sample_helper_static_id_prefix_2 .tooltip-title { fill: #474747; font-weight: bold; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-label { +#_sample_helper_static_id_prefix_2 .tooltip-label { fill: #474747; font-weight: bold; font-style: normal;font-family: sans-serif; @@ -129,7 +129,7 @@ font-size: 13.0px; } - + @@ -171,7 +171,7 @@ font-size: 13.0px; - + @@ -239,7 +239,7 @@ font-size: 13.0px; - + @@ -424,6 +424,6 @@ font-size: 13.0px; - + \ No newline at end of file diff --git a/docs/images/samples/candlestick/candlestick_settings_stat_api_dark.svg b/docs/images/samples/candlestick/candlestick_settings_stat_api_dark.svg index fa3e27b90..a4f2f998b 100644 --- a/docs/images/samples/candlestick/candlestick_settings_stat_api_dark.svg +++ b/docs/images/samples/candlestick/candlestick_settings_stat_api_dark.svg @@ -10,117 +10,117 @@ text { text-rendering: optimizeLegibility; } -#xXxprefixXx0 .plot-title { +#_sample_helper_static_id_prefix_0 .plot-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-x { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-x { fill: #303030; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-y { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-y { fill: #303030; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-text { +#_sample_helper_static_id_prefix_2 .tooltip-text { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-title { +#_sample_helper_static_id_prefix_2 .tooltip-title { fill: #bbbbbb; font-weight: bold; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-label { +#_sample_helper_static_id_prefix_2 .tooltip-label { fill: #bbbbbb; font-weight: bold; font-style: normal;font-family: sans-serif; @@ -129,7 +129,7 @@ font-size: 13.0px; } - + @@ -287,7 +287,7 @@ font-size: 13.0px; - + @@ -355,7 +355,7 @@ font-size: 13.0px; - + @@ -424,6 +424,6 @@ font-size: 13.0px; - + \ No newline at end of file diff --git a/docs/images/samples/candlestick/candlestick_simple.svg b/docs/images/samples/candlestick/candlestick_simple.svg index 9584ec47e..9440e71a5 100644 --- a/docs/images/samples/candlestick/candlestick_simple.svg +++ b/docs/images/samples/candlestick/candlestick_simple.svg @@ -10,117 +10,117 @@ text { text-rendering: optimizeLegibility; } -#xXxprefixXx0 .plot-title { +#_sample_helper_static_id_prefix_0 .plot-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-x { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-x { fill: #ffffff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-y { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-y { fill: #ffffff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-text { +#_sample_helper_static_id_prefix_2 .tooltip-text { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-title { +#_sample_helper_static_id_prefix_2 .tooltip-title { fill: #474747; font-weight: bold; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-label { +#_sample_helper_static_id_prefix_2 .tooltip-label { fill: #474747; font-weight: bold; font-style: normal;font-family: sans-serif; @@ -129,7 +129,7 @@ font-size: 13.0px; } - + @@ -167,7 +167,7 @@ font-size: 13.0px; - + @@ -225,7 +225,7 @@ font-size: 13.0px; - + @@ -344,6 +344,6 @@ font-size: 13.0px; - + \ No newline at end of file diff --git a/docs/images/samples/candlestick/candlestick_simple_dark.svg b/docs/images/samples/candlestick/candlestick_simple_dark.svg index fcf607b6a..2ea632f03 100644 --- a/docs/images/samples/candlestick/candlestick_simple_dark.svg +++ b/docs/images/samples/candlestick/candlestick_simple_dark.svg @@ -10,117 +10,117 @@ text { text-rendering: optimizeLegibility; } -#xXxprefixXx0 .plot-title { +#_sample_helper_static_id_prefix_0 .plot-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-x { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-x { fill: #303030; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-y { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-y { fill: #303030; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-text { +#_sample_helper_static_id_prefix_2 .tooltip-text { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-title { +#_sample_helper_static_id_prefix_2 .tooltip-title { fill: #bbbbbb; font-weight: bold; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-label { +#_sample_helper_static_id_prefix_2 .tooltip-label { fill: #bbbbbb; font-weight: bold; font-style: normal;font-family: sans-serif; @@ -129,7 +129,7 @@ font-size: 13.0px; } - + @@ -267,7 +267,7 @@ font-size: 13.0px; - + @@ -325,7 +325,7 @@ font-size: 13.0px; - + @@ -344,6 +344,6 @@ font-size: 13.0px; - + \ No newline at end of file diff --git a/docs/images/samples/candlestick/preview_candlestick_settings_stat_api.svg b/docs/images/samples/candlestick/preview_candlestick_settings_stat_api.svg index 329b03852..db35a369b 100644 --- a/docs/images/samples/candlestick/preview_candlestick_settings_stat_api.svg +++ b/docs/images/samples/candlestick/preview_candlestick_settings_stat_api.svg @@ -10,117 +10,117 @@ text { text-rendering: optimizeLegibility; } -#xXxprefixXx0 .plot-title { +#_sample_helper_static_id_prefix_0 .plot-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-x { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-x { fill: #ffffff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-y { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-y { fill: #ffffff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-text { +#_sample_helper_static_id_prefix_2 .tooltip-text { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-title { +#_sample_helper_static_id_prefix_2 .tooltip-title { fill: #474747; font-weight: bold; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-label { +#_sample_helper_static_id_prefix_2 .tooltip-label { fill: #474747; font-weight: bold; font-style: normal;font-family: sans-serif; @@ -129,7 +129,7 @@ font-size: 13.0px; } - + @@ -171,7 +171,7 @@ font-size: 13.0px; - + @@ -239,7 +239,7 @@ font-size: 13.0px; - + @@ -424,6 +424,6 @@ font-size: 13.0px; - + \ No newline at end of file diff --git a/docs/images/samples/candlestick/preview_candlestick_settings_stat_api_dark.svg b/docs/images/samples/candlestick/preview_candlestick_settings_stat_api_dark.svg index 0a8a04127..5e6dc0fd8 100644 --- a/docs/images/samples/candlestick/preview_candlestick_settings_stat_api_dark.svg +++ b/docs/images/samples/candlestick/preview_candlestick_settings_stat_api_dark.svg @@ -10,117 +10,117 @@ text { text-rendering: optimizeLegibility; } -#xXxprefixXx0 .plot-title { +#_sample_helper_static_id_prefix_0 .plot-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-x { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-x { fill: #303030; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-y { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-y { fill: #303030; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-text { +#_sample_helper_static_id_prefix_2 .tooltip-text { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-title { +#_sample_helper_static_id_prefix_2 .tooltip-title { fill: #bbbbbb; font-weight: bold; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-label { +#_sample_helper_static_id_prefix_2 .tooltip-label { fill: #bbbbbb; font-weight: bold; font-style: normal;font-family: sans-serif; @@ -129,7 +129,7 @@ font-size: 13.0px; } - + @@ -287,7 +287,7 @@ font-size: 13.0px; - + @@ -355,7 +355,7 @@ font-size: 13.0px; - + @@ -424,6 +424,6 @@ font-size: 13.0px; - + \ No newline at end of file diff --git a/docs/images/samples/countPlot/countPlot_grouped.svg b/docs/images/samples/countPlot/countPlot_grouped.svg index dfe83a997..83fc4a504 100644 --- a/docs/images/samples/countPlot/countPlot_grouped.svg +++ b/docs/images/samples/countPlot/countPlot_grouped.svg @@ -10,117 +10,117 @@ text { text-rendering: optimizeLegibility; } -#xXxprefixXx0 .plot-title { +#_sample_helper_static_id_prefix_0 .plot-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-x { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-x { fill: #ffffff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-y { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-y { fill: #ffffff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-text { +#_sample_helper_static_id_prefix_2 .tooltip-text { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-title { +#_sample_helper_static_id_prefix_2 .tooltip-title { fill: #474747; font-weight: bold; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-label { +#_sample_helper_static_id_prefix_2 .tooltip-label { fill: #474747; font-weight: bold; font-style: normal;font-family: sans-serif; @@ -129,7 +129,7 @@ font-size: 13.0px; } - + @@ -161,7 +161,7 @@ font-size: 13.0px; - + @@ -181,7 +181,7 @@ font-size: 13.0px; - + @@ -334,6 +334,6 @@ font-size: 13.0px; - + \ No newline at end of file diff --git a/docs/images/samples/countPlot/countPlot_grouped_dark.svg b/docs/images/samples/countPlot/countPlot_grouped_dark.svg index 214a32fd5..3d09fa59e 100644 --- a/docs/images/samples/countPlot/countPlot_grouped_dark.svg +++ b/docs/images/samples/countPlot/countPlot_grouped_dark.svg @@ -10,117 +10,117 @@ text { text-rendering: optimizeLegibility; } -#xXxprefixXx0 .plot-title { +#_sample_helper_static_id_prefix_0 .plot-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-x { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-x { fill: #303030; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-y { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-y { fill: #303030; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-text { +#_sample_helper_static_id_prefix_2 .tooltip-text { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-title { +#_sample_helper_static_id_prefix_2 .tooltip-title { fill: #bbbbbb; font-weight: bold; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-label { +#_sample_helper_static_id_prefix_2 .tooltip-label { fill: #bbbbbb; font-weight: bold; font-style: normal;font-family: sans-serif; @@ -129,7 +129,7 @@ font-size: 13.0px; } - + @@ -234,7 +234,7 @@ font-size: 13.0px; - + @@ -254,7 +254,7 @@ font-size: 13.0px; - + @@ -334,6 +334,6 @@ font-size: 13.0px; - + \ No newline at end of file diff --git a/docs/images/samples/countPlot/countPlot_horizontal.svg b/docs/images/samples/countPlot/countPlot_horizontal.svg index dc3953fcc..856b09a1e 100644 --- a/docs/images/samples/countPlot/countPlot_horizontal.svg +++ b/docs/images/samples/countPlot/countPlot_horizontal.svg @@ -10,117 +10,117 @@ text { text-rendering: optimizeLegibility; } -#xXxprefixXx0 .plot-title { +#_sample_helper_static_id_prefix_0 .plot-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-x { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-x { fill: #ffffff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-y { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-y { fill: #ffffff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-text { +#_sample_helper_static_id_prefix_2 .tooltip-text { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-title { +#_sample_helper_static_id_prefix_2 .tooltip-title { fill: #474747; font-weight: bold; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-label { +#_sample_helper_static_id_prefix_2 .tooltip-label { fill: #474747; font-weight: bold; font-style: normal;font-family: sans-serif; @@ -129,7 +129,7 @@ font-size: 13.0px; } - + @@ -167,7 +167,7 @@ font-size: 13.0px; - + @@ -183,7 +183,7 @@ font-size: 13.0px; - + @@ -316,6 +316,6 @@ font-size: 13.0px; - + \ No newline at end of file diff --git a/docs/images/samples/countPlot/countPlot_horizontal_dark.svg b/docs/images/samples/countPlot/countPlot_horizontal_dark.svg index e9905f782..9fc01da87 100644 --- a/docs/images/samples/countPlot/countPlot_horizontal_dark.svg +++ b/docs/images/samples/countPlot/countPlot_horizontal_dark.svg @@ -10,117 +10,117 @@ text { text-rendering: optimizeLegibility; } -#xXxprefixXx0 .plot-title { +#_sample_helper_static_id_prefix_0 .plot-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-x { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-x { fill: #303030; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-y { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-y { fill: #303030; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-text { +#_sample_helper_static_id_prefix_2 .tooltip-text { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-title { +#_sample_helper_static_id_prefix_2 .tooltip-title { fill: #bbbbbb; font-weight: bold; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-label { +#_sample_helper_static_id_prefix_2 .tooltip-label { fill: #bbbbbb; font-weight: bold; font-style: normal;font-family: sans-serif; @@ -129,7 +129,7 @@ font-size: 13.0px; } - + @@ -273,7 +273,7 @@ font-size: 13.0px; - + @@ -289,7 +289,7 @@ font-size: 13.0px; - + @@ -316,6 +316,6 @@ font-size: 13.0px; - + \ No newline at end of file diff --git a/docs/images/samples/countPlot/countPlot_settings.svg b/docs/images/samples/countPlot/countPlot_settings.svg index 195a06cb6..059f84057 100644 --- a/docs/images/samples/countPlot/countPlot_settings.svg +++ b/docs/images/samples/countPlot/countPlot_settings.svg @@ -10,117 +10,117 @@ text { text-rendering: optimizeLegibility; } -#xXxprefixXx0 .plot-title { +#_sample_helper_static_id_prefix_0 .plot-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-x { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-x { fill: #ffffff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-y { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-y { fill: #ffffff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-text { +#_sample_helper_static_id_prefix_2 .tooltip-text { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-title { +#_sample_helper_static_id_prefix_2 .tooltip-title { fill: #474747; font-weight: bold; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-label { +#_sample_helper_static_id_prefix_2 .tooltip-label { fill: #474747; font-weight: bold; font-style: normal;font-family: sans-serif; @@ -129,7 +129,7 @@ font-size: 13.0px; } - + @@ -167,7 +167,7 @@ font-size: 13.0px; - + @@ -181,7 +181,7 @@ font-size: 13.0px; - + @@ -299,6 +299,6 @@ font-size: 13.0px; - + \ No newline at end of file diff --git a/docs/images/samples/countPlot/countPlot_settings_dark.svg b/docs/images/samples/countPlot/countPlot_settings_dark.svg index 3743ed414..ee66a0c54 100644 --- a/docs/images/samples/countPlot/countPlot_settings_dark.svg +++ b/docs/images/samples/countPlot/countPlot_settings_dark.svg @@ -10,117 +10,117 @@ text { text-rendering: optimizeLegibility; } -#xXxprefixXx0 .plot-title { +#_sample_helper_static_id_prefix_0 .plot-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-x { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-x { fill: #303030; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-y { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-y { fill: #303030; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-text { +#_sample_helper_static_id_prefix_2 .tooltip-text { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-title { +#_sample_helper_static_id_prefix_2 .tooltip-title { fill: #bbbbbb; font-weight: bold; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-label { +#_sample_helper_static_id_prefix_2 .tooltip-label { fill: #bbbbbb; font-weight: bold; font-style: normal;font-family: sans-serif; @@ -129,7 +129,7 @@ font-size: 13.0px; } - + @@ -263,7 +263,7 @@ font-size: 13.0px; - + @@ -277,7 +277,7 @@ font-size: 13.0px; - + @@ -299,6 +299,6 @@ font-size: 13.0px; - + \ No newline at end of file diff --git a/docs/images/samples/countPlot/countPlot_simple.svg b/docs/images/samples/countPlot/countPlot_simple.svg index 9a80455bb..546af7cae 100644 --- a/docs/images/samples/countPlot/countPlot_simple.svg +++ b/docs/images/samples/countPlot/countPlot_simple.svg @@ -10,117 +10,117 @@ text { text-rendering: optimizeLegibility; } -#xXxprefixXx0 .plot-title { +#_sample_helper_static_id_prefix_0 .plot-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-x { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-x { fill: #ffffff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-y { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-y { fill: #ffffff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-text { +#_sample_helper_static_id_prefix_2 .tooltip-text { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-title { +#_sample_helper_static_id_prefix_2 .tooltip-title { fill: #474747; font-weight: bold; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-label { +#_sample_helper_static_id_prefix_2 .tooltip-label { fill: #474747; font-weight: bold; font-style: normal;font-family: sans-serif; @@ -129,7 +129,7 @@ font-size: 13.0px; } - + @@ -169,7 +169,7 @@ font-size: 13.0px; - + @@ -183,7 +183,7 @@ font-size: 13.0px; - + @@ -308,6 +308,6 @@ font-size: 13.0px; - + \ No newline at end of file diff --git a/docs/images/samples/countPlot/countPlot_simple_dark.svg b/docs/images/samples/countPlot/countPlot_simple_dark.svg index 871c71044..2b2d08e92 100644 --- a/docs/images/samples/countPlot/countPlot_simple_dark.svg +++ b/docs/images/samples/countPlot/countPlot_simple_dark.svg @@ -10,117 +10,117 @@ text { text-rendering: optimizeLegibility; } -#xXxprefixXx0 .plot-title { +#_sample_helper_static_id_prefix_0 .plot-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-x { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-x { fill: #303030; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-y { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-y { fill: #303030; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-text { +#_sample_helper_static_id_prefix_2 .tooltip-text { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-title { +#_sample_helper_static_id_prefix_2 .tooltip-title { fill: #bbbbbb; font-weight: bold; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-label { +#_sample_helper_static_id_prefix_2 .tooltip-label { fill: #bbbbbb; font-weight: bold; font-style: normal;font-family: sans-serif; @@ -129,7 +129,7 @@ font-size: 13.0px; } - + @@ -272,7 +272,7 @@ font-size: 13.0px; - + @@ -286,7 +286,7 @@ font-size: 13.0px; - + @@ -308,6 +308,6 @@ font-size: 13.0px; - + \ No newline at end of file diff --git a/docs/images/samples/densityPlot/densityPlot_grouped.svg b/docs/images/samples/densityPlot/densityPlot_grouped.svg index 75b605355..e5861c224 100644 --- a/docs/images/samples/densityPlot/densityPlot_grouped.svg +++ b/docs/images/samples/densityPlot/densityPlot_grouped.svg @@ -10,117 +10,117 @@ text { text-rendering: optimizeLegibility; } -#xXxprefixXx0 .plot-title { +#_sample_helper_static_id_prefix_0 .plot-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-x { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-x { fill: #ffffff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-y { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-y { fill: #ffffff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-text { +#_sample_helper_static_id_prefix_2 .tooltip-text { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-title { +#_sample_helper_static_id_prefix_2 .tooltip-title { fill: #474747; font-weight: bold; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-label { +#_sample_helper_static_id_prefix_2 .tooltip-label { fill: #474747; font-weight: bold; font-style: normal;font-family: sans-serif; @@ -129,7 +129,7 @@ font-size: 13.0px; } - + @@ -181,7 +181,7 @@ font-size: 13.0px; - + @@ -205,7 +205,7 @@ font-size: 13.0px; - + @@ -427,6 +427,6 @@ font-size: 13.0px; - + \ No newline at end of file diff --git a/docs/images/samples/densityPlot/densityPlot_grouped_dark.svg b/docs/images/samples/densityPlot/densityPlot_grouped_dark.svg index c9e667575..878f676b1 100644 --- a/docs/images/samples/densityPlot/densityPlot_grouped_dark.svg +++ b/docs/images/samples/densityPlot/densityPlot_grouped_dark.svg @@ -10,117 +10,117 @@ text { text-rendering: optimizeLegibility; } -#xXxprefixXx0 .plot-title { +#_sample_helper_static_id_prefix_0 .plot-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-x { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-x { fill: #303030; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-y { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-y { fill: #303030; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-text { +#_sample_helper_static_id_prefix_2 .tooltip-text { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-title { +#_sample_helper_static_id_prefix_2 .tooltip-title { fill: #bbbbbb; font-weight: bold; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-label { +#_sample_helper_static_id_prefix_2 .tooltip-label { fill: #bbbbbb; font-weight: bold; font-style: normal;font-family: sans-serif; @@ -129,7 +129,7 @@ font-size: 13.0px; } - + @@ -338,7 +338,7 @@ font-size: 13.0px; - + @@ -362,7 +362,7 @@ font-size: 13.0px; - + @@ -427,6 +427,6 @@ font-size: 13.0px; - + \ No newline at end of file diff --git a/docs/images/samples/densityPlot/densityPlot_settings.svg b/docs/images/samples/densityPlot/densityPlot_settings.svg index ef9a45608..850c803b9 100644 --- a/docs/images/samples/densityPlot/densityPlot_settings.svg +++ b/docs/images/samples/densityPlot/densityPlot_settings.svg @@ -10,117 +10,117 @@ text { text-rendering: optimizeLegibility; } -#xXxprefixXx0 .plot-title { +#_sample_helper_static_id_prefix_0 .plot-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-x { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-x { fill: #ffffff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-y { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-y { fill: #ffffff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-text { +#_sample_helper_static_id_prefix_2 .tooltip-text { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-title { +#_sample_helper_static_id_prefix_2 .tooltip-title { fill: #474747; font-weight: bold; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-label { +#_sample_helper_static_id_prefix_2 .tooltip-label { fill: #474747; font-weight: bold; font-style: normal;font-family: sans-serif; @@ -129,7 +129,7 @@ font-size: 13.0px; } - + @@ -187,7 +187,7 @@ font-size: 13.0px; - + @@ -203,7 +203,7 @@ font-size: 13.0px; - + @@ -412,6 +412,6 @@ font-size: 13.0px; - + \ No newline at end of file diff --git a/docs/images/samples/densityPlot/densityPlot_settings_dark.svg b/docs/images/samples/densityPlot/densityPlot_settings_dark.svg index bd5eb3a34..903084b6b 100644 --- a/docs/images/samples/densityPlot/densityPlot_settings_dark.svg +++ b/docs/images/samples/densityPlot/densityPlot_settings_dark.svg @@ -10,117 +10,117 @@ text { text-rendering: optimizeLegibility; } -#xXxprefixXx0 .plot-title { +#_sample_helper_static_id_prefix_0 .plot-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-x { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-x { fill: #303030; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-y { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-y { fill: #303030; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-text { +#_sample_helper_static_id_prefix_2 .tooltip-text { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-title { +#_sample_helper_static_id_prefix_2 .tooltip-title { fill: #bbbbbb; font-weight: bold; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-label { +#_sample_helper_static_id_prefix_2 .tooltip-label { fill: #bbbbbb; font-weight: bold; font-style: normal;font-family: sans-serif; @@ -129,7 +129,7 @@ font-size: 13.0px; } - + @@ -369,7 +369,7 @@ font-size: 13.0px; - + @@ -385,7 +385,7 @@ font-size: 13.0px; - + @@ -412,6 +412,6 @@ font-size: 13.0px; - + \ No newline at end of file diff --git a/docs/images/samples/densityPlot/densityPlot_simple.svg b/docs/images/samples/densityPlot/densityPlot_simple.svg index 41f3f4dd4..5cb5bd142 100644 --- a/docs/images/samples/densityPlot/densityPlot_simple.svg +++ b/docs/images/samples/densityPlot/densityPlot_simple.svg @@ -10,117 +10,117 @@ text { text-rendering: optimizeLegibility; } -#xXxprefixXx0 .plot-title { +#_sample_helper_static_id_prefix_0 .plot-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-x { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-x { fill: #ffffff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-y { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-y { fill: #ffffff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-text { +#_sample_helper_static_id_prefix_2 .tooltip-text { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-title { +#_sample_helper_static_id_prefix_2 .tooltip-title { fill: #474747; font-weight: bold; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-label { +#_sample_helper_static_id_prefix_2 .tooltip-label { fill: #474747; font-weight: bold; font-style: normal;font-family: sans-serif; @@ -129,7 +129,7 @@ font-size: 13.0px; } - + @@ -175,7 +175,7 @@ font-size: 13.0px; - + @@ -191,7 +191,7 @@ font-size: 13.0px; - + @@ -345,6 +345,6 @@ font-size: 13.0px; - + \ No newline at end of file diff --git a/docs/images/samples/densityPlot/densityPlot_simple_dark.svg b/docs/images/samples/densityPlot/densityPlot_simple_dark.svg index 9b4ca2164..d94424eb6 100644 --- a/docs/images/samples/densityPlot/densityPlot_simple_dark.svg +++ b/docs/images/samples/densityPlot/densityPlot_simple_dark.svg @@ -10,117 +10,117 @@ text { text-rendering: optimizeLegibility; } -#xXxprefixXx0 .plot-title { +#_sample_helper_static_id_prefix_0 .plot-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-x { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-x { fill: #303030; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-y { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-y { fill: #303030; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-text { +#_sample_helper_static_id_prefix_2 .tooltip-text { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-title { +#_sample_helper_static_id_prefix_2 .tooltip-title { fill: #bbbbbb; font-weight: bold; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-label { +#_sample_helper_static_id_prefix_2 .tooltip-label { fill: #bbbbbb; font-weight: bold; font-style: normal;font-family: sans-serif; @@ -129,7 +129,7 @@ font-size: 13.0px; } - + @@ -307,7 +307,7 @@ font-size: 13.0px; - + @@ -323,7 +323,7 @@ font-size: 13.0px; - + @@ -345,6 +345,6 @@ font-size: 13.0px; - + \ No newline at end of file diff --git a/docs/images/samples/densityPlot/densityPlot_with_histogram.svg b/docs/images/samples/densityPlot/densityPlot_with_histogram.svg index 006d2ed80..e464f5b9d 100644 --- a/docs/images/samples/densityPlot/densityPlot_with_histogram.svg +++ b/docs/images/samples/densityPlot/densityPlot_with_histogram.svg @@ -10,117 +10,117 @@ text { text-rendering: optimizeLegibility; } -#xXxprefixXx0 .plot-title { +#_sample_helper_static_id_prefix_0 .plot-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx3 .axis-tooltip-text-x { +#_sample_helper_static_id_prefix_3 .axis-tooltip-text-x { fill: #ffffff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx3 .axis-tooltip-text-y { +#_sample_helper_static_id_prefix_3 .axis-tooltip-text-y { fill: #ffffff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx3 .tooltip-text { +#_sample_helper_static_id_prefix_3 .tooltip-text { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx3 .tooltip-title { +#_sample_helper_static_id_prefix_3 .tooltip-title { fill: #474747; font-weight: bold; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx3 .tooltip-label { +#_sample_helper_static_id_prefix_3 .tooltip-label { fill: #474747; font-weight: bold; font-style: normal;font-family: sans-serif; @@ -129,7 +129,7 @@ font-size: 13.0px; } - + @@ -177,7 +177,7 @@ font-size: 13.0px; - + @@ -235,13 +235,13 @@ font-size: 13.0px; - + - + @@ -411,6 +411,6 @@ font-size: 13.0px; - + \ No newline at end of file diff --git a/docs/images/samples/densityPlot/densityPlot_with_histogram_dark.svg b/docs/images/samples/densityPlot/densityPlot_with_histogram_dark.svg index 81898d783..5938b9045 100644 --- a/docs/images/samples/densityPlot/densityPlot_with_histogram_dark.svg +++ b/docs/images/samples/densityPlot/densityPlot_with_histogram_dark.svg @@ -10,117 +10,117 @@ text { text-rendering: optimizeLegibility; } -#xXxprefixXx0 .plot-title { +#_sample_helper_static_id_prefix_0 .plot-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx3 .axis-tooltip-text-x { +#_sample_helper_static_id_prefix_3 .axis-tooltip-text-x { fill: #303030; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx3 .axis-tooltip-text-y { +#_sample_helper_static_id_prefix_3 .axis-tooltip-text-y { fill: #303030; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx3 .tooltip-text { +#_sample_helper_static_id_prefix_3 .tooltip-text { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx3 .tooltip-title { +#_sample_helper_static_id_prefix_3 .tooltip-title { fill: #bbbbbb; font-weight: bold; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx3 .tooltip-label { +#_sample_helper_static_id_prefix_3 .tooltip-label { fill: #bbbbbb; font-weight: bold; font-style: normal;font-family: sans-serif; @@ -129,7 +129,7 @@ font-size: 13.0px; } - + @@ -320,7 +320,7 @@ font-size: 13.0px; - + @@ -378,13 +378,13 @@ font-size: 13.0px; - + - + @@ -411,6 +411,6 @@ font-size: 13.0px; - + \ No newline at end of file diff --git a/docs/images/samples/errorBars/border_line_error_bars.svg b/docs/images/samples/errorBars/border_line_error_bars.svg index 03242f9d9..12b182cad 100644 --- a/docs/images/samples/errorBars/border_line_error_bars.svg +++ b/docs/images/samples/errorBars/border_line_error_bars.svg @@ -10,117 +10,117 @@ text { text-rendering: optimizeLegibility; } -#xXxprefixXx0 .plot-title { +#_sample_helper_static_id_prefix_0 .plot-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-x { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-x { fill: #ffffff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-y { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-y { fill: #ffffff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-text { +#_sample_helper_static_id_prefix_2 .tooltip-text { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-title { +#_sample_helper_static_id_prefix_2 .tooltip-title { fill: #474747; font-weight: bold; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-label { +#_sample_helper_static_id_prefix_2 .tooltip-label { fill: #474747; font-weight: bold; font-style: normal;font-family: sans-serif; @@ -129,7 +129,7 @@ font-size: 13.0px; } - + @@ -171,7 +171,7 @@ font-size: 13.0px; - + @@ -219,7 +219,7 @@ font-size: 13.0px; - + @@ -455,6 +455,6 @@ font-size: 13.0px; - + \ No newline at end of file diff --git a/docs/images/samples/errorBars/border_line_error_bars_dark.svg b/docs/images/samples/errorBars/border_line_error_bars_dark.svg index 4e62a64c2..1ac98f191 100644 --- a/docs/images/samples/errorBars/border_line_error_bars_dark.svg +++ b/docs/images/samples/errorBars/border_line_error_bars_dark.svg @@ -10,117 +10,117 @@ text { text-rendering: optimizeLegibility; } -#xXxprefixXx0 .plot-title { +#_sample_helper_static_id_prefix_0 .plot-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-x { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-x { fill: #303030; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-y { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-y { fill: #303030; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-text { +#_sample_helper_static_id_prefix_2 .tooltip-text { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-title { +#_sample_helper_static_id_prefix_2 .tooltip-title { fill: #bbbbbb; font-weight: bold; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-label { +#_sample_helper_static_id_prefix_2 .tooltip-label { fill: #bbbbbb; font-weight: bold; font-style: normal;font-family: sans-serif; @@ -129,7 +129,7 @@ font-size: 13.0px; } - + @@ -285,7 +285,7 @@ font-size: 13.0px; - + @@ -333,7 +333,7 @@ font-size: 13.0px; - + @@ -455,6 +455,6 @@ font-size: 13.0px; - + \ No newline at end of file diff --git a/docs/images/samples/errorBars/error_bars_settings.svg b/docs/images/samples/errorBars/error_bars_settings.svg index e117e7d1b..3a83422db 100644 --- a/docs/images/samples/errorBars/error_bars_settings.svg +++ b/docs/images/samples/errorBars/error_bars_settings.svg @@ -10,117 +10,117 @@ text { text-rendering: optimizeLegibility; } -#xXxprefixXx0 .plot-title { +#_sample_helper_static_id_prefix_0 .plot-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-x { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-x { fill: #ffffff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-y { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-y { fill: #ffffff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-text { +#_sample_helper_static_id_prefix_2 .tooltip-text { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-title { +#_sample_helper_static_id_prefix_2 .tooltip-title { fill: #474747; font-weight: bold; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-label { +#_sample_helper_static_id_prefix_2 .tooltip-label { fill: #474747; font-weight: bold; font-style: normal;font-family: sans-serif; @@ -129,7 +129,7 @@ font-size: 13.0px; } - + @@ -171,7 +171,7 @@ font-size: 13.0px; - + @@ -219,7 +219,7 @@ font-size: 13.0px; - + @@ -355,6 +355,6 @@ font-size: 13.0px; - + \ No newline at end of file diff --git a/docs/images/samples/errorBars/error_bars_settings_dark.svg b/docs/images/samples/errorBars/error_bars_settings_dark.svg index 0a08e3dbe..5c0d675ec 100644 --- a/docs/images/samples/errorBars/error_bars_settings_dark.svg +++ b/docs/images/samples/errorBars/error_bars_settings_dark.svg @@ -10,117 +10,117 @@ text { text-rendering: optimizeLegibility; } -#xXxprefixXx0 .plot-title { +#_sample_helper_static_id_prefix_0 .plot-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-x { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-x { fill: #303030; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-y { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-y { fill: #303030; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-text { +#_sample_helper_static_id_prefix_2 .tooltip-text { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-title { +#_sample_helper_static_id_prefix_2 .tooltip-title { fill: #bbbbbb; font-weight: bold; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-label { +#_sample_helper_static_id_prefix_2 .tooltip-label { fill: #bbbbbb; font-weight: bold; font-style: normal;font-family: sans-serif; @@ -129,7 +129,7 @@ font-size: 13.0px; } - + @@ -285,7 +285,7 @@ font-size: 13.0px; - + @@ -333,7 +333,7 @@ font-size: 13.0px; - + @@ -355,6 +355,6 @@ font-size: 13.0px; - + \ No newline at end of file diff --git a/docs/images/samples/errorBars/error_bars_with_boxplot.svg b/docs/images/samples/errorBars/error_bars_with_boxplot.svg index 48b71c587..ab9558eed 100644 --- a/docs/images/samples/errorBars/error_bars_with_boxplot.svg +++ b/docs/images/samples/errorBars/error_bars_with_boxplot.svg @@ -10,117 +10,117 @@ text { text-rendering: optimizeLegibility; } -#xXxprefixXx0 .plot-title { +#_sample_helper_static_id_prefix_0 .plot-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-x { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-x { fill: #ffffff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-y { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-y { fill: #ffffff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-text { +#_sample_helper_static_id_prefix_2 .tooltip-text { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-title { +#_sample_helper_static_id_prefix_2 .tooltip-title { fill: #474747; font-weight: bold; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-label { +#_sample_helper_static_id_prefix_2 .tooltip-label { fill: #474747; font-weight: bold; font-style: normal;font-family: sans-serif; @@ -129,7 +129,7 @@ font-size: 13.0px; } - + @@ -169,7 +169,7 @@ font-size: 13.0px; - + @@ -201,7 +201,7 @@ font-size: 13.0px; - + @@ -396,6 +396,6 @@ font-size: 13.0px; - + \ No newline at end of file diff --git a/docs/images/samples/errorBars/error_bars_with_boxplot_dark.svg b/docs/images/samples/errorBars/error_bars_with_boxplot_dark.svg index c3e7f4e33..6ada7ce19 100644 --- a/docs/images/samples/errorBars/error_bars_with_boxplot_dark.svg +++ b/docs/images/samples/errorBars/error_bars_with_boxplot_dark.svg @@ -10,117 +10,117 @@ text { text-rendering: optimizeLegibility; } -#xXxprefixXx0 .plot-title { +#_sample_helper_static_id_prefix_0 .plot-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-x { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-x { fill: #303030; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-y { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-y { fill: #303030; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-text { +#_sample_helper_static_id_prefix_2 .tooltip-text { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-title { +#_sample_helper_static_id_prefix_2 .tooltip-title { fill: #bbbbbb; font-weight: bold; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-label { +#_sample_helper_static_id_prefix_2 .tooltip-label { fill: #bbbbbb; font-weight: bold; font-style: normal;font-family: sans-serif; @@ -129,7 +129,7 @@ font-size: 13.0px; } - + @@ -272,7 +272,7 @@ font-size: 13.0px; - + @@ -304,7 +304,7 @@ font-size: 13.0px; - + @@ -396,6 +396,6 @@ font-size: 13.0px; - + \ No newline at end of file diff --git a/docs/images/samples/errorBars/error_bars_with_line.svg b/docs/images/samples/errorBars/error_bars_with_line.svg index f610d2a3c..802e4a172 100644 --- a/docs/images/samples/errorBars/error_bars_with_line.svg +++ b/docs/images/samples/errorBars/error_bars_with_line.svg @@ -10,117 +10,117 @@ text { text-rendering: optimizeLegibility; } -#xXxprefixXx0 .plot-title { +#_sample_helper_static_id_prefix_0 .plot-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx3 .axis-tooltip-text-x { +#_sample_helper_static_id_prefix_3 .axis-tooltip-text-x { fill: #ffffff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx3 .axis-tooltip-text-y { +#_sample_helper_static_id_prefix_3 .axis-tooltip-text-y { fill: #ffffff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx3 .tooltip-text { +#_sample_helper_static_id_prefix_3 .tooltip-text { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx3 .tooltip-title { +#_sample_helper_static_id_prefix_3 .tooltip-title { fill: #474747; font-weight: bold; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx3 .tooltip-label { +#_sample_helper_static_id_prefix_3 .tooltip-label { fill: #474747; font-weight: bold; font-style: normal;font-family: sans-serif; @@ -129,7 +129,7 @@ font-size: 13.0px; } - + @@ -171,7 +171,7 @@ font-size: 13.0px; - + @@ -225,13 +225,13 @@ font-size: 13.0px; - + - + @@ -367,6 +367,6 @@ font-size: 13.0px; - + \ No newline at end of file diff --git a/docs/images/samples/errorBars/error_bars_with_line_dark.svg b/docs/images/samples/errorBars/error_bars_with_line_dark.svg index b34d42239..e849d5fc4 100644 --- a/docs/images/samples/errorBars/error_bars_with_line_dark.svg +++ b/docs/images/samples/errorBars/error_bars_with_line_dark.svg @@ -10,117 +10,117 @@ text { text-rendering: optimizeLegibility; } -#xXxprefixXx0 .plot-title { +#_sample_helper_static_id_prefix_0 .plot-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx3 .axis-tooltip-text-x { +#_sample_helper_static_id_prefix_3 .axis-tooltip-text-x { fill: #303030; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx3 .axis-tooltip-text-y { +#_sample_helper_static_id_prefix_3 .axis-tooltip-text-y { fill: #303030; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx3 .tooltip-text { +#_sample_helper_static_id_prefix_3 .tooltip-text { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx3 .tooltip-title { +#_sample_helper_static_id_prefix_3 .tooltip-title { fill: #bbbbbb; font-weight: bold; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx3 .tooltip-label { +#_sample_helper_static_id_prefix_3 .tooltip-label { fill: #bbbbbb; font-weight: bold; font-style: normal;font-family: sans-serif; @@ -129,7 +129,7 @@ font-size: 13.0px; } - + @@ -285,7 +285,7 @@ font-size: 13.0px; - + @@ -339,13 +339,13 @@ font-size: 13.0px; - + - + @@ -367,6 +367,6 @@ font-size: 13.0px; - + \ No newline at end of file diff --git a/docs/images/samples/errorBars/fixed_error_bars.svg b/docs/images/samples/errorBars/fixed_error_bars.svg index 55fb1e162..5f0bcf65d 100644 --- a/docs/images/samples/errorBars/fixed_error_bars.svg +++ b/docs/images/samples/errorBars/fixed_error_bars.svg @@ -10,117 +10,117 @@ text { text-rendering: optimizeLegibility; } -#xXxprefixXx0 .plot-title { +#_sample_helper_static_id_prefix_0 .plot-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-x { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-x { fill: #ffffff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-y { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-y { fill: #ffffff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-text { +#_sample_helper_static_id_prefix_2 .tooltip-text { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-title { +#_sample_helper_static_id_prefix_2 .tooltip-title { fill: #474747; font-weight: bold; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-label { +#_sample_helper_static_id_prefix_2 .tooltip-label { fill: #474747; font-weight: bold; font-style: normal;font-family: sans-serif; @@ -129,7 +129,7 @@ font-size: 13.0px; } - + @@ -167,7 +167,7 @@ font-size: 13.0px; - + @@ -215,7 +215,7 @@ font-size: 13.0px; - + @@ -337,6 +337,6 @@ font-size: 13.0px; - + \ No newline at end of file diff --git a/docs/images/samples/errorBars/fixed_error_bars_dark.svg b/docs/images/samples/errorBars/fixed_error_bars_dark.svg index e8e44d4a9..915ff4bfb 100644 --- a/docs/images/samples/errorBars/fixed_error_bars_dark.svg +++ b/docs/images/samples/errorBars/fixed_error_bars_dark.svg @@ -10,117 +10,117 @@ text { text-rendering: optimizeLegibility; } -#xXxprefixXx0 .plot-title { +#_sample_helper_static_id_prefix_0 .plot-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-x { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-x { fill: #303030; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-y { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-y { fill: #303030; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-text { +#_sample_helper_static_id_prefix_2 .tooltip-text { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-title { +#_sample_helper_static_id_prefix_2 .tooltip-title { fill: #bbbbbb; font-weight: bold; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-label { +#_sample_helper_static_id_prefix_2 .tooltip-label { fill: #bbbbbb; font-weight: bold; font-style: normal;font-family: sans-serif; @@ -129,7 +129,7 @@ font-size: 13.0px; } - + @@ -267,7 +267,7 @@ font-size: 13.0px; - + @@ -315,7 +315,7 @@ font-size: 13.0px; - + @@ -337,6 +337,6 @@ font-size: 13.0px; - + \ No newline at end of file diff --git a/docs/images/samples/errorBars/grouped_error_bars.svg b/docs/images/samples/errorBars/grouped_error_bars.svg index ae7ff1434..b4e2b71ac 100644 --- a/docs/images/samples/errorBars/grouped_error_bars.svg +++ b/docs/images/samples/errorBars/grouped_error_bars.svg @@ -10,117 +10,117 @@ text { text-rendering: optimizeLegibility; } -#xXxprefixXx0 .plot-title { +#_sample_helper_static_id_prefix_0 .plot-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-x { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-x { fill: #ffffff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-y { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-y { fill: #ffffff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-text { +#_sample_helper_static_id_prefix_2 .tooltip-text { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-title { +#_sample_helper_static_id_prefix_2 .tooltip-title { fill: #474747; font-weight: bold; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-label { +#_sample_helper_static_id_prefix_2 .tooltip-label { fill: #474747; font-weight: bold; font-style: normal;font-family: sans-serif; @@ -129,7 +129,7 @@ font-size: 13.0px; } - + @@ -175,7 +175,7 @@ font-size: 13.0px; - + @@ -263,7 +263,7 @@ font-size: 13.0px; - + @@ -464,6 +464,6 @@ font-size: 13.0px; - + \ No newline at end of file diff --git a/docs/images/samples/errorBars/grouped_error_bars_dark.svg b/docs/images/samples/errorBars/grouped_error_bars_dark.svg index befbcc00b..054515948 100644 --- a/docs/images/samples/errorBars/grouped_error_bars_dark.svg +++ b/docs/images/samples/errorBars/grouped_error_bars_dark.svg @@ -10,117 +10,117 @@ text { text-rendering: optimizeLegibility; } -#xXxprefixXx0 .plot-title { +#_sample_helper_static_id_prefix_0 .plot-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-x { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-x { fill: #303030; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-y { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-y { fill: #303030; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-text { +#_sample_helper_static_id_prefix_2 .tooltip-text { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-title { +#_sample_helper_static_id_prefix_2 .tooltip-title { fill: #bbbbbb; font-weight: bold; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-label { +#_sample_helper_static_id_prefix_2 .tooltip-label { fill: #bbbbbb; font-weight: bold; font-style: normal;font-family: sans-serif; @@ -129,7 +129,7 @@ font-size: 13.0px; } - + @@ -303,7 +303,7 @@ font-size: 13.0px; - + @@ -391,7 +391,7 @@ font-size: 13.0px; - + @@ -464,6 +464,6 @@ font-size: 13.0px; - + \ No newline at end of file diff --git a/docs/images/samples/errorBars/simple_error_bar_plot.svg b/docs/images/samples/errorBars/simple_error_bar_plot.svg index bcd1c36c4..528dbe22c 100644 --- a/docs/images/samples/errorBars/simple_error_bar_plot.svg +++ b/docs/images/samples/errorBars/simple_error_bar_plot.svg @@ -10,117 +10,117 @@ text { text-rendering: optimizeLegibility; } -#xXxprefixXx0 .plot-title { +#_sample_helper_static_id_prefix_0 .plot-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-x { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-x { fill: #ffffff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-y { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-y { fill: #ffffff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-text { +#_sample_helper_static_id_prefix_2 .tooltip-text { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-title { +#_sample_helper_static_id_prefix_2 .tooltip-title { fill: #474747; font-weight: bold; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-label { +#_sample_helper_static_id_prefix_2 .tooltip-label { fill: #474747; font-weight: bold; font-style: normal;font-family: sans-serif; @@ -129,7 +129,7 @@ font-size: 13.0px; } - + @@ -171,7 +171,7 @@ font-size: 13.0px; - + @@ -219,7 +219,7 @@ font-size: 13.0px; - + @@ -355,6 +355,6 @@ font-size: 13.0px; - + \ No newline at end of file diff --git a/docs/images/samples/errorBars/simple_error_bar_plot_dark.svg b/docs/images/samples/errorBars/simple_error_bar_plot_dark.svg index f443a5c7d..dce0929c0 100644 --- a/docs/images/samples/errorBars/simple_error_bar_plot_dark.svg +++ b/docs/images/samples/errorBars/simple_error_bar_plot_dark.svg @@ -10,117 +10,117 @@ text { text-rendering: optimizeLegibility; } -#xXxprefixXx0 .plot-title { +#_sample_helper_static_id_prefix_0 .plot-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-x { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-x { fill: #303030; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-y { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-y { fill: #303030; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-text { +#_sample_helper_static_id_prefix_2 .tooltip-text { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-title { +#_sample_helper_static_id_prefix_2 .tooltip-title { fill: #bbbbbb; font-weight: bold; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-label { +#_sample_helper_static_id_prefix_2 .tooltip-label { fill: #bbbbbb; font-weight: bold; font-style: normal;font-family: sans-serif; @@ -129,7 +129,7 @@ font-size: 13.0px; } - + @@ -285,7 +285,7 @@ font-size: 13.0px; - + @@ -333,7 +333,7 @@ font-size: 13.0px; - + @@ -355,6 +355,6 @@ font-size: 13.0px; - + \ No newline at end of file diff --git a/docs/images/samples/geo/germany_map_categories.svg b/docs/images/samples/geo/germany_map_categories.svg index 3bb1b27b9..cefb33f9b 100644 --- a/docs/images/samples/geo/germany_map_categories.svg +++ b/docs/images/samples/geo/germany_map_categories.svg @@ -10,117 +10,117 @@ text { text-rendering: optimizeLegibility; } -#xXxprefixXx0 .plot-title { +#_sample_helper_static_id_prefix_0 .plot-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-x { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-x { fill: #ffffff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-y { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-y { fill: #ffffff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-text { +#_sample_helper_static_id_prefix_2 .tooltip-text { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-title { +#_sample_helper_static_id_prefix_2 .tooltip-title { fill: #474747; font-weight: bold; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-label { +#_sample_helper_static_id_prefix_2 .tooltip-label { fill: #474747; font-weight: bold; font-style: normal;font-family: sans-serif; @@ -129,7 +129,7 @@ font-size: 13.0px; } - + @@ -147,7 +147,7 @@ font-size: 13.0px; - + @@ -219,7 +219,7 @@ font-size: 13.0px; - + @@ -489,6 +489,6 @@ font-size: 13.0px; - + \ No newline at end of file diff --git a/docs/images/samples/geo/germany_map_categories_dark.svg b/docs/images/samples/geo/germany_map_categories_dark.svg index 768566ddb..7c643e013 100644 --- a/docs/images/samples/geo/germany_map_categories_dark.svg +++ b/docs/images/samples/geo/germany_map_categories_dark.svg @@ -10,117 +10,117 @@ text { text-rendering: optimizeLegibility; } -#xXxprefixXx0 .plot-title { +#_sample_helper_static_id_prefix_0 .plot-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-x { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-x { fill: #303030; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-y { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-y { fill: #303030; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-text { +#_sample_helper_static_id_prefix_2 .tooltip-text { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-title { +#_sample_helper_static_id_prefix_2 .tooltip-title { fill: #bbbbbb; font-weight: bold; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-label { +#_sample_helper_static_id_prefix_2 .tooltip-label { fill: #bbbbbb; font-weight: bold; font-style: normal;font-family: sans-serif; @@ -129,7 +129,7 @@ font-size: 13.0px; } - + @@ -147,7 +147,7 @@ font-size: 13.0px; - + @@ -219,7 +219,7 @@ font-size: 13.0px; - + @@ -489,6 +489,6 @@ font-size: 13.0px; - + \ No newline at end of file diff --git a/docs/images/samples/geo/germany_map_settings_shapefile.svg b/docs/images/samples/geo/germany_map_settings_shapefile.svg index 3a29f4b3a..754d6cf3e 100644 --- a/docs/images/samples/geo/germany_map_settings_shapefile.svg +++ b/docs/images/samples/geo/germany_map_settings_shapefile.svg @@ -10,117 +10,117 @@ text { text-rendering: optimizeLegibility; } -#xXxprefixXx0 .plot-title { +#_sample_helper_static_id_prefix_0 .plot-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-x { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-x { fill: #ffffff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-y { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-y { fill: #ffffff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-text { +#_sample_helper_static_id_prefix_2 .tooltip-text { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-title { +#_sample_helper_static_id_prefix_2 .tooltip-title { fill: #474747; font-weight: bold; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-label { +#_sample_helper_static_id_prefix_2 .tooltip-label { fill: #474747; font-weight: bold; font-style: normal;font-family: sans-serif; @@ -129,7 +129,7 @@ font-size: 13.0px; } - + @@ -147,7 +147,7 @@ font-size: 13.0px; - + @@ -219,7 +219,7 @@ font-size: 13.0px; - + @@ -236,6 +236,6 @@ font-size: 13.0px; - + \ No newline at end of file diff --git a/docs/images/samples/geo/germany_map_settings_shapefile_dark.svg b/docs/images/samples/geo/germany_map_settings_shapefile_dark.svg index 1ecd42ac5..b1b5c0033 100644 --- a/docs/images/samples/geo/germany_map_settings_shapefile_dark.svg +++ b/docs/images/samples/geo/germany_map_settings_shapefile_dark.svg @@ -10,117 +10,117 @@ text { text-rendering: optimizeLegibility; } -#xXxprefixXx0 .plot-title { +#_sample_helper_static_id_prefix_0 .plot-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-x { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-x { fill: #303030; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-y { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-y { fill: #303030; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-text { +#_sample_helper_static_id_prefix_2 .tooltip-text { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-title { +#_sample_helper_static_id_prefix_2 .tooltip-title { fill: #bbbbbb; font-weight: bold; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-label { +#_sample_helper_static_id_prefix_2 .tooltip-label { fill: #bbbbbb; font-weight: bold; font-style: normal;font-family: sans-serif; @@ -129,7 +129,7 @@ font-size: 13.0px; } - + @@ -147,7 +147,7 @@ font-size: 13.0px; - + @@ -219,7 +219,7 @@ font-size: 13.0px; - + @@ -236,6 +236,6 @@ font-size: 13.0px; - + \ No newline at end of file diff --git a/docs/images/samples/geo/preview_germany_map_categories.svg b/docs/images/samples/geo/preview_germany_map_categories.svg index c9c8b1206..83c746487 100644 --- a/docs/images/samples/geo/preview_germany_map_categories.svg +++ b/docs/images/samples/geo/preview_germany_map_categories.svg @@ -10,117 +10,117 @@ text { text-rendering: optimizeLegibility; } -#xXxprefixXx0 .plot-title { +#_sample_helper_static_id_prefix_0 .plot-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-x { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-x { fill: #ffffff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-y { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-y { fill: #ffffff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-text { +#_sample_helper_static_id_prefix_2 .tooltip-text { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-title { +#_sample_helper_static_id_prefix_2 .tooltip-title { fill: #474747; font-weight: bold; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-label { +#_sample_helper_static_id_prefix_2 .tooltip-label { fill: #474747; font-weight: bold; font-style: normal;font-family: sans-serif; @@ -129,7 +129,7 @@ font-size: 13.0px; } - + @@ -147,7 +147,7 @@ font-size: 13.0px; - + @@ -219,7 +219,7 @@ font-size: 13.0px; - + @@ -489,6 +489,6 @@ font-size: 13.0px; - + \ No newline at end of file diff --git a/docs/images/samples/geo/preview_germany_map_categories_dark.svg b/docs/images/samples/geo/preview_germany_map_categories_dark.svg index 526180339..2db527928 100644 --- a/docs/images/samples/geo/preview_germany_map_categories_dark.svg +++ b/docs/images/samples/geo/preview_germany_map_categories_dark.svg @@ -10,117 +10,117 @@ text { text-rendering: optimizeLegibility; } -#xXxprefixXx0 .plot-title { +#_sample_helper_static_id_prefix_0 .plot-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-x { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-x { fill: #303030; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-y { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-y { fill: #303030; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-text { +#_sample_helper_static_id_prefix_2 .tooltip-text { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-title { +#_sample_helper_static_id_prefix_2 .tooltip-title { fill: #bbbbbb; font-weight: bold; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-label { +#_sample_helper_static_id_prefix_2 .tooltip-label { fill: #bbbbbb; font-weight: bold; font-style: normal;font-family: sans-serif; @@ -129,7 +129,7 @@ font-size: 13.0px; } - + @@ -147,7 +147,7 @@ font-size: 13.0px; - + @@ -219,7 +219,7 @@ font-size: 13.0px; - + @@ -489,6 +489,6 @@ font-size: 13.0px; - + \ No newline at end of file diff --git a/docs/images/samples/geo/preview_usa_election_results_joined.svg b/docs/images/samples/geo/preview_usa_election_results_joined.svg index ecb514186..492cd6731 100644 --- a/docs/images/samples/geo/preview_usa_election_results_joined.svg +++ b/docs/images/samples/geo/preview_usa_election_results_joined.svg @@ -10,117 +10,117 @@ text { text-rendering: optimizeLegibility; } -#xXxprefixXx0 .plot-title { +#_sample_helper_static_id_prefix_0 .plot-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-x { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-x { fill: #ffffff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-y { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-y { fill: #ffffff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-text { +#_sample_helper_static_id_prefix_2 .tooltip-text { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-title { +#_sample_helper_static_id_prefix_2 .tooltip-title { fill: #474747; font-weight: bold; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-label { +#_sample_helper_static_id_prefix_2 .tooltip-label { fill: #474747; font-weight: bold; font-style: normal;font-family: sans-serif; @@ -129,7 +129,7 @@ font-size: 13.0px; } - + @@ -147,7 +147,7 @@ font-size: 13.0px; - + @@ -355,7 +355,7 @@ font-size: 13.0px; - + @@ -415,6 +415,6 @@ font-size: 13.0px; - + \ No newline at end of file diff --git a/docs/images/samples/geo/preview_usa_election_results_joined_dark.svg b/docs/images/samples/geo/preview_usa_election_results_joined_dark.svg index 81fdb55a5..65b415135 100644 --- a/docs/images/samples/geo/preview_usa_election_results_joined_dark.svg +++ b/docs/images/samples/geo/preview_usa_election_results_joined_dark.svg @@ -10,117 +10,117 @@ text { text-rendering: optimizeLegibility; } -#xXxprefixXx0 .plot-title { +#_sample_helper_static_id_prefix_0 .plot-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-x { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-x { fill: #303030; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-y { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-y { fill: #303030; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-text { +#_sample_helper_static_id_prefix_2 .tooltip-text { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-title { +#_sample_helper_static_id_prefix_2 .tooltip-title { fill: #bbbbbb; font-weight: bold; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-label { +#_sample_helper_static_id_prefix_2 .tooltip-label { fill: #bbbbbb; font-weight: bold; font-style: normal;font-family: sans-serif; @@ -129,7 +129,7 @@ font-size: 13.0px; } - + @@ -147,7 +147,7 @@ font-size: 13.0px; - + @@ -355,7 +355,7 @@ font-size: 13.0px; - + @@ -415,6 +415,6 @@ font-size: 13.0px; - + \ No newline at end of file diff --git a/docs/images/samples/geo/usa_adjusted.svg b/docs/images/samples/geo/usa_adjusted.svg index e2aaec230..395ef5d12 100644 --- a/docs/images/samples/geo/usa_adjusted.svg +++ b/docs/images/samples/geo/usa_adjusted.svg @@ -10,117 +10,117 @@ text { text-rendering: optimizeLegibility; } -#xXxprefixXx0 .plot-title { +#_sample_helper_static_id_prefix_0 .plot-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-x { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-x { fill: #ffffff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-y { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-y { fill: #ffffff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-text { +#_sample_helper_static_id_prefix_2 .tooltip-text { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-title { +#_sample_helper_static_id_prefix_2 .tooltip-title { fill: #474747; font-weight: bold; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-label { +#_sample_helper_static_id_prefix_2 .tooltip-label { fill: #474747; font-weight: bold; font-style: normal;font-family: sans-serif; @@ -129,7 +129,7 @@ font-size: 13.0px; } - + @@ -171,7 +171,7 @@ font-size: 13.0px; - + @@ -387,7 +387,7 @@ font-size: 13.0px; - + @@ -527,6 +527,6 @@ font-size: 13.0px; - + \ No newline at end of file diff --git a/docs/images/samples/geo/usa_adjusted_dark.svg b/docs/images/samples/geo/usa_adjusted_dark.svg index 3f0c3fedb..2e2952037 100644 --- a/docs/images/samples/geo/usa_adjusted_dark.svg +++ b/docs/images/samples/geo/usa_adjusted_dark.svg @@ -10,117 +10,117 @@ text { text-rendering: optimizeLegibility; } -#xXxprefixXx0 .plot-title { +#_sample_helper_static_id_prefix_0 .plot-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-x { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-x { fill: #303030; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-y { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-y { fill: #303030; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-text { +#_sample_helper_static_id_prefix_2 .tooltip-text { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-title { +#_sample_helper_static_id_prefix_2 .tooltip-title { fill: #bbbbbb; font-weight: bold; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-label { +#_sample_helper_static_id_prefix_2 .tooltip-label { fill: #bbbbbb; font-weight: bold; font-style: normal;font-family: sans-serif; @@ -129,7 +129,7 @@ font-size: 13.0px; } - + @@ -289,7 +289,7 @@ font-size: 13.0px; - + @@ -505,7 +505,7 @@ font-size: 13.0px; - + @@ -527,6 +527,6 @@ font-size: 13.0px; - + \ No newline at end of file diff --git a/docs/images/samples/geo/usa_conus_albers.svg b/docs/images/samples/geo/usa_conus_albers.svg index cb9c96ffe..1383210ea 100644 --- a/docs/images/samples/geo/usa_conus_albers.svg +++ b/docs/images/samples/geo/usa_conus_albers.svg @@ -10,117 +10,117 @@ text { text-rendering: optimizeLegibility; } -#xXxprefixXx0 .plot-title { +#_sample_helper_static_id_prefix_0 .plot-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-x { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-x { fill: #ffffff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-y { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-y { fill: #ffffff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-text { +#_sample_helper_static_id_prefix_2 .tooltip-text { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-title { +#_sample_helper_static_id_prefix_2 .tooltip-title { fill: #474747; font-weight: bold; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-label { +#_sample_helper_static_id_prefix_2 .tooltip-label { fill: #474747; font-weight: bold; font-style: normal;font-family: sans-serif; @@ -129,7 +129,7 @@ font-size: 13.0px; } - + @@ -175,7 +175,7 @@ font-size: 13.0px; - + @@ -379,7 +379,7 @@ font-size: 13.0px; - + @@ -544,6 +544,6 @@ font-size: 13.0px; - + \ No newline at end of file diff --git a/docs/images/samples/geo/usa_conus_albers_dark.svg b/docs/images/samples/geo/usa_conus_albers_dark.svg index ba9736e18..c95d6f1d7 100644 --- a/docs/images/samples/geo/usa_conus_albers_dark.svg +++ b/docs/images/samples/geo/usa_conus_albers_dark.svg @@ -10,117 +10,117 @@ text { text-rendering: optimizeLegibility; } -#xXxprefixXx0 .plot-title { +#_sample_helper_static_id_prefix_0 .plot-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-x { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-x { fill: #303030; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-y { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-y { fill: #303030; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-text { +#_sample_helper_static_id_prefix_2 .tooltip-text { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-title { +#_sample_helper_static_id_prefix_2 .tooltip-title { fill: #bbbbbb; font-weight: bold; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-label { +#_sample_helper_static_id_prefix_2 .tooltip-label { fill: #bbbbbb; font-weight: bold; font-style: normal;font-family: sans-serif; @@ -129,7 +129,7 @@ font-size: 13.0px; } - + @@ -313,7 +313,7 @@ font-size: 13.0px; - + @@ -517,7 +517,7 @@ font-size: 13.0px; - + @@ -544,6 +544,6 @@ font-size: 13.0px; - + \ No newline at end of file diff --git a/docs/images/samples/geo/usa_election_results_joined.svg b/docs/images/samples/geo/usa_election_results_joined.svg index c1459f5ed..86f7fecea 100644 --- a/docs/images/samples/geo/usa_election_results_joined.svg +++ b/docs/images/samples/geo/usa_election_results_joined.svg @@ -10,117 +10,117 @@ text { text-rendering: optimizeLegibility; } -#xXxprefixXx0 .plot-title { +#_sample_helper_static_id_prefix_0 .plot-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-x { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-x { fill: #ffffff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-y { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-y { fill: #ffffff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-text { +#_sample_helper_static_id_prefix_2 .tooltip-text { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-title { +#_sample_helper_static_id_prefix_2 .tooltip-title { fill: #474747; font-weight: bold; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-label { +#_sample_helper_static_id_prefix_2 .tooltip-label { fill: #474747; font-weight: bold; font-style: normal;font-family: sans-serif; @@ -129,7 +129,7 @@ font-size: 13.0px; } - + @@ -147,7 +147,7 @@ font-size: 13.0px; - + @@ -355,7 +355,7 @@ font-size: 13.0px; - + @@ -415,6 +415,6 @@ font-size: 13.0px; - + \ No newline at end of file diff --git a/docs/images/samples/geo/usa_election_results_joined_dark.svg b/docs/images/samples/geo/usa_election_results_joined_dark.svg index 9aea8f426..aa2ba42cd 100644 --- a/docs/images/samples/geo/usa_election_results_joined_dark.svg +++ b/docs/images/samples/geo/usa_election_results_joined_dark.svg @@ -10,117 +10,117 @@ text { text-rendering: optimizeLegibility; } -#xXxprefixXx0 .plot-title { +#_sample_helper_static_id_prefix_0 .plot-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-x { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-x { fill: #303030; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-y { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-y { fill: #303030; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-text { +#_sample_helper_static_id_prefix_2 .tooltip-text { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-title { +#_sample_helper_static_id_prefix_2 .tooltip-title { fill: #bbbbbb; font-weight: bold; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-label { +#_sample_helper_static_id_prefix_2 .tooltip-label { fill: #bbbbbb; font-weight: bold; font-style: normal;font-family: sans-serif; @@ -129,7 +129,7 @@ font-size: 13.0px; } - + @@ -147,7 +147,7 @@ font-size: 13.0px; - + @@ -355,7 +355,7 @@ font-size: 13.0px; - + @@ -415,6 +415,6 @@ font-size: 13.0px; - + \ No newline at end of file diff --git a/docs/images/samples/geo/usa_simple_poly_json.svg b/docs/images/samples/geo/usa_simple_poly_json.svg index 448433e29..c9b8e9272 100644 --- a/docs/images/samples/geo/usa_simple_poly_json.svg +++ b/docs/images/samples/geo/usa_simple_poly_json.svg @@ -10,117 +10,117 @@ text { text-rendering: optimizeLegibility; } -#xXxprefixXx0 .plot-title { +#_sample_helper_static_id_prefix_0 .plot-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-x { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-x { fill: #ffffff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-y { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-y { fill: #ffffff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-text { +#_sample_helper_static_id_prefix_2 .tooltip-text { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-title { +#_sample_helper_static_id_prefix_2 .tooltip-title { fill: #474747; font-weight: bold; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-label { +#_sample_helper_static_id_prefix_2 .tooltip-label { fill: #474747; font-weight: bold; font-style: normal;font-family: sans-serif; @@ -129,7 +129,7 @@ font-size: 13.0px; } - + @@ -179,7 +179,7 @@ font-size: 13.0px; - + @@ -395,7 +395,7 @@ font-size: 13.0px; - + @@ -563,6 +563,6 @@ font-size: 13.0px; - + \ No newline at end of file diff --git a/docs/images/samples/geo/usa_simple_poly_json_dark.svg b/docs/images/samples/geo/usa_simple_poly_json_dark.svg index c2a5aa7db..3c5da09ef 100644 --- a/docs/images/samples/geo/usa_simple_poly_json_dark.svg +++ b/docs/images/samples/geo/usa_simple_poly_json_dark.svg @@ -10,117 +10,117 @@ text { text-rendering: optimizeLegibility; } -#xXxprefixXx0 .plot-title { +#_sample_helper_static_id_prefix_0 .plot-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-x { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-x { fill: #303030; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-y { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-y { fill: #303030; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-text { +#_sample_helper_static_id_prefix_2 .tooltip-text { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-title { +#_sample_helper_static_id_prefix_2 .tooltip-title { fill: #bbbbbb; font-weight: bold; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-label { +#_sample_helper_static_id_prefix_2 .tooltip-label { fill: #bbbbbb; font-weight: bold; font-style: normal;font-family: sans-serif; @@ -129,7 +129,7 @@ font-size: 13.0px; } - + @@ -325,7 +325,7 @@ font-size: 13.0px; - + @@ -541,7 +541,7 @@ font-size: 13.0px; - + @@ -563,6 +563,6 @@ font-size: 13.0px; - + \ No newline at end of file diff --git a/docs/images/samples/geo/usa_with_cities.svg b/docs/images/samples/geo/usa_with_cities.svg index 69fcc46a4..2deb3708a 100644 --- a/docs/images/samples/geo/usa_with_cities.svg +++ b/docs/images/samples/geo/usa_with_cities.svg @@ -10,117 +10,117 @@ text { text-rendering: optimizeLegibility; } -#xXxprefixXx0 .plot-title { +#_sample_helper_static_id_prefix_0 .plot-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx3 .axis-tooltip-text-x { +#_sample_helper_static_id_prefix_3 .axis-tooltip-text-x { fill: #ffffff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx3 .axis-tooltip-text-y { +#_sample_helper_static_id_prefix_3 .axis-tooltip-text-y { fill: #ffffff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx3 .tooltip-text { +#_sample_helper_static_id_prefix_3 .tooltip-text { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx3 .tooltip-title { +#_sample_helper_static_id_prefix_3 .tooltip-title { fill: #474747; font-weight: bold; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx3 .tooltip-label { +#_sample_helper_static_id_prefix_3 .tooltip-label { fill: #474747; font-weight: bold; font-style: normal;font-family: sans-serif; @@ -129,7 +129,7 @@ font-size: 13.0px; } - + @@ -147,7 +147,7 @@ font-size: 13.0px; - + @@ -387,13 +387,13 @@ font-size: 13.0px; - + - + @@ -405,6 +405,6 @@ font-size: 13.0px; - + \ No newline at end of file diff --git a/docs/images/samples/geo/usa_with_cities_dark.svg b/docs/images/samples/geo/usa_with_cities_dark.svg index 35608b3d1..da788fd59 100644 --- a/docs/images/samples/geo/usa_with_cities_dark.svg +++ b/docs/images/samples/geo/usa_with_cities_dark.svg @@ -10,117 +10,117 @@ text { text-rendering: optimizeLegibility; } -#xXxprefixXx0 .plot-title { +#_sample_helper_static_id_prefix_0 .plot-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx3 .axis-tooltip-text-x { +#_sample_helper_static_id_prefix_3 .axis-tooltip-text-x { fill: #303030; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx3 .axis-tooltip-text-y { +#_sample_helper_static_id_prefix_3 .axis-tooltip-text-y { fill: #303030; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx3 .tooltip-text { +#_sample_helper_static_id_prefix_3 .tooltip-text { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx3 .tooltip-title { +#_sample_helper_static_id_prefix_3 .tooltip-title { fill: #bbbbbb; font-weight: bold; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx3 .tooltip-label { +#_sample_helper_static_id_prefix_3 .tooltip-label { fill: #bbbbbb; font-weight: bold; font-style: normal;font-family: sans-serif; @@ -129,7 +129,7 @@ font-size: 13.0px; } - + @@ -147,7 +147,7 @@ font-size: 13.0px; - + @@ -387,13 +387,13 @@ font-size: 13.0px; - + - + @@ -405,6 +405,6 @@ font-size: 13.0px; - + \ No newline at end of file diff --git a/docs/images/samples/heatmap/heatmap_settings.svg b/docs/images/samples/heatmap/heatmap_settings.svg index f17158770..ed9162b5a 100644 --- a/docs/images/samples/heatmap/heatmap_settings.svg +++ b/docs/images/samples/heatmap/heatmap_settings.svg @@ -10,117 +10,117 @@ text { text-rendering: optimizeLegibility; } -#xXxprefixXx0 .plot-title { +#_sample_helper_static_id_prefix_0 .plot-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-x { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-x { fill: #ffffff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-y { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-y { fill: #ffffff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-text { +#_sample_helper_static_id_prefix_2 .tooltip-text { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-title { +#_sample_helper_static_id_prefix_2 .tooltip-title { fill: #474747; font-weight: bold; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-label { +#_sample_helper_static_id_prefix_2 .tooltip-label { fill: #474747; font-weight: bold; font-style: normal;font-family: sans-serif; @@ -129,7 +129,7 @@ font-size: 13.0px; } - + @@ -157,7 +157,7 @@ font-size: 13.0px; - + @@ -179,7 +179,7 @@ font-size: 13.0px; - + @@ -358,6 +358,6 @@ font-size: 13.0px; - + \ No newline at end of file diff --git a/docs/images/samples/heatmap/heatmap_settings_dark.svg b/docs/images/samples/heatmap/heatmap_settings_dark.svg index a1cead27b..6238a22ac 100644 --- a/docs/images/samples/heatmap/heatmap_settings_dark.svg +++ b/docs/images/samples/heatmap/heatmap_settings_dark.svg @@ -10,117 +10,117 @@ text { text-rendering: optimizeLegibility; } -#xXxprefixXx0 .plot-title { +#_sample_helper_static_id_prefix_0 .plot-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-x { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-x { fill: #303030; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-y { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-y { fill: #303030; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-text { +#_sample_helper_static_id_prefix_2 .tooltip-text { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-title { +#_sample_helper_static_id_prefix_2 .tooltip-title { fill: #bbbbbb; font-weight: bold; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-label { +#_sample_helper_static_id_prefix_2 .tooltip-label { fill: #bbbbbb; font-weight: bold; font-style: normal;font-family: sans-serif; @@ -129,7 +129,7 @@ font-size: 13.0px; } - + @@ -220,7 +220,7 @@ font-size: 13.0px; - + @@ -242,7 +242,7 @@ font-size: 13.0px; - + @@ -358,6 +358,6 @@ font-size: 13.0px; - + \ No newline at end of file diff --git a/docs/images/samples/heatmap/heatmap_simple.svg b/docs/images/samples/heatmap/heatmap_simple.svg index e381350b7..c0a8d7778 100644 --- a/docs/images/samples/heatmap/heatmap_simple.svg +++ b/docs/images/samples/heatmap/heatmap_simple.svg @@ -10,117 +10,117 @@ text { text-rendering: optimizeLegibility; } -#xXxprefixXx0 .plot-title { +#_sample_helper_static_id_prefix_0 .plot-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-x { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-x { fill: #ffffff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-y { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-y { fill: #ffffff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-text { +#_sample_helper_static_id_prefix_2 .tooltip-text { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-title { +#_sample_helper_static_id_prefix_2 .tooltip-title { fill: #474747; font-weight: bold; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-label { +#_sample_helper_static_id_prefix_2 .tooltip-label { fill: #474747; font-weight: bold; font-style: normal;font-family: sans-serif; @@ -129,7 +129,7 @@ font-size: 13.0px; } - + @@ -163,7 +163,7 @@ font-size: 13.0px; - + @@ -196,7 +196,7 @@ font-size: 13.0px; - + @@ -399,6 +399,6 @@ font-size: 13.0px; - + \ No newline at end of file diff --git a/docs/images/samples/heatmap/heatmap_simple_dark.svg b/docs/images/samples/heatmap/heatmap_simple_dark.svg index 212f8d5d8..c45262fab 100644 --- a/docs/images/samples/heatmap/heatmap_simple_dark.svg +++ b/docs/images/samples/heatmap/heatmap_simple_dark.svg @@ -10,117 +10,117 @@ text { text-rendering: optimizeLegibility; } -#xXxprefixXx0 .plot-title { +#_sample_helper_static_id_prefix_0 .plot-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-x { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-x { fill: #303030; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-y { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-y { fill: #303030; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-text { +#_sample_helper_static_id_prefix_2 .tooltip-text { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-title { +#_sample_helper_static_id_prefix_2 .tooltip-title { fill: #bbbbbb; font-weight: bold; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-label { +#_sample_helper_static_id_prefix_2 .tooltip-label { fill: #bbbbbb; font-weight: bold; font-style: normal;font-family: sans-serif; @@ -129,7 +129,7 @@ font-size: 13.0px; } - + @@ -253,7 +253,7 @@ font-size: 13.0px; - + @@ -286,7 +286,7 @@ font-size: 13.0px; - + @@ -399,6 +399,6 @@ font-size: 13.0px; - + \ No newline at end of file diff --git a/docs/images/samples/histogram/histogram_grouped.svg b/docs/images/samples/histogram/histogram_grouped.svg index fef99b6b2..9e0a29cc1 100644 --- a/docs/images/samples/histogram/histogram_grouped.svg +++ b/docs/images/samples/histogram/histogram_grouped.svg @@ -10,117 +10,117 @@ text { text-rendering: optimizeLegibility; } -#xXxprefixXx0 .plot-title { +#_sample_helper_static_id_prefix_0 .plot-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-x { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-x { fill: #ffffff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-y { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-y { fill: #ffffff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-text { +#_sample_helper_static_id_prefix_2 .tooltip-text { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-title { +#_sample_helper_static_id_prefix_2 .tooltip-title { fill: #474747; font-weight: bold; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-label { +#_sample_helper_static_id_prefix_2 .tooltip-label { fill: #474747; font-weight: bold; font-style: normal;font-family: sans-serif; @@ -129,7 +129,7 @@ font-size: 13.0px; } - + @@ -175,7 +175,7 @@ font-size: 13.0px; - + @@ -263,7 +263,7 @@ font-size: 13.0px; - + @@ -466,6 +466,6 @@ font-size: 13.0px; - + \ No newline at end of file diff --git a/docs/images/samples/histogram/histogram_grouped_dark.svg b/docs/images/samples/histogram/histogram_grouped_dark.svg index 6c9611f30..3c619745a 100644 --- a/docs/images/samples/histogram/histogram_grouped_dark.svg +++ b/docs/images/samples/histogram/histogram_grouped_dark.svg @@ -10,117 +10,117 @@ text { text-rendering: optimizeLegibility; } -#xXxprefixXx0 .plot-title { +#_sample_helper_static_id_prefix_0 .plot-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-x { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-x { fill: #303030; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-y { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-y { fill: #303030; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-text { +#_sample_helper_static_id_prefix_2 .tooltip-text { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-title { +#_sample_helper_static_id_prefix_2 .tooltip-title { fill: #bbbbbb; font-weight: bold; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-label { +#_sample_helper_static_id_prefix_2 .tooltip-label { fill: #bbbbbb; font-weight: bold; font-style: normal;font-family: sans-serif; @@ -129,7 +129,7 @@ font-size: 13.0px; } - + @@ -313,7 +313,7 @@ font-size: 13.0px; - + @@ -401,7 +401,7 @@ font-size: 13.0px; - + @@ -466,6 +466,6 @@ font-size: 13.0px; - + \ No newline at end of file diff --git a/docs/images/samples/histogram/histogram_settings.svg b/docs/images/samples/histogram/histogram_settings.svg index cb4491cc0..d3651d1cb 100644 --- a/docs/images/samples/histogram/histogram_settings.svg +++ b/docs/images/samples/histogram/histogram_settings.svg @@ -10,117 +10,117 @@ text { text-rendering: optimizeLegibility; } -#xXxprefixXx0 .plot-title { +#_sample_helper_static_id_prefix_0 .plot-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-x { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-x { fill: #ffffff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-y { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-y { fill: #ffffff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-text { +#_sample_helper_static_id_prefix_2 .tooltip-text { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-title { +#_sample_helper_static_id_prefix_2 .tooltip-title { fill: #474747; font-weight: bold; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-label { +#_sample_helper_static_id_prefix_2 .tooltip-label { fill: #474747; font-weight: bold; font-style: normal;font-family: sans-serif; @@ -129,7 +129,7 @@ font-size: 13.0px; } - + @@ -179,7 +179,7 @@ font-size: 13.0px; - + @@ -211,7 +211,7 @@ font-size: 13.0px; - + @@ -392,6 +392,6 @@ font-size: 13.0px; - + \ No newline at end of file diff --git a/docs/images/samples/histogram/histogram_settings_dark.svg b/docs/images/samples/histogram/histogram_settings_dark.svg index 61ad12583..f149c2034 100644 --- a/docs/images/samples/histogram/histogram_settings_dark.svg +++ b/docs/images/samples/histogram/histogram_settings_dark.svg @@ -10,117 +10,117 @@ text { text-rendering: optimizeLegibility; } -#xXxprefixXx0 .plot-title { +#_sample_helper_static_id_prefix_0 .plot-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-x { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-x { fill: #303030; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-y { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-y { fill: #303030; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-text { +#_sample_helper_static_id_prefix_2 .tooltip-text { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-title { +#_sample_helper_static_id_prefix_2 .tooltip-title { fill: #bbbbbb; font-weight: bold; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-label { +#_sample_helper_static_id_prefix_2 .tooltip-label { fill: #bbbbbb; font-weight: bold; font-style: normal;font-family: sans-serif; @@ -129,7 +129,7 @@ font-size: 13.0px; } - + @@ -333,7 +333,7 @@ font-size: 13.0px; - + @@ -365,7 +365,7 @@ font-size: 13.0px; - + @@ -392,6 +392,6 @@ font-size: 13.0px; - + \ No newline at end of file diff --git a/docs/images/samples/histogram/histogram_simple.svg b/docs/images/samples/histogram/histogram_simple.svg index d25e2928a..642c5ace5 100644 --- a/docs/images/samples/histogram/histogram_simple.svg +++ b/docs/images/samples/histogram/histogram_simple.svg @@ -10,117 +10,117 @@ text { text-rendering: optimizeLegibility; } -#xXxprefixXx0 .plot-title { +#_sample_helper_static_id_prefix_0 .plot-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-x { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-x { fill: #ffffff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-y { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-y { fill: #ffffff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-text { +#_sample_helper_static_id_prefix_2 .tooltip-text { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-title { +#_sample_helper_static_id_prefix_2 .tooltip-title { fill: #474747; font-weight: bold; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-label { +#_sample_helper_static_id_prefix_2 .tooltip-label { fill: #474747; font-weight: bold; font-style: normal;font-family: sans-serif; @@ -129,7 +129,7 @@ font-size: 13.0px; } - + @@ -171,7 +171,7 @@ font-size: 13.0px; - + @@ -219,7 +219,7 @@ font-size: 13.0px; - + @@ -359,6 +359,6 @@ font-size: 13.0px; - + \ No newline at end of file diff --git a/docs/images/samples/histogram/histogram_simple_dark.svg b/docs/images/samples/histogram/histogram_simple_dark.svg index 27ff511ff..1d123ae4d 100644 --- a/docs/images/samples/histogram/histogram_simple_dark.svg +++ b/docs/images/samples/histogram/histogram_simple_dark.svg @@ -10,117 +10,117 @@ text { text-rendering: optimizeLegibility; } -#xXxprefixXx0 .plot-title { +#_sample_helper_static_id_prefix_0 .plot-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-x { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-x { fill: #303030; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-y { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-y { fill: #303030; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-text { +#_sample_helper_static_id_prefix_2 .tooltip-text { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-title { +#_sample_helper_static_id_prefix_2 .tooltip-title { fill: #bbbbbb; font-weight: bold; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-label { +#_sample_helper_static_id_prefix_2 .tooltip-label { fill: #bbbbbb; font-weight: bold; font-style: normal;font-family: sans-serif; @@ -129,7 +129,7 @@ font-size: 13.0px; } - + @@ -289,7 +289,7 @@ font-size: 13.0px; - + @@ -337,7 +337,7 @@ font-size: 13.0px; - + @@ -359,6 +359,6 @@ font-size: 13.0px; - + \ No newline at end of file diff --git a/docs/images/samples/histogram/histogram_with_line.svg b/docs/images/samples/histogram/histogram_with_line.svg index debe9fcfe..a8809abeb 100644 --- a/docs/images/samples/histogram/histogram_with_line.svg +++ b/docs/images/samples/histogram/histogram_with_line.svg @@ -10,117 +10,117 @@ text { text-rendering: optimizeLegibility; } -#xXxprefixXx0 .plot-title { +#_sample_helper_static_id_prefix_0 .plot-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx3 .axis-tooltip-text-x { +#_sample_helper_static_id_prefix_3 .axis-tooltip-text-x { fill: #ffffff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx3 .axis-tooltip-text-y { +#_sample_helper_static_id_prefix_3 .axis-tooltip-text-y { fill: #ffffff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx3 .tooltip-text { +#_sample_helper_static_id_prefix_3 .tooltip-text { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx3 .tooltip-title { +#_sample_helper_static_id_prefix_3 .tooltip-title { fill: #474747; font-weight: bold; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx3 .tooltip-label { +#_sample_helper_static_id_prefix_3 .tooltip-label { fill: #474747; font-weight: bold; font-style: normal;font-family: sans-serif; @@ -129,7 +129,7 @@ font-size: 13.0px; } - + @@ -175,7 +175,7 @@ font-size: 13.0px; - + @@ -219,13 +219,13 @@ font-size: 13.0px; - + - + @@ -379,6 +379,6 @@ font-size: 13.0px; - + \ No newline at end of file diff --git a/docs/images/samples/histogram/histogram_with_line_dark.svg b/docs/images/samples/histogram/histogram_with_line_dark.svg index e097703d8..21cdfcde2 100644 --- a/docs/images/samples/histogram/histogram_with_line_dark.svg +++ b/docs/images/samples/histogram/histogram_with_line_dark.svg @@ -10,117 +10,117 @@ text { text-rendering: optimizeLegibility; } -#xXxprefixXx0 .plot-title { +#_sample_helper_static_id_prefix_0 .plot-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx3 .axis-tooltip-text-x { +#_sample_helper_static_id_prefix_3 .axis-tooltip-text-x { fill: #303030; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx3 .axis-tooltip-text-y { +#_sample_helper_static_id_prefix_3 .axis-tooltip-text-y { fill: #303030; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx3 .tooltip-text { +#_sample_helper_static_id_prefix_3 .tooltip-text { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx3 .tooltip-title { +#_sample_helper_static_id_prefix_3 .tooltip-title { fill: #bbbbbb; font-weight: bold; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx3 .tooltip-label { +#_sample_helper_static_id_prefix_3 .tooltip-label { fill: #bbbbbb; font-weight: bold; font-style: normal;font-family: sans-serif; @@ -129,7 +129,7 @@ font-size: 13.0px; } - + @@ -307,7 +307,7 @@ font-size: 13.0px; - + @@ -351,13 +351,13 @@ font-size: 13.0px; - + - + @@ -379,6 +379,6 @@ font-size: 13.0px; - + \ No newline at end of file diff --git a/docs/images/samples/layout/axis_and_legend_configuration.svg b/docs/images/samples/layout/axis_and_legend_configuration.svg index ae5180711..034c8859a 100644 --- a/docs/images/samples/layout/axis_and_legend_configuration.svg +++ b/docs/images/samples/layout/axis_and_legend_configuration.svg @@ -10,117 +10,117 @@ text { text-rendering: optimizeLegibility; } -#xXxprefixXx0 .plot-title { +#_sample_helper_static_id_prefix_0 .plot-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-x { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-x { fill: #ffffff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-y { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-y { fill: #ffffff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-text { +#_sample_helper_static_id_prefix_2 .tooltip-text { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-title { +#_sample_helper_static_id_prefix_2 .tooltip-title { fill: #474747; font-weight: bold; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-label { +#_sample_helper_static_id_prefix_2 .tooltip-label { fill: #474747; font-weight: bold; font-style: normal;font-family: sans-serif; @@ -129,7 +129,7 @@ font-size: 13.0px; } - + @@ -163,7 +163,7 @@ font-size: 13.0px; - + @@ -409,7 +409,7 @@ font-size: 13.0px; - + @@ -689,6 +689,6 @@ font-size: 13.0px; - + \ No newline at end of file diff --git a/docs/images/samples/layout/axis_and_legend_configuration_dark.svg b/docs/images/samples/layout/axis_and_legend_configuration_dark.svg index 5f8f3a5fd..900066def 100644 --- a/docs/images/samples/layout/axis_and_legend_configuration_dark.svg +++ b/docs/images/samples/layout/axis_and_legend_configuration_dark.svg @@ -10,117 +10,117 @@ text { text-rendering: optimizeLegibility; } -#xXxprefixXx0 .plot-title { +#_sample_helper_static_id_prefix_0 .plot-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-x { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-x { fill: #303030; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-y { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-y { fill: #303030; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-text { +#_sample_helper_static_id_prefix_2 .tooltip-text { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-title { +#_sample_helper_static_id_prefix_2 .tooltip-title { fill: #bbbbbb; font-weight: bold; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-label { +#_sample_helper_static_id_prefix_2 .tooltip-label { fill: #bbbbbb; font-weight: bold; font-style: normal;font-family: sans-serif; @@ -129,7 +129,7 @@ font-size: 13.0px; } - + @@ -251,7 +251,7 @@ font-size: 13.0px; - + @@ -497,7 +497,7 @@ font-size: 13.0px; - + @@ -689,6 +689,6 @@ font-size: 13.0px; - + \ No newline at end of file diff --git a/docs/images/samples/layout/base_layout_settings.svg b/docs/images/samples/layout/base_layout_settings.svg index be8a19151..13745b17e 100644 --- a/docs/images/samples/layout/base_layout_settings.svg +++ b/docs/images/samples/layout/base_layout_settings.svg @@ -10,117 +10,117 @@ text { text-rendering: optimizeLegibility; } -#xXxprefixXx0 .plot-title { +#_sample_helper_static_id_prefix_0 .plot-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-x { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-x { fill: #ffffff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-y { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-y { fill: #ffffff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-text { +#_sample_helper_static_id_prefix_2 .tooltip-text { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-title { +#_sample_helper_static_id_prefix_2 .tooltip-title { fill: #474747; font-weight: bold; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-label { +#_sample_helper_static_id_prefix_2 .tooltip-label { fill: #474747; font-weight: bold; font-style: normal;font-family: sans-serif; @@ -129,7 +129,7 @@ font-size: 13.0px; } - + @@ -169,7 +169,7 @@ font-size: 13.0px; - + @@ -181,7 +181,7 @@ font-size: 13.0px; - + @@ -323,6 +323,6 @@ font-size: 13.0px; - + \ No newline at end of file diff --git a/docs/images/samples/layout/base_layout_settings_dark.svg b/docs/images/samples/layout/base_layout_settings_dark.svg index 85c1e45b0..7b54f300e 100644 --- a/docs/images/samples/layout/base_layout_settings_dark.svg +++ b/docs/images/samples/layout/base_layout_settings_dark.svg @@ -10,117 +10,117 @@ text { text-rendering: optimizeLegibility; } -#xXxprefixXx0 .plot-title { +#_sample_helper_static_id_prefix_0 .plot-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-x { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-x { fill: #303030; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-y { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-y { fill: #303030; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-text { +#_sample_helper_static_id_prefix_2 .tooltip-text { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-title { +#_sample_helper_static_id_prefix_2 .tooltip-title { fill: #bbbbbb; font-weight: bold; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-label { +#_sample_helper_static_id_prefix_2 .tooltip-label { fill: #bbbbbb; font-weight: bold; font-style: normal;font-family: sans-serif; @@ -129,7 +129,7 @@ font-size: 13.0px; } - + @@ -284,7 +284,7 @@ font-size: 13.0px; - + @@ -296,7 +296,7 @@ font-size: 13.0px; - + @@ -323,6 +323,6 @@ font-size: 13.0px; - + \ No newline at end of file diff --git a/docs/images/samples/layout/preview_base_layout_settings.svg b/docs/images/samples/layout/preview_base_layout_settings.svg index 1b8db547c..3cd73eb60 100644 --- a/docs/images/samples/layout/preview_base_layout_settings.svg +++ b/docs/images/samples/layout/preview_base_layout_settings.svg @@ -10,117 +10,117 @@ text { text-rendering: optimizeLegibility; } -#xXxprefixXx0 .plot-title { +#_sample_helper_static_id_prefix_0 .plot-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-x { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-x { fill: #ffffff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-y { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-y { fill: #ffffff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-text { +#_sample_helper_static_id_prefix_2 .tooltip-text { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-title { +#_sample_helper_static_id_prefix_2 .tooltip-title { fill: #474747; font-weight: bold; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-label { +#_sample_helper_static_id_prefix_2 .tooltip-label { fill: #474747; font-weight: bold; font-style: normal;font-family: sans-serif; @@ -129,7 +129,7 @@ font-size: 13.0px; } - + @@ -175,7 +175,7 @@ font-size: 13.0px; - + @@ -187,7 +187,7 @@ font-size: 13.0px; - + @@ -350,6 +350,6 @@ font-size: 13.0px; - + \ No newline at end of file diff --git a/docs/images/samples/layout/preview_base_layout_settings_dark.svg b/docs/images/samples/layout/preview_base_layout_settings_dark.svg index 28a897bed..507e4e290 100644 --- a/docs/images/samples/layout/preview_base_layout_settings_dark.svg +++ b/docs/images/samples/layout/preview_base_layout_settings_dark.svg @@ -10,117 +10,117 @@ text { text-rendering: optimizeLegibility; } -#xXxprefixXx0 .plot-title { +#_sample_helper_static_id_prefix_0 .plot-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-x { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-x { fill: #303030; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-y { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-y { fill: #303030; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-text { +#_sample_helper_static_id_prefix_2 .tooltip-text { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-title { +#_sample_helper_static_id_prefix_2 .tooltip-title { fill: #bbbbbb; font-weight: bold; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-label { +#_sample_helper_static_id_prefix_2 .tooltip-label { fill: #bbbbbb; font-weight: bold; font-style: normal;font-family: sans-serif; @@ -129,7 +129,7 @@ font-size: 13.0px; } - + @@ -311,7 +311,7 @@ font-size: 13.0px; - + @@ -323,7 +323,7 @@ font-size: 13.0px; - + @@ -350,6 +350,6 @@ font-size: 13.0px; - + \ No newline at end of file diff --git a/docs/images/samples/layout/preview_subtitle_and_caption.svg b/docs/images/samples/layout/preview_subtitle_and_caption.svg index e1ce38a96..a0a10c17f 100644 --- a/docs/images/samples/layout/preview_subtitle_and_caption.svg +++ b/docs/images/samples/layout/preview_subtitle_and_caption.svg @@ -10,117 +10,117 @@ text { text-rendering: optimizeLegibility; } -#xXxprefixXx0 .plot-title { +#_sample_helper_static_id_prefix_0 .plot-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-x { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-x { fill: #ffffff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-y { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-y { fill: #ffffff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-text { +#_sample_helper_static_id_prefix_2 .tooltip-text { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-title { +#_sample_helper_static_id_prefix_2 .tooltip-title { fill: #474747; font-weight: bold; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-label { +#_sample_helper_static_id_prefix_2 .tooltip-label { fill: #474747; font-weight: bold; font-style: normal;font-family: sans-serif; @@ -129,7 +129,7 @@ font-size: 13.0px; } - + @@ -161,7 +161,7 @@ font-size: 13.0px; - + @@ -179,7 +179,7 @@ font-size: 13.0px; - + @@ -298,6 +298,6 @@ font-size: 13.0px; - + \ No newline at end of file diff --git a/docs/images/samples/layout/preview_subtitle_and_caption_dark.svg b/docs/images/samples/layout/preview_subtitle_and_caption_dark.svg index 9a04b6305..9fd624fa5 100644 --- a/docs/images/samples/layout/preview_subtitle_and_caption_dark.svg +++ b/docs/images/samples/layout/preview_subtitle_and_caption_dark.svg @@ -10,117 +10,117 @@ text { text-rendering: optimizeLegibility; } -#xXxprefixXx0 .plot-title { +#_sample_helper_static_id_prefix_0 .plot-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-x { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-x { fill: #303030; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-y { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-y { fill: #303030; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-text { +#_sample_helper_static_id_prefix_2 .tooltip-text { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-title { +#_sample_helper_static_id_prefix_2 .tooltip-title { fill: #bbbbbb; font-weight: bold; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-label { +#_sample_helper_static_id_prefix_2 .tooltip-label { fill: #bbbbbb; font-weight: bold; font-style: normal;font-family: sans-serif; @@ -129,7 +129,7 @@ font-size: 13.0px; } - + @@ -240,7 +240,7 @@ font-size: 13.0px; - + @@ -258,7 +258,7 @@ font-size: 13.0px; - + @@ -298,6 +298,6 @@ font-size: 13.0px; - + \ No newline at end of file diff --git a/docs/images/samples/layout/subtitle_and_caption.svg b/docs/images/samples/layout/subtitle_and_caption.svg index 570598202..718393ad8 100644 --- a/docs/images/samples/layout/subtitle_and_caption.svg +++ b/docs/images/samples/layout/subtitle_and_caption.svg @@ -10,117 +10,117 @@ text { text-rendering: optimizeLegibility; } -#xXxprefixXx0 .plot-title { +#_sample_helper_static_id_prefix_0 .plot-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-x { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-x { fill: #ffffff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-y { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-y { fill: #ffffff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-text { +#_sample_helper_static_id_prefix_2 .tooltip-text { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-title { +#_sample_helper_static_id_prefix_2 .tooltip-title { fill: #474747; font-weight: bold; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-label { +#_sample_helper_static_id_prefix_2 .tooltip-label { fill: #474747; font-weight: bold; font-style: normal;font-family: sans-serif; @@ -129,7 +129,7 @@ font-size: 13.0px; } - + @@ -161,7 +161,7 @@ font-size: 13.0px; - + @@ -179,7 +179,7 @@ font-size: 13.0px; - + @@ -298,6 +298,6 @@ font-size: 13.0px; - + \ No newline at end of file diff --git a/docs/images/samples/layout/subtitle_and_caption_dark.svg b/docs/images/samples/layout/subtitle_and_caption_dark.svg index 4720cb927..c2949ef45 100644 --- a/docs/images/samples/layout/subtitle_and_caption_dark.svg +++ b/docs/images/samples/layout/subtitle_and_caption_dark.svg @@ -10,117 +10,117 @@ text { text-rendering: optimizeLegibility; } -#xXxprefixXx0 .plot-title { +#_sample_helper_static_id_prefix_0 .plot-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-x { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-x { fill: #303030; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-y { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-y { fill: #303030; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-text { +#_sample_helper_static_id_prefix_2 .tooltip-text { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-title { +#_sample_helper_static_id_prefix_2 .tooltip-title { fill: #bbbbbb; font-weight: bold; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-label { +#_sample_helper_static_id_prefix_2 .tooltip-label { fill: #bbbbbb; font-weight: bold; font-style: normal;font-family: sans-serif; @@ -129,7 +129,7 @@ font-size: 13.0px; } - + @@ -240,7 +240,7 @@ font-size: 13.0px; - + @@ -258,7 +258,7 @@ font-size: 13.0px; - + @@ -298,6 +298,6 @@ font-size: 13.0px; - + \ No newline at end of file diff --git a/docs/images/samples/line/line_and_path_comp_2.svg b/docs/images/samples/line/line_and_path_comp_2.svg index 714c3577b..0a7b14cc1 100644 --- a/docs/images/samples/line/line_and_path_comp_2.svg +++ b/docs/images/samples/line/line_and_path_comp_2.svg @@ -10,54 +10,54 @@ text { text-rendering: optimizeLegibility; } -#xXxprefixXx0 .plot-title { +#_sample_helper_static_id_prefix_0 .plot-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; @@ -71,14 +71,14 @@ font-weight: normal; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; @@ -92,14 +92,14 @@ font-weight: normal; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; @@ -129,7 +129,7 @@ font-size: 13.0px; } - + @@ -145,117 +145,117 @@ font-size: 13.0px; text { text-rendering: optimizeLegibility; } -#xXxprefixXx1 .plot-title { +#_sample_helper_static_id_prefix_1 .plot-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx1 .plot-subtitle { +#_sample_helper_static_id_prefix_1 .plot-subtitle { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx1 .plot-caption { +#_sample_helper_static_id_prefix_1 .plot-caption { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx1 .hyperlink-element { +#_sample_helper_static_id_prefix_1 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx1 .legend-title { +#_sample_helper_static_id_prefix_1 .legend-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx1 .legend-item { +#_sample_helper_static_id_prefix_1 .legend-item { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx1 .axis-title-x { +#_sample_helper_static_id_prefix_1 .axis-title-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx1 .axis-text-x { +#_sample_helper_static_id_prefix_1 .axis-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx3 .axis-tooltip-text-x { +#_sample_helper_static_id_prefix_3 .axis-tooltip-text-x { fill: #ffffff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx1 .axis-title-y { +#_sample_helper_static_id_prefix_1 .axis-title-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx1 .axis-text-y { +#_sample_helper_static_id_prefix_1 .axis-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx3 .axis-tooltip-text-y { +#_sample_helper_static_id_prefix_3 .axis-tooltip-text-y { fill: #ffffff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx1 .facet-strip-text-x { +#_sample_helper_static_id_prefix_1 .facet-strip-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx1 .facet-strip-text-y { +#_sample_helper_static_id_prefix_1 .facet-strip-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx3 .tooltip-text { +#_sample_helper_static_id_prefix_3 .tooltip-text { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx3 .tooltip-title { +#_sample_helper_static_id_prefix_3 .tooltip-title { fill: #474747; font-weight: bold; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx3 .tooltip-label { +#_sample_helper_static_id_prefix_3 .tooltip-label { fill: #474747; font-weight: bold; font-style: normal;font-family: sans-serif; @@ -264,7 +264,7 @@ font-size: 13.0px; } - + @@ -292,7 +292,7 @@ font-size: 13.0px; - + @@ -304,7 +304,7 @@ font-size: 13.0px; - + @@ -394,7 +394,7 @@ font-size: 13.0px; - + @@ -409,117 +409,117 @@ font-size: 13.0px; text { text-rendering: optimizeLegibility; } -#xXxprefixXx4 .plot-title { +#_sample_helper_static_id_prefix_4 .plot-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx4 .plot-subtitle { +#_sample_helper_static_id_prefix_4 .plot-subtitle { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx4 .plot-caption { +#_sample_helper_static_id_prefix_4 .plot-caption { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx4 .hyperlink-element { +#_sample_helper_static_id_prefix_4 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx4 .legend-title { +#_sample_helper_static_id_prefix_4 .legend-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx4 .legend-item { +#_sample_helper_static_id_prefix_4 .legend-item { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx4 .axis-title-x { +#_sample_helper_static_id_prefix_4 .axis-title-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx4 .axis-text-x { +#_sample_helper_static_id_prefix_4 .axis-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx6 .axis-tooltip-text-x { +#_sample_helper_static_id_prefix_6 .axis-tooltip-text-x { fill: #ffffff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx4 .axis-title-y { +#_sample_helper_static_id_prefix_4 .axis-title-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx4 .axis-text-y { +#_sample_helper_static_id_prefix_4 .axis-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx6 .axis-tooltip-text-y { +#_sample_helper_static_id_prefix_6 .axis-tooltip-text-y { fill: #ffffff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx4 .facet-strip-text-x { +#_sample_helper_static_id_prefix_4 .facet-strip-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx4 .facet-strip-text-y { +#_sample_helper_static_id_prefix_4 .facet-strip-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx6 .tooltip-text { +#_sample_helper_static_id_prefix_6 .tooltip-text { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx6 .tooltip-title { +#_sample_helper_static_id_prefix_6 .tooltip-title { fill: #474747; font-weight: bold; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx6 .tooltip-label { +#_sample_helper_static_id_prefix_6 .tooltip-label { fill: #474747; font-weight: bold; font-style: normal;font-family: sans-serif; @@ -528,7 +528,7 @@ font-size: 13.0px; } - + @@ -556,7 +556,7 @@ font-size: 13.0px; - + @@ -568,7 +568,7 @@ font-size: 13.0px; - + @@ -658,7 +658,7 @@ font-size: 13.0px; - + \ No newline at end of file diff --git a/docs/images/samples/line/line_and_path_comp_2_dark.svg b/docs/images/samples/line/line_and_path_comp_2_dark.svg index 9c16bd05b..8be77762a 100644 --- a/docs/images/samples/line/line_and_path_comp_2_dark.svg +++ b/docs/images/samples/line/line_and_path_comp_2_dark.svg @@ -10,54 +10,54 @@ text { text-rendering: optimizeLegibility; } -#xXxprefixXx0 .plot-title { +#_sample_helper_static_id_prefix_0 .plot-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; @@ -71,14 +71,14 @@ font-weight: normal; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; @@ -92,14 +92,14 @@ font-weight: normal; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; @@ -129,7 +129,7 @@ font-size: 13.0px; } - + @@ -145,117 +145,117 @@ font-size: 13.0px; text { text-rendering: optimizeLegibility; } -#xXxprefixXx1 .plot-title { +#_sample_helper_static_id_prefix_1 .plot-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx1 .plot-subtitle { +#_sample_helper_static_id_prefix_1 .plot-subtitle { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx1 .plot-caption { +#_sample_helper_static_id_prefix_1 .plot-caption { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx1 .hyperlink-element { +#_sample_helper_static_id_prefix_1 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx1 .legend-title { +#_sample_helper_static_id_prefix_1 .legend-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx1 .legend-item { +#_sample_helper_static_id_prefix_1 .legend-item { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx1 .axis-title-x { +#_sample_helper_static_id_prefix_1 .axis-title-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx1 .axis-text-x { +#_sample_helper_static_id_prefix_1 .axis-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx3 .axis-tooltip-text-x { +#_sample_helper_static_id_prefix_3 .axis-tooltip-text-x { fill: #303030; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx1 .axis-title-y { +#_sample_helper_static_id_prefix_1 .axis-title-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx1 .axis-text-y { +#_sample_helper_static_id_prefix_1 .axis-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx3 .axis-tooltip-text-y { +#_sample_helper_static_id_prefix_3 .axis-tooltip-text-y { fill: #303030; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx1 .facet-strip-text-x { +#_sample_helper_static_id_prefix_1 .facet-strip-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx1 .facet-strip-text-y { +#_sample_helper_static_id_prefix_1 .facet-strip-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx3 .tooltip-text { +#_sample_helper_static_id_prefix_3 .tooltip-text { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx3 .tooltip-title { +#_sample_helper_static_id_prefix_3 .tooltip-title { fill: #bbbbbb; font-weight: bold; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx3 .tooltip-label { +#_sample_helper_static_id_prefix_3 .tooltip-label { fill: #bbbbbb; font-weight: bold; font-style: normal;font-family: sans-serif; @@ -264,7 +264,7 @@ font-size: 13.0px; } - + @@ -355,7 +355,7 @@ font-size: 13.0px; - + @@ -367,7 +367,7 @@ font-size: 13.0px; - + @@ -394,7 +394,7 @@ font-size: 13.0px; - + @@ -409,117 +409,117 @@ font-size: 13.0px; text { text-rendering: optimizeLegibility; } -#xXxprefixXx4 .plot-title { +#_sample_helper_static_id_prefix_4 .plot-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx4 .plot-subtitle { +#_sample_helper_static_id_prefix_4 .plot-subtitle { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx4 .plot-caption { +#_sample_helper_static_id_prefix_4 .plot-caption { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx4 .hyperlink-element { +#_sample_helper_static_id_prefix_4 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx4 .legend-title { +#_sample_helper_static_id_prefix_4 .legend-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx4 .legend-item { +#_sample_helper_static_id_prefix_4 .legend-item { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx4 .axis-title-x { +#_sample_helper_static_id_prefix_4 .axis-title-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx4 .axis-text-x { +#_sample_helper_static_id_prefix_4 .axis-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx6 .axis-tooltip-text-x { +#_sample_helper_static_id_prefix_6 .axis-tooltip-text-x { fill: #303030; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx4 .axis-title-y { +#_sample_helper_static_id_prefix_4 .axis-title-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx4 .axis-text-y { +#_sample_helper_static_id_prefix_4 .axis-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx6 .axis-tooltip-text-y { +#_sample_helper_static_id_prefix_6 .axis-tooltip-text-y { fill: #303030; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx4 .facet-strip-text-x { +#_sample_helper_static_id_prefix_4 .facet-strip-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx4 .facet-strip-text-y { +#_sample_helper_static_id_prefix_4 .facet-strip-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx6 .tooltip-text { +#_sample_helper_static_id_prefix_6 .tooltip-text { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx6 .tooltip-title { +#_sample_helper_static_id_prefix_6 .tooltip-title { fill: #bbbbbb; font-weight: bold; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx6 .tooltip-label { +#_sample_helper_static_id_prefix_6 .tooltip-label { fill: #bbbbbb; font-weight: bold; font-style: normal;font-family: sans-serif; @@ -528,7 +528,7 @@ font-size: 13.0px; } - + @@ -619,7 +619,7 @@ font-size: 13.0px; - + @@ -631,7 +631,7 @@ font-size: 13.0px; - + @@ -658,7 +658,7 @@ font-size: 13.0px; - + \ No newline at end of file diff --git a/docs/images/samples/line/line_by_fun.svg b/docs/images/samples/line/line_by_fun.svg index 771ca040d..72b77649e 100644 --- a/docs/images/samples/line/line_by_fun.svg +++ b/docs/images/samples/line/line_by_fun.svg @@ -10,117 +10,117 @@ text { text-rendering: optimizeLegibility; } -#xXxprefixXx0 .plot-title { +#_sample_helper_static_id_prefix_0 .plot-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx3 .axis-tooltip-text-x { +#_sample_helper_static_id_prefix_3 .axis-tooltip-text-x { fill: #ffffff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx3 .axis-tooltip-text-y { +#_sample_helper_static_id_prefix_3 .axis-tooltip-text-y { fill: #ffffff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx3 .tooltip-text { +#_sample_helper_static_id_prefix_3 .tooltip-text { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx3 .tooltip-title { +#_sample_helper_static_id_prefix_3 .tooltip-title { fill: #474747; font-weight: bold; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx3 .tooltip-label { +#_sample_helper_static_id_prefix_3 .tooltip-label { fill: #474747; font-weight: bold; font-style: normal;font-family: sans-serif; @@ -129,7 +129,7 @@ font-size: 13.0px; } - + @@ -183,7 +183,7 @@ font-size: 13.0px; - + @@ -199,13 +199,13 @@ font-size: 13.0px; - + - + @@ -391,6 +391,6 @@ font-size: 13.0px; - + \ No newline at end of file diff --git a/docs/images/samples/line/line_by_fun_dark.svg b/docs/images/samples/line/line_by_fun_dark.svg index 377984abc..863e06c7c 100644 --- a/docs/images/samples/line/line_by_fun_dark.svg +++ b/docs/images/samples/line/line_by_fun_dark.svg @@ -10,117 +10,117 @@ text { text-rendering: optimizeLegibility; } -#xXxprefixXx0 .plot-title { +#_sample_helper_static_id_prefix_0 .plot-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx3 .axis-tooltip-text-x { +#_sample_helper_static_id_prefix_3 .axis-tooltip-text-x { fill: #303030; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx3 .axis-tooltip-text-y { +#_sample_helper_static_id_prefix_3 .axis-tooltip-text-y { fill: #303030; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx3 .tooltip-text { +#_sample_helper_static_id_prefix_3 .tooltip-text { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx3 .tooltip-title { +#_sample_helper_static_id_prefix_3 .tooltip-title { fill: #bbbbbb; font-weight: bold; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx3 .tooltip-label { +#_sample_helper_static_id_prefix_3 .tooltip-label { fill: #bbbbbb; font-weight: bold; font-style: normal;font-family: sans-serif; @@ -129,7 +129,7 @@ font-size: 13.0px; } - + @@ -347,7 +347,7 @@ font-size: 13.0px; - + @@ -363,13 +363,13 @@ font-size: 13.0px; - + - + @@ -391,6 +391,6 @@ font-size: 13.0px; - + \ No newline at end of file diff --git a/docs/images/samples/line/line_color_gradient.svg b/docs/images/samples/line/line_color_gradient.svg index 77a25ddaf..23d1cb8af 100644 --- a/docs/images/samples/line/line_color_gradient.svg +++ b/docs/images/samples/line/line_color_gradient.svg @@ -10,117 +10,117 @@ text { text-rendering: optimizeLegibility; } -#xXxprefixXx0 .plot-title { +#_sample_helper_static_id_prefix_0 .plot-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-x { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-x { fill: #ffffff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-y { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-y { fill: #ffffff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-text { +#_sample_helper_static_id_prefix_2 .tooltip-text { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-title { +#_sample_helper_static_id_prefix_2 .tooltip-title { fill: #474747; font-weight: bold; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-label { +#_sample_helper_static_id_prefix_2 .tooltip-label { fill: #474747; font-weight: bold; font-style: normal;font-family: sans-serif; @@ -129,7 +129,7 @@ font-size: 13.0px; } - + @@ -183,7 +183,7 @@ font-size: 13.0px; - + @@ -239,7 +239,7 @@ font-size: 13.0px; - + @@ -540,6 +540,6 @@ font-size: 13.0px; - + \ No newline at end of file diff --git a/docs/images/samples/line/line_color_gradient_dark.svg b/docs/images/samples/line/line_color_gradient_dark.svg index 4e2ebad1e..c6a2abc8b 100644 --- a/docs/images/samples/line/line_color_gradient_dark.svg +++ b/docs/images/samples/line/line_color_gradient_dark.svg @@ -10,117 +10,117 @@ text { text-rendering: optimizeLegibility; } -#xXxprefixXx0 .plot-title { +#_sample_helper_static_id_prefix_0 .plot-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-x { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-x { fill: #303030; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-y { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-y { fill: #303030; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-text { +#_sample_helper_static_id_prefix_2 .tooltip-text { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-title { +#_sample_helper_static_id_prefix_2 .tooltip-title { fill: #bbbbbb; font-weight: bold; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-label { +#_sample_helper_static_id_prefix_2 .tooltip-label { fill: #bbbbbb; font-weight: bold; font-style: normal;font-family: sans-serif; @@ -129,7 +129,7 @@ font-size: 13.0px; } - + @@ -353,7 +353,7 @@ font-size: 13.0px; - + @@ -409,7 +409,7 @@ font-size: 13.0px; - + @@ -540,6 +540,6 @@ font-size: 13.0px; - + \ No newline at end of file diff --git a/docs/images/samples/line/line_fixed_coord.svg b/docs/images/samples/line/line_fixed_coord.svg index 8ead536ea..d0950d603 100644 --- a/docs/images/samples/line/line_fixed_coord.svg +++ b/docs/images/samples/line/line_fixed_coord.svg @@ -10,117 +10,117 @@ text { text-rendering: optimizeLegibility; } -#xXxprefixXx0 .plot-title { +#_sample_helper_static_id_prefix_0 .plot-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx3 .axis-tooltip-text-x { +#_sample_helper_static_id_prefix_3 .axis-tooltip-text-x { fill: #ffffff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx3 .axis-tooltip-text-y { +#_sample_helper_static_id_prefix_3 .axis-tooltip-text-y { fill: #ffffff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx3 .tooltip-text { +#_sample_helper_static_id_prefix_3 .tooltip-text { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx3 .tooltip-title { +#_sample_helper_static_id_prefix_3 .tooltip-title { fill: #474747; font-weight: bold; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx3 .tooltip-label { +#_sample_helper_static_id_prefix_3 .tooltip-label { fill: #474747; font-weight: bold; font-style: normal;font-family: sans-serif; @@ -129,7 +129,7 @@ font-size: 13.0px; } - + @@ -171,7 +171,7 @@ font-size: 13.0px; - + @@ -189,13 +189,13 @@ font-size: 13.0px; - + - + @@ -335,6 +335,6 @@ font-size: 13.0px; - + \ No newline at end of file diff --git a/docs/images/samples/line/line_fixed_coord_dark.svg b/docs/images/samples/line/line_fixed_coord_dark.svg index 39ff36d31..1447886f2 100644 --- a/docs/images/samples/line/line_fixed_coord_dark.svg +++ b/docs/images/samples/line/line_fixed_coord_dark.svg @@ -10,117 +10,117 @@ text { text-rendering: optimizeLegibility; } -#xXxprefixXx0 .plot-title { +#_sample_helper_static_id_prefix_0 .plot-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx3 .axis-tooltip-text-x { +#_sample_helper_static_id_prefix_3 .axis-tooltip-text-x { fill: #303030; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx3 .axis-tooltip-text-y { +#_sample_helper_static_id_prefix_3 .axis-tooltip-text-y { fill: #303030; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx3 .tooltip-text { +#_sample_helper_static_id_prefix_3 .tooltip-text { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx3 .tooltip-title { +#_sample_helper_static_id_prefix_3 .tooltip-title { fill: #bbbbbb; font-weight: bold; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx3 .tooltip-label { +#_sample_helper_static_id_prefix_3 .tooltip-label { fill: #bbbbbb; font-weight: bold; font-style: normal;font-family: sans-serif; @@ -129,7 +129,7 @@ font-size: 13.0px; } - + @@ -289,7 +289,7 @@ font-size: 13.0px; - + @@ -307,13 +307,13 @@ font-size: 13.0px; - + - + @@ -335,6 +335,6 @@ font-size: 13.0px; - + \ No newline at end of file diff --git a/docs/images/samples/line/line_mark.svg b/docs/images/samples/line/line_mark.svg index 57976e800..47aa2e6c3 100644 --- a/docs/images/samples/line/line_mark.svg +++ b/docs/images/samples/line/line_mark.svg @@ -10,117 +10,117 @@ text { text-rendering: optimizeLegibility; } -#xXxprefixXx0 .plot-title { +#_sample_helper_static_id_prefix_0 .plot-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx4 .axis-tooltip-text-x { +#_sample_helper_static_id_prefix_4 .axis-tooltip-text-x { fill: #ffffff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx4 .axis-tooltip-text-y { +#_sample_helper_static_id_prefix_4 .axis-tooltip-text-y { fill: #ffffff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx4 .tooltip-text { +#_sample_helper_static_id_prefix_4 .tooltip-text { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx4 .tooltip-title { +#_sample_helper_static_id_prefix_4 .tooltip-title { fill: #474747; font-weight: bold; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx4 .tooltip-label { +#_sample_helper_static_id_prefix_4 .tooltip-label { fill: #474747; font-weight: bold; font-style: normal;font-family: sans-serif; @@ -129,7 +129,7 @@ font-size: 13.0px; } - + @@ -179,7 +179,7 @@ font-size: 13.0px; - + @@ -203,19 +203,19 @@ font-size: 13.0px; - + - + - + @@ -436,6 +436,6 @@ font-size: 13.0px; - + \ No newline at end of file diff --git a/docs/images/samples/line/line_mark_dark.svg b/docs/images/samples/line/line_mark_dark.svg index c9e1fb359..f18c4fe3d 100644 --- a/docs/images/samples/line/line_mark_dark.svg +++ b/docs/images/samples/line/line_mark_dark.svg @@ -10,117 +10,117 @@ text { text-rendering: optimizeLegibility; } -#xXxprefixXx0 .plot-title { +#_sample_helper_static_id_prefix_0 .plot-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx4 .axis-tooltip-text-x { +#_sample_helper_static_id_prefix_4 .axis-tooltip-text-x { fill: #303030; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx4 .axis-tooltip-text-y { +#_sample_helper_static_id_prefix_4 .axis-tooltip-text-y { fill: #303030; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx4 .tooltip-text { +#_sample_helper_static_id_prefix_4 .tooltip-text { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx4 .tooltip-title { +#_sample_helper_static_id_prefix_4 .tooltip-title { fill: #bbbbbb; font-weight: bold; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx4 .tooltip-label { +#_sample_helper_static_id_prefix_4 .tooltip-label { fill: #bbbbbb; font-weight: bold; font-style: normal;font-family: sans-serif; @@ -129,7 +129,7 @@ font-size: 13.0px; } - + @@ -335,7 +335,7 @@ font-size: 13.0px; - + @@ -359,19 +359,19 @@ font-size: 13.0px; - + - + - + @@ -436,6 +436,6 @@ font-size: 13.0px; - + \ No newline at end of file diff --git a/docs/images/samples/line/line_reversed_axis.svg b/docs/images/samples/line/line_reversed_axis.svg index 9401a2a4c..df1a58159 100644 --- a/docs/images/samples/line/line_reversed_axis.svg +++ b/docs/images/samples/line/line_reversed_axis.svg @@ -10,117 +10,117 @@ text { text-rendering: optimizeLegibility; } -#xXxprefixXx0 .plot-title { +#_sample_helper_static_id_prefix_0 .plot-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-x { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-x { fill: #ffffff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-y { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-y { fill: #ffffff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-text { +#_sample_helper_static_id_prefix_2 .tooltip-text { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-title { +#_sample_helper_static_id_prefix_2 .tooltip-title { fill: #474747; font-weight: bold; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-label { +#_sample_helper_static_id_prefix_2 .tooltip-label { fill: #474747; font-weight: bold; font-style: normal;font-family: sans-serif; @@ -129,7 +129,7 @@ font-size: 13.0px; } - + @@ -169,7 +169,7 @@ font-size: 13.0px; - + @@ -181,7 +181,7 @@ font-size: 13.0px; - + @@ -314,6 +314,6 @@ font-size: 13.0px; - + \ No newline at end of file diff --git a/docs/images/samples/line/line_reversed_axis_dark.svg b/docs/images/samples/line/line_reversed_axis_dark.svg index 163830cf8..7c5b192f2 100644 --- a/docs/images/samples/line/line_reversed_axis_dark.svg +++ b/docs/images/samples/line/line_reversed_axis_dark.svg @@ -10,117 +10,117 @@ text { text-rendering: optimizeLegibility; } -#xXxprefixXx0 .plot-title { +#_sample_helper_static_id_prefix_0 .plot-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-x { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-x { fill: #303030; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-y { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-y { fill: #303030; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-text { +#_sample_helper_static_id_prefix_2 .tooltip-text { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-title { +#_sample_helper_static_id_prefix_2 .tooltip-title { fill: #bbbbbb; font-weight: bold; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-label { +#_sample_helper_static_id_prefix_2 .tooltip-label { fill: #bbbbbb; font-weight: bold; font-style: normal;font-family: sans-serif; @@ -129,7 +129,7 @@ font-size: 13.0px; } - + @@ -280,7 +280,7 @@ font-size: 13.0px; - + @@ -292,7 +292,7 @@ font-size: 13.0px; - + @@ -314,6 +314,6 @@ font-size: 13.0px; - + \ No newline at end of file diff --git a/docs/images/samples/line/line_with_points.svg b/docs/images/samples/line/line_with_points.svg index 0afc1550c..d6e5c109b 100644 --- a/docs/images/samples/line/line_with_points.svg +++ b/docs/images/samples/line/line_with_points.svg @@ -10,117 +10,117 @@ text { text-rendering: optimizeLegibility; } -#xXxprefixXx0 .plot-title { +#_sample_helper_static_id_prefix_0 .plot-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx3 .axis-tooltip-text-x { +#_sample_helper_static_id_prefix_3 .axis-tooltip-text-x { fill: #ffffff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx3 .axis-tooltip-text-y { +#_sample_helper_static_id_prefix_3 .axis-tooltip-text-y { fill: #ffffff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx3 .tooltip-text { +#_sample_helper_static_id_prefix_3 .tooltip-text { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx3 .tooltip-title { +#_sample_helper_static_id_prefix_3 .tooltip-title { fill: #474747; font-weight: bold; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx3 .tooltip-label { +#_sample_helper_static_id_prefix_3 .tooltip-label { fill: #474747; font-weight: bold; font-style: normal;font-family: sans-serif; @@ -129,7 +129,7 @@ font-size: 13.0px; } - + @@ -173,7 +173,7 @@ font-size: 13.0px; - + @@ -198,13 +198,13 @@ font-size: 13.0px; - + - + @@ -353,6 +353,6 @@ font-size: 13.0px; - + \ No newline at end of file diff --git a/docs/images/samples/line/line_with_points_dark.svg b/docs/images/samples/line/line_with_points_dark.svg index fcaab24c2..2ffda34cb 100644 --- a/docs/images/samples/line/line_with_points_dark.svg +++ b/docs/images/samples/line/line_with_points_dark.svg @@ -10,117 +10,117 @@ text { text-rendering: optimizeLegibility; } -#xXxprefixXx0 .plot-title { +#_sample_helper_static_id_prefix_0 .plot-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx3 .axis-tooltip-text-x { +#_sample_helper_static_id_prefix_3 .axis-tooltip-text-x { fill: #303030; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx3 .axis-tooltip-text-y { +#_sample_helper_static_id_prefix_3 .axis-tooltip-text-y { fill: #303030; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx3 .tooltip-text { +#_sample_helper_static_id_prefix_3 .tooltip-text { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx3 .tooltip-title { +#_sample_helper_static_id_prefix_3 .tooltip-title { fill: #bbbbbb; font-weight: bold; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx3 .tooltip-label { +#_sample_helper_static_id_prefix_3 .tooltip-label { fill: #bbbbbb; font-weight: bold; font-style: normal;font-family: sans-serif; @@ -129,7 +129,7 @@ font-size: 13.0px; } - + @@ -300,7 +300,7 @@ font-size: 13.0px; - + @@ -325,13 +325,13 @@ font-size: 13.0px; - + - + @@ -353,6 +353,6 @@ font-size: 13.0px; - + \ No newline at end of file diff --git a/docs/images/samples/line/path_line.svg b/docs/images/samples/line/path_line.svg index f6e616bdf..be2845816 100644 --- a/docs/images/samples/line/path_line.svg +++ b/docs/images/samples/line/path_line.svg @@ -10,117 +10,117 @@ text { text-rendering: optimizeLegibility; } -#xXxprefixXx0 .plot-title { +#_sample_helper_static_id_prefix_0 .plot-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-x { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-x { fill: #ffffff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-y { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-y { fill: #ffffff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-text { +#_sample_helper_static_id_prefix_2 .tooltip-text { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-title { +#_sample_helper_static_id_prefix_2 .tooltip-title { fill: #474747; font-weight: bold; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-label { +#_sample_helper_static_id_prefix_2 .tooltip-label { fill: #474747; font-weight: bold; font-style: normal;font-family: sans-serif; @@ -129,7 +129,7 @@ font-size: 13.0px; } - + @@ -179,7 +179,7 @@ font-size: 13.0px; - + @@ -191,7 +191,7 @@ font-size: 13.0px; - + @@ -377,6 +377,6 @@ font-size: 13.0px; - + \ No newline at end of file diff --git a/docs/images/samples/line/path_line_dark.svg b/docs/images/samples/line/path_line_dark.svg index 2b129ccc7..1c7a5ad6d 100644 --- a/docs/images/samples/line/path_line_dark.svg +++ b/docs/images/samples/line/path_line_dark.svg @@ -10,117 +10,117 @@ text { text-rendering: optimizeLegibility; } -#xXxprefixXx0 .plot-title { +#_sample_helper_static_id_prefix_0 .plot-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-x { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-x { fill: #303030; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-y { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-y { fill: #303030; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-text { +#_sample_helper_static_id_prefix_2 .tooltip-text { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-title { +#_sample_helper_static_id_prefix_2 .tooltip-title { fill: #bbbbbb; font-weight: bold; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-label { +#_sample_helper_static_id_prefix_2 .tooltip-label { fill: #bbbbbb; font-weight: bold; font-style: normal;font-family: sans-serif; @@ -129,7 +129,7 @@ font-size: 13.0px; } - + @@ -333,7 +333,7 @@ font-size: 13.0px; - + @@ -345,7 +345,7 @@ font-size: 13.0px; - + @@ -377,6 +377,6 @@ font-size: 13.0px; - + \ No newline at end of file diff --git a/docs/images/samples/line/preview_line_and_path_comp_2.svg b/docs/images/samples/line/preview_line_and_path_comp_2.svg index 3597d9182..e8bbe25b5 100644 --- a/docs/images/samples/line/preview_line_and_path_comp_2.svg +++ b/docs/images/samples/line/preview_line_and_path_comp_2.svg @@ -10,54 +10,54 @@ text { text-rendering: optimizeLegibility; } -#xXxprefixXx0 .plot-title { +#_sample_helper_static_id_prefix_0 .plot-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; @@ -71,14 +71,14 @@ font-weight: normal; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; @@ -92,14 +92,14 @@ font-weight: normal; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; @@ -129,7 +129,7 @@ font-size: 13.0px; } - + @@ -145,117 +145,117 @@ font-size: 13.0px; text { text-rendering: optimizeLegibility; } -#xXxprefixXx1 .plot-title { +#_sample_helper_static_id_prefix_1 .plot-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx1 .plot-subtitle { +#_sample_helper_static_id_prefix_1 .plot-subtitle { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx1 .plot-caption { +#_sample_helper_static_id_prefix_1 .plot-caption { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx1 .hyperlink-element { +#_sample_helper_static_id_prefix_1 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx1 .legend-title { +#_sample_helper_static_id_prefix_1 .legend-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx1 .legend-item { +#_sample_helper_static_id_prefix_1 .legend-item { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx1 .axis-title-x { +#_sample_helper_static_id_prefix_1 .axis-title-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx1 .axis-text-x { +#_sample_helper_static_id_prefix_1 .axis-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx3 .axis-tooltip-text-x { +#_sample_helper_static_id_prefix_3 .axis-tooltip-text-x { fill: #ffffff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx1 .axis-title-y { +#_sample_helper_static_id_prefix_1 .axis-title-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx1 .axis-text-y { +#_sample_helper_static_id_prefix_1 .axis-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx3 .axis-tooltip-text-y { +#_sample_helper_static_id_prefix_3 .axis-tooltip-text-y { fill: #ffffff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx1 .facet-strip-text-x { +#_sample_helper_static_id_prefix_1 .facet-strip-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx1 .facet-strip-text-y { +#_sample_helper_static_id_prefix_1 .facet-strip-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx3 .tooltip-text { +#_sample_helper_static_id_prefix_3 .tooltip-text { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx3 .tooltip-title { +#_sample_helper_static_id_prefix_3 .tooltip-title { fill: #474747; font-weight: bold; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx3 .tooltip-label { +#_sample_helper_static_id_prefix_3 .tooltip-label { fill: #474747; font-weight: bold; font-style: normal;font-family: sans-serif; @@ -264,7 +264,7 @@ font-size: 13.0px; } - + @@ -298,7 +298,7 @@ font-size: 13.0px; - + @@ -310,7 +310,7 @@ font-size: 13.0px; - + @@ -421,7 +421,7 @@ font-size: 13.0px; - + @@ -436,117 +436,117 @@ font-size: 13.0px; text { text-rendering: optimizeLegibility; } -#xXxprefixXx4 .plot-title { +#_sample_helper_static_id_prefix_4 .plot-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx4 .plot-subtitle { +#_sample_helper_static_id_prefix_4 .plot-subtitle { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx4 .plot-caption { +#_sample_helper_static_id_prefix_4 .plot-caption { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx4 .hyperlink-element { +#_sample_helper_static_id_prefix_4 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx4 .legend-title { +#_sample_helper_static_id_prefix_4 .legend-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx4 .legend-item { +#_sample_helper_static_id_prefix_4 .legend-item { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx4 .axis-title-x { +#_sample_helper_static_id_prefix_4 .axis-title-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx4 .axis-text-x { +#_sample_helper_static_id_prefix_4 .axis-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx6 .axis-tooltip-text-x { +#_sample_helper_static_id_prefix_6 .axis-tooltip-text-x { fill: #ffffff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx4 .axis-title-y { +#_sample_helper_static_id_prefix_4 .axis-title-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx4 .axis-text-y { +#_sample_helper_static_id_prefix_4 .axis-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx6 .axis-tooltip-text-y { +#_sample_helper_static_id_prefix_6 .axis-tooltip-text-y { fill: #ffffff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx4 .facet-strip-text-x { +#_sample_helper_static_id_prefix_4 .facet-strip-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx4 .facet-strip-text-y { +#_sample_helper_static_id_prefix_4 .facet-strip-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx6 .tooltip-text { +#_sample_helper_static_id_prefix_6 .tooltip-text { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx6 .tooltip-title { +#_sample_helper_static_id_prefix_6 .tooltip-title { fill: #474747; font-weight: bold; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx6 .tooltip-label { +#_sample_helper_static_id_prefix_6 .tooltip-label { fill: #474747; font-weight: bold; font-style: normal;font-family: sans-serif; @@ -555,7 +555,7 @@ font-size: 13.0px; } - + @@ -589,7 +589,7 @@ font-size: 13.0px; - + @@ -601,7 +601,7 @@ font-size: 13.0px; - + @@ -712,7 +712,7 @@ font-size: 13.0px; - + \ No newline at end of file diff --git a/docs/images/samples/line/preview_line_and_path_comp_2_dark.svg b/docs/images/samples/line/preview_line_and_path_comp_2_dark.svg index 17734fb1b..50f1de3b0 100644 --- a/docs/images/samples/line/preview_line_and_path_comp_2_dark.svg +++ b/docs/images/samples/line/preview_line_and_path_comp_2_dark.svg @@ -10,54 +10,54 @@ text { text-rendering: optimizeLegibility; } -#xXxprefixXx0 .plot-title { +#_sample_helper_static_id_prefix_0 .plot-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; @@ -71,14 +71,14 @@ font-weight: normal; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; @@ -92,14 +92,14 @@ font-weight: normal; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; @@ -129,7 +129,7 @@ font-size: 13.0px; } - + @@ -145,117 +145,117 @@ font-size: 13.0px; text { text-rendering: optimizeLegibility; } -#xXxprefixXx1 .plot-title { +#_sample_helper_static_id_prefix_1 .plot-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx1 .plot-subtitle { +#_sample_helper_static_id_prefix_1 .plot-subtitle { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx1 .plot-caption { +#_sample_helper_static_id_prefix_1 .plot-caption { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx1 .hyperlink-element { +#_sample_helper_static_id_prefix_1 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx1 .legend-title { +#_sample_helper_static_id_prefix_1 .legend-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx1 .legend-item { +#_sample_helper_static_id_prefix_1 .legend-item { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx1 .axis-title-x { +#_sample_helper_static_id_prefix_1 .axis-title-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx1 .axis-text-x { +#_sample_helper_static_id_prefix_1 .axis-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx3 .axis-tooltip-text-x { +#_sample_helper_static_id_prefix_3 .axis-tooltip-text-x { fill: #303030; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx1 .axis-title-y { +#_sample_helper_static_id_prefix_1 .axis-title-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx1 .axis-text-y { +#_sample_helper_static_id_prefix_1 .axis-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx3 .axis-tooltip-text-y { +#_sample_helper_static_id_prefix_3 .axis-tooltip-text-y { fill: #303030; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx1 .facet-strip-text-x { +#_sample_helper_static_id_prefix_1 .facet-strip-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx1 .facet-strip-text-y { +#_sample_helper_static_id_prefix_1 .facet-strip-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx3 .tooltip-text { +#_sample_helper_static_id_prefix_3 .tooltip-text { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx3 .tooltip-title { +#_sample_helper_static_id_prefix_3 .tooltip-title { fill: #bbbbbb; font-weight: bold; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx3 .tooltip-label { +#_sample_helper_static_id_prefix_3 .tooltip-label { fill: #bbbbbb; font-weight: bold; font-style: normal;font-family: sans-serif; @@ -264,7 +264,7 @@ font-size: 13.0px; } - + @@ -382,7 +382,7 @@ font-size: 13.0px; - + @@ -394,7 +394,7 @@ font-size: 13.0px; - + @@ -421,7 +421,7 @@ font-size: 13.0px; - + @@ -436,117 +436,117 @@ font-size: 13.0px; text { text-rendering: optimizeLegibility; } -#xXxprefixXx4 .plot-title { +#_sample_helper_static_id_prefix_4 .plot-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx4 .plot-subtitle { +#_sample_helper_static_id_prefix_4 .plot-subtitle { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx4 .plot-caption { +#_sample_helper_static_id_prefix_4 .plot-caption { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx4 .hyperlink-element { +#_sample_helper_static_id_prefix_4 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx4 .legend-title { +#_sample_helper_static_id_prefix_4 .legend-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx4 .legend-item { +#_sample_helper_static_id_prefix_4 .legend-item { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx4 .axis-title-x { +#_sample_helper_static_id_prefix_4 .axis-title-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx4 .axis-text-x { +#_sample_helper_static_id_prefix_4 .axis-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx6 .axis-tooltip-text-x { +#_sample_helper_static_id_prefix_6 .axis-tooltip-text-x { fill: #303030; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx4 .axis-title-y { +#_sample_helper_static_id_prefix_4 .axis-title-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx4 .axis-text-y { +#_sample_helper_static_id_prefix_4 .axis-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx6 .axis-tooltip-text-y { +#_sample_helper_static_id_prefix_6 .axis-tooltip-text-y { fill: #303030; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx4 .facet-strip-text-x { +#_sample_helper_static_id_prefix_4 .facet-strip-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx4 .facet-strip-text-y { +#_sample_helper_static_id_prefix_4 .facet-strip-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx6 .tooltip-text { +#_sample_helper_static_id_prefix_6 .tooltip-text { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx6 .tooltip-title { +#_sample_helper_static_id_prefix_6 .tooltip-title { fill: #bbbbbb; font-weight: bold; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx6 .tooltip-label { +#_sample_helper_static_id_prefix_6 .tooltip-label { fill: #bbbbbb; font-weight: bold; font-style: normal;font-family: sans-serif; @@ -555,7 +555,7 @@ font-size: 13.0px; } - + @@ -673,7 +673,7 @@ font-size: 13.0px; - + @@ -685,7 +685,7 @@ font-size: 13.0px; - + @@ -712,7 +712,7 @@ font-size: 13.0px; - + \ No newline at end of file diff --git a/docs/images/samples/line/preview_line_mark.svg b/docs/images/samples/line/preview_line_mark.svg index 3d5084cb8..ea851d375 100644 --- a/docs/images/samples/line/preview_line_mark.svg +++ b/docs/images/samples/line/preview_line_mark.svg @@ -10,117 +10,117 @@ text { text-rendering: optimizeLegibility; } -#xXxprefixXx0 .plot-title { +#_sample_helper_static_id_prefix_0 .plot-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx4 .axis-tooltip-text-x { +#_sample_helper_static_id_prefix_4 .axis-tooltip-text-x { fill: #ffffff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx4 .axis-tooltip-text-y { +#_sample_helper_static_id_prefix_4 .axis-tooltip-text-y { fill: #ffffff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx4 .tooltip-text { +#_sample_helper_static_id_prefix_4 .tooltip-text { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx4 .tooltip-title { +#_sample_helper_static_id_prefix_4 .tooltip-title { fill: #474747; font-weight: bold; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx4 .tooltip-label { +#_sample_helper_static_id_prefix_4 .tooltip-label { fill: #474747; font-weight: bold; font-style: normal;font-family: sans-serif; @@ -129,7 +129,7 @@ font-size: 13.0px; } - + @@ -179,7 +179,7 @@ font-size: 13.0px; - + @@ -203,19 +203,19 @@ font-size: 13.0px; - + - + - + @@ -436,6 +436,6 @@ font-size: 13.0px; - + \ No newline at end of file diff --git a/docs/images/samples/line/preview_line_mark_dark.svg b/docs/images/samples/line/preview_line_mark_dark.svg index fd840988b..76a114a94 100644 --- a/docs/images/samples/line/preview_line_mark_dark.svg +++ b/docs/images/samples/line/preview_line_mark_dark.svg @@ -10,117 +10,117 @@ text { text-rendering: optimizeLegibility; } -#xXxprefixXx0 .plot-title { +#_sample_helper_static_id_prefix_0 .plot-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx4 .axis-tooltip-text-x { +#_sample_helper_static_id_prefix_4 .axis-tooltip-text-x { fill: #303030; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx4 .axis-tooltip-text-y { +#_sample_helper_static_id_prefix_4 .axis-tooltip-text-y { fill: #303030; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx4 .tooltip-text { +#_sample_helper_static_id_prefix_4 .tooltip-text { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx4 .tooltip-title { +#_sample_helper_static_id_prefix_4 .tooltip-title { fill: #bbbbbb; font-weight: bold; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx4 .tooltip-label { +#_sample_helper_static_id_prefix_4 .tooltip-label { fill: #bbbbbb; font-weight: bold; font-style: normal;font-family: sans-serif; @@ -129,7 +129,7 @@ font-size: 13.0px; } - + @@ -335,7 +335,7 @@ font-size: 13.0px; - + @@ -359,19 +359,19 @@ font-size: 13.0px; - + - + - + @@ -436,6 +436,6 @@ font-size: 13.0px; - + \ No newline at end of file diff --git a/docs/images/samples/line/several_lines.svg b/docs/images/samples/line/several_lines.svg index d743da08f..6324d67b6 100644 --- a/docs/images/samples/line/several_lines.svg +++ b/docs/images/samples/line/several_lines.svg @@ -10,117 +10,117 @@ text { text-rendering: optimizeLegibility; } -#xXxprefixXx0 .plot-title { +#_sample_helper_static_id_prefix_0 .plot-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-x { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-x { fill: #ffffff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-y { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-y { fill: #ffffff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-text { +#_sample_helper_static_id_prefix_2 .tooltip-text { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-title { +#_sample_helper_static_id_prefix_2 .tooltip-title { fill: #474747; font-weight: bold; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-label { +#_sample_helper_static_id_prefix_2 .tooltip-label { fill: #474747; font-weight: bold; font-style: normal;font-family: sans-serif; @@ -129,7 +129,7 @@ font-size: 13.0px; } - + @@ -185,7 +185,7 @@ font-size: 13.0px; - + @@ -205,7 +205,7 @@ font-size: 13.0px; - + @@ -456,6 +456,6 @@ font-size: 13.0px; - + \ No newline at end of file diff --git a/docs/images/samples/line/several_lines_dark.svg b/docs/images/samples/line/several_lines_dark.svg index 91b59dd79..6ed9bc3e7 100644 --- a/docs/images/samples/line/several_lines_dark.svg +++ b/docs/images/samples/line/several_lines_dark.svg @@ -10,117 +10,117 @@ text { text-rendering: optimizeLegibility; } -#xXxprefixXx0 .plot-title { +#_sample_helper_static_id_prefix_0 .plot-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-x { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-x { fill: #303030; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-y { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-y { fill: #303030; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-text { +#_sample_helper_static_id_prefix_2 .tooltip-text { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-title { +#_sample_helper_static_id_prefix_2 .tooltip-title { fill: #bbbbbb; font-weight: bold; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-label { +#_sample_helper_static_id_prefix_2 .tooltip-label { fill: #bbbbbb; font-weight: bold; font-style: normal;font-family: sans-serif; @@ -129,7 +129,7 @@ font-size: 13.0px; } - + @@ -356,7 +356,7 @@ font-size: 13.0px; - + @@ -376,7 +376,7 @@ font-size: 13.0px; - + @@ -456,6 +456,6 @@ font-size: 13.0px; - + \ No newline at end of file diff --git a/docs/images/samples/line/simple_line.svg b/docs/images/samples/line/simple_line.svg index 8a3d7e0c2..4129836f5 100644 --- a/docs/images/samples/line/simple_line.svg +++ b/docs/images/samples/line/simple_line.svg @@ -10,117 +10,117 @@ text { text-rendering: optimizeLegibility; } -#xXxprefixXx0 .plot-title { +#_sample_helper_static_id_prefix_0 .plot-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-x { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-x { fill: #ffffff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-y { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-y { fill: #ffffff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-text { +#_sample_helper_static_id_prefix_2 .tooltip-text { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-title { +#_sample_helper_static_id_prefix_2 .tooltip-title { fill: #474747; font-weight: bold; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-label { +#_sample_helper_static_id_prefix_2 .tooltip-label { fill: #474747; font-weight: bold; font-style: normal;font-family: sans-serif; @@ -129,7 +129,7 @@ font-size: 13.0px; } - + @@ -177,7 +177,7 @@ font-size: 13.0px; - + @@ -189,7 +189,7 @@ font-size: 13.0px; - + @@ -346,6 +346,6 @@ font-size: 13.0px; - + \ No newline at end of file diff --git a/docs/images/samples/line/simple_line_dark.svg b/docs/images/samples/line/simple_line_dark.svg index 75e78494c..d469a6a29 100644 --- a/docs/images/samples/line/simple_line_dark.svg +++ b/docs/images/samples/line/simple_line_dark.svg @@ -10,117 +10,117 @@ text { text-rendering: optimizeLegibility; } -#xXxprefixXx0 .plot-title { +#_sample_helper_static_id_prefix_0 .plot-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-x { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-x { fill: #303030; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-y { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-y { fill: #303030; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-text { +#_sample_helper_static_id_prefix_2 .tooltip-text { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-title { +#_sample_helper_static_id_prefix_2 .tooltip-title { fill: #bbbbbb; font-weight: bold; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-label { +#_sample_helper_static_id_prefix_2 .tooltip-label { fill: #bbbbbb; font-weight: bold; font-style: normal;font-family: sans-serif; @@ -129,7 +129,7 @@ font-size: 13.0px; } - + @@ -312,7 +312,7 @@ font-size: 13.0px; - + @@ -324,7 +324,7 @@ font-size: 13.0px; - + @@ -346,6 +346,6 @@ font-size: 13.0px; - + \ No newline at end of file diff --git a/docs/images/samples/line/simple_line_settings.svg b/docs/images/samples/line/simple_line_settings.svg index 3a64a3fc4..5010292ab 100644 --- a/docs/images/samples/line/simple_line_settings.svg +++ b/docs/images/samples/line/simple_line_settings.svg @@ -10,117 +10,117 @@ text { text-rendering: optimizeLegibility; } -#xXxprefixXx0 .plot-title { +#_sample_helper_static_id_prefix_0 .plot-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-x { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-x { fill: #ffffff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-y { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-y { fill: #ffffff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-text { +#_sample_helper_static_id_prefix_2 .tooltip-text { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-title { +#_sample_helper_static_id_prefix_2 .tooltip-title { fill: #474747; font-weight: bold; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-label { +#_sample_helper_static_id_prefix_2 .tooltip-label { fill: #474747; font-weight: bold; font-style: normal;font-family: sans-serif; @@ -129,7 +129,7 @@ font-size: 13.0px; } - + @@ -181,7 +181,7 @@ font-size: 13.0px; - + @@ -193,7 +193,7 @@ font-size: 13.0px; - + @@ -374,6 +374,6 @@ font-size: 13.0px; - + \ No newline at end of file diff --git a/docs/images/samples/line/simple_line_settings_dark.svg b/docs/images/samples/line/simple_line_settings_dark.svg index 297f0fe36..c944649f6 100644 --- a/docs/images/samples/line/simple_line_settings_dark.svg +++ b/docs/images/samples/line/simple_line_settings_dark.svg @@ -10,117 +10,117 @@ text { text-rendering: optimizeLegibility; } -#xXxprefixXx0 .plot-title { +#_sample_helper_static_id_prefix_0 .plot-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-x { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-x { fill: #303030; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-y { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-y { fill: #303030; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-text { +#_sample_helper_static_id_prefix_2 .tooltip-text { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-title { +#_sample_helper_static_id_prefix_2 .tooltip-title { fill: #bbbbbb; font-weight: bold; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-label { +#_sample_helper_static_id_prefix_2 .tooltip-label { fill: #bbbbbb; font-weight: bold; font-style: normal;font-family: sans-serif; @@ -129,7 +129,7 @@ font-size: 13.0px; } - + @@ -340,7 +340,7 @@ font-size: 13.0px; - + @@ -352,7 +352,7 @@ font-size: 13.0px; - + @@ -374,6 +374,6 @@ font-size: 13.0px; - + \ No newline at end of file diff --git a/docs/images/samples/line/smoothed_curve_with_points.svg b/docs/images/samples/line/smoothed_curve_with_points.svg index 45f8e167b..ef64d4642 100644 --- a/docs/images/samples/line/smoothed_curve_with_points.svg +++ b/docs/images/samples/line/smoothed_curve_with_points.svg @@ -10,117 +10,117 @@ text { text-rendering: optimizeLegibility; } -#xXxprefixXx0 .plot-title { +#_sample_helper_static_id_prefix_0 .plot-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx3 .axis-tooltip-text-x { +#_sample_helper_static_id_prefix_3 .axis-tooltip-text-x { fill: #ffffff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx3 .axis-tooltip-text-y { +#_sample_helper_static_id_prefix_3 .axis-tooltip-text-y { fill: #ffffff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx3 .tooltip-text { +#_sample_helper_static_id_prefix_3 .tooltip-text { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx3 .tooltip-title { +#_sample_helper_static_id_prefix_3 .tooltip-title { fill: #474747; font-weight: bold; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx3 .tooltip-label { +#_sample_helper_static_id_prefix_3 .tooltip-label { fill: #474747; font-weight: bold; font-style: normal;font-family: sans-serif; @@ -129,7 +129,7 @@ font-size: 13.0px; } - + @@ -171,7 +171,7 @@ font-size: 13.0px; - + @@ -200,13 +200,13 @@ font-size: 13.0px; - + - + @@ -346,6 +346,6 @@ font-size: 13.0px; - + \ No newline at end of file diff --git a/docs/images/samples/line/smoothed_curve_with_points_dark.svg b/docs/images/samples/line/smoothed_curve_with_points_dark.svg index 1d89f12bd..877fbc0d4 100644 --- a/docs/images/samples/line/smoothed_curve_with_points_dark.svg +++ b/docs/images/samples/line/smoothed_curve_with_points_dark.svg @@ -10,117 +10,117 @@ text { text-rendering: optimizeLegibility; } -#xXxprefixXx0 .plot-title { +#_sample_helper_static_id_prefix_0 .plot-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx3 .axis-tooltip-text-x { +#_sample_helper_static_id_prefix_3 .axis-tooltip-text-x { fill: #303030; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx3 .axis-tooltip-text-y { +#_sample_helper_static_id_prefix_3 .axis-tooltip-text-y { fill: #303030; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx3 .tooltip-text { +#_sample_helper_static_id_prefix_3 .tooltip-text { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx3 .tooltip-title { +#_sample_helper_static_id_prefix_3 .tooltip-title { fill: #bbbbbb; font-weight: bold; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx3 .tooltip-label { +#_sample_helper_static_id_prefix_3 .tooltip-label { fill: #bbbbbb; font-weight: bold; font-style: normal;font-family: sans-serif; @@ -129,7 +129,7 @@ font-size: 13.0px; } - + @@ -289,7 +289,7 @@ font-size: 13.0px; - + @@ -318,13 +318,13 @@ font-size: 13.0px; - + - + @@ -346,6 +346,6 @@ font-size: 13.0px; - + \ No newline at end of file diff --git a/docs/images/samples/line/smoothed_line.svg b/docs/images/samples/line/smoothed_line.svg index 9c83e6722..b9626aae5 100644 --- a/docs/images/samples/line/smoothed_line.svg +++ b/docs/images/samples/line/smoothed_line.svg @@ -10,117 +10,117 @@ text { text-rendering: optimizeLegibility; } -#xXxprefixXx0 .plot-title { +#_sample_helper_static_id_prefix_0 .plot-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-x { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-x { fill: #ffffff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-y { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-y { fill: #ffffff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-text { +#_sample_helper_static_id_prefix_2 .tooltip-text { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-title { +#_sample_helper_static_id_prefix_2 .tooltip-title { fill: #474747; font-weight: bold; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-label { +#_sample_helper_static_id_prefix_2 .tooltip-label { fill: #474747; font-weight: bold; font-style: normal;font-family: sans-serif; @@ -129,7 +129,7 @@ font-size: 13.0px; } - + @@ -169,7 +169,7 @@ font-size: 13.0px; - + @@ -181,7 +181,7 @@ font-size: 13.0px; - + @@ -314,6 +314,6 @@ font-size: 13.0px; - + \ No newline at end of file diff --git a/docs/images/samples/line/smoothed_line_dark.svg b/docs/images/samples/line/smoothed_line_dark.svg index b6593e199..bf48f3ed1 100644 --- a/docs/images/samples/line/smoothed_line_dark.svg +++ b/docs/images/samples/line/smoothed_line_dark.svg @@ -10,117 +10,117 @@ text { text-rendering: optimizeLegibility; } -#xXxprefixXx0 .plot-title { +#_sample_helper_static_id_prefix_0 .plot-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-x { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-x { fill: #303030; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-y { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-y { fill: #303030; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-text { +#_sample_helper_static_id_prefix_2 .tooltip-text { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-title { +#_sample_helper_static_id_prefix_2 .tooltip-title { fill: #bbbbbb; font-weight: bold; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-label { +#_sample_helper_static_id_prefix_2 .tooltip-label { fill: #bbbbbb; font-weight: bold; font-style: normal;font-family: sans-serif; @@ -129,7 +129,7 @@ font-size: 13.0px; } - + @@ -280,7 +280,7 @@ font-size: 13.0px; - + @@ -292,7 +292,7 @@ font-size: 13.0px; - + @@ -314,6 +314,6 @@ font-size: 13.0px; - + \ No newline at end of file diff --git a/docs/images/samples/line/step_line.svg b/docs/images/samples/line/step_line.svg index 64c3f4a91..ad1741e5e 100644 --- a/docs/images/samples/line/step_line.svg +++ b/docs/images/samples/line/step_line.svg @@ -10,117 +10,117 @@ text { text-rendering: optimizeLegibility; } -#xXxprefixXx0 .plot-title { +#_sample_helper_static_id_prefix_0 .plot-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx7 .axis-tooltip-text-x { +#_sample_helper_static_id_prefix_7 .axis-tooltip-text-x { fill: #ffffff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx7 .axis-tooltip-text-y { +#_sample_helper_static_id_prefix_7 .axis-tooltip-text-y { fill: #ffffff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx7 .tooltip-text { +#_sample_helper_static_id_prefix_7 .tooltip-text { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx7 .tooltip-title { +#_sample_helper_static_id_prefix_7 .tooltip-title { fill: #474747; font-weight: bold; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx7 .tooltip-label { +#_sample_helper_static_id_prefix_7 .tooltip-label { fill: #474747; font-weight: bold; font-style: normal;font-family: sans-serif; @@ -129,7 +129,7 @@ font-size: 13.0px; } - + @@ -179,7 +179,7 @@ font-size: 13.0px; - + @@ -256,37 +256,37 @@ font-size: 13.0px; - + - + - + - + - + - + @@ -459,6 +459,6 @@ font-size: 13.0px; - + \ No newline at end of file diff --git a/docs/images/samples/line/step_line_dark.svg b/docs/images/samples/line/step_line_dark.svg index 6de0472ee..81e89eec6 100644 --- a/docs/images/samples/line/step_line_dark.svg +++ b/docs/images/samples/line/step_line_dark.svg @@ -10,117 +10,117 @@ text { text-rendering: optimizeLegibility; } -#xXxprefixXx0 .plot-title { +#_sample_helper_static_id_prefix_0 .plot-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx7 .axis-tooltip-text-x { +#_sample_helper_static_id_prefix_7 .axis-tooltip-text-x { fill: #303030; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx7 .axis-tooltip-text-y { +#_sample_helper_static_id_prefix_7 .axis-tooltip-text-y { fill: #303030; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx7 .tooltip-text { +#_sample_helper_static_id_prefix_7 .tooltip-text { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx7 .tooltip-title { +#_sample_helper_static_id_prefix_7 .tooltip-title { fill: #bbbbbb; font-weight: bold; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx7 .tooltip-label { +#_sample_helper_static_id_prefix_7 .tooltip-label { fill: #bbbbbb; font-weight: bold; font-style: normal;font-family: sans-serif; @@ -129,7 +129,7 @@ font-size: 13.0px; } - + @@ -325,7 +325,7 @@ font-size: 13.0px; - + @@ -402,37 +402,37 @@ font-size: 13.0px; - + - + - + - + - + - + @@ -459,6 +459,6 @@ font-size: 13.0px; - + \ No newline at end of file diff --git a/docs/images/samples/pie/nightingale_chart.svg b/docs/images/samples/pie/nightingale_chart.svg index e035976ec..efd5fdbdf 100644 --- a/docs/images/samples/pie/nightingale_chart.svg +++ b/docs/images/samples/pie/nightingale_chart.svg @@ -10,117 +10,117 @@ text { text-rendering: optimizeLegibility; } -#xXxprefixXx0 .plot-title { +#_sample_helper_static_id_prefix_0 .plot-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-x { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-x { fill: #ffffff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-y { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-y { fill: #ffffff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-text { +#_sample_helper_static_id_prefix_2 .tooltip-text { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-title { +#_sample_helper_static_id_prefix_2 .tooltip-title { fill: #474747; font-weight: bold; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-label { +#_sample_helper_static_id_prefix_2 .tooltip-label { fill: #474747; font-weight: bold; font-style: normal;font-family: sans-serif; @@ -129,7 +129,7 @@ font-size: 13.0px; } - + @@ -147,7 +147,7 @@ font-size: 13.0px; - + @@ -215,7 +215,7 @@ font-size: 13.0px; - + @@ -315,6 +315,6 @@ font-size: 13.0px; - + \ No newline at end of file diff --git a/docs/images/samples/pie/nightingale_chart_dark.svg b/docs/images/samples/pie/nightingale_chart_dark.svg index 3f51c8576..a08554c5b 100644 --- a/docs/images/samples/pie/nightingale_chart_dark.svg +++ b/docs/images/samples/pie/nightingale_chart_dark.svg @@ -10,117 +10,117 @@ text { text-rendering: optimizeLegibility; } -#xXxprefixXx0 .plot-title { +#_sample_helper_static_id_prefix_0 .plot-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-x { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-x { fill: #303030; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-y { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-y { fill: #303030; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-text { +#_sample_helper_static_id_prefix_2 .tooltip-text { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-title { +#_sample_helper_static_id_prefix_2 .tooltip-title { fill: #bbbbbb; font-weight: bold; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-label { +#_sample_helper_static_id_prefix_2 .tooltip-label { fill: #bbbbbb; font-weight: bold; font-style: normal;font-family: sans-serif; @@ -129,7 +129,7 @@ font-size: 13.0px; } - + @@ -147,7 +147,7 @@ font-size: 13.0px; - + @@ -215,7 +215,7 @@ font-size: 13.0px; - + @@ -315,6 +315,6 @@ font-size: 13.0px; - + \ No newline at end of file diff --git a/docs/images/samples/pie/pie_base.svg b/docs/images/samples/pie/pie_base.svg index bd8d34c04..b6bb6e733 100644 --- a/docs/images/samples/pie/pie_base.svg +++ b/docs/images/samples/pie/pie_base.svg @@ -10,117 +10,117 @@ text { text-rendering: optimizeLegibility; } -#xXxprefixXx0 .plot-title { +#_sample_helper_static_id_prefix_0 .plot-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-x { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-x { fill: #ffffff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-y { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-y { fill: #ffffff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-text { +#_sample_helper_static_id_prefix_2 .tooltip-text { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-title { +#_sample_helper_static_id_prefix_2 .tooltip-title { fill: #474747; font-weight: bold; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-label { +#_sample_helper_static_id_prefix_2 .tooltip-label { fill: #474747; font-weight: bold; font-style: normal;font-family: sans-serif; @@ -129,7 +129,7 @@ font-size: 13.0px; } - + @@ -187,7 +187,7 @@ font-size: 13.0px; - + @@ -255,7 +255,7 @@ font-size: 13.0px; - + @@ -532,6 +532,6 @@ font-size: 13.0px; - + \ No newline at end of file diff --git a/docs/images/samples/pie/pie_base_dark.svg b/docs/images/samples/pie/pie_base_dark.svg index 7caccf6d2..4ac78a600 100644 --- a/docs/images/samples/pie/pie_base_dark.svg +++ b/docs/images/samples/pie/pie_base_dark.svg @@ -10,117 +10,117 @@ text { text-rendering: optimizeLegibility; } -#xXxprefixXx0 .plot-title { +#_sample_helper_static_id_prefix_0 .plot-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-x { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-x { fill: #303030; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-y { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-y { fill: #303030; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-text { +#_sample_helper_static_id_prefix_2 .tooltip-text { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-title { +#_sample_helper_static_id_prefix_2 .tooltip-title { fill: #bbbbbb; font-weight: bold; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-label { +#_sample_helper_static_id_prefix_2 .tooltip-label { fill: #bbbbbb; font-weight: bold; font-style: normal;font-family: sans-serif; @@ -129,7 +129,7 @@ font-size: 13.0px; } - + @@ -369,7 +369,7 @@ font-size: 13.0px; - + @@ -437,7 +437,7 @@ font-size: 13.0px; - + @@ -532,6 +532,6 @@ font-size: 13.0px; - + \ No newline at end of file diff --git a/docs/images/samples/pie/pie_explode.svg b/docs/images/samples/pie/pie_explode.svg index 12c7150b9..f786fa1f9 100644 --- a/docs/images/samples/pie/pie_explode.svg +++ b/docs/images/samples/pie/pie_explode.svg @@ -10,117 +10,117 @@ text { text-rendering: optimizeLegibility; } -#xXxprefixXx0 .plot-title { +#_sample_helper_static_id_prefix_0 .plot-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-x { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-x { fill: #ffffff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-y { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-y { fill: #ffffff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-text { +#_sample_helper_static_id_prefix_2 .tooltip-text { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-title { +#_sample_helper_static_id_prefix_2 .tooltip-title { fill: #474747; font-weight: bold; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-label { +#_sample_helper_static_id_prefix_2 .tooltip-label { fill: #474747; font-weight: bold; font-style: normal;font-family: sans-serif; @@ -129,7 +129,7 @@ font-size: 13.0px; } - + @@ -147,7 +147,7 @@ font-size: 13.0px; - + @@ -227,7 +227,7 @@ font-size: 13.0px; - + @@ -342,6 +342,6 @@ font-size: 13.0px; - + \ No newline at end of file diff --git a/docs/images/samples/pie/pie_explode_dark.svg b/docs/images/samples/pie/pie_explode_dark.svg index dce8de2bd..58bf29f98 100644 --- a/docs/images/samples/pie/pie_explode_dark.svg +++ b/docs/images/samples/pie/pie_explode_dark.svg @@ -10,117 +10,117 @@ text { text-rendering: optimizeLegibility; } -#xXxprefixXx0 .plot-title { +#_sample_helper_static_id_prefix_0 .plot-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-x { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-x { fill: #303030; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-y { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-y { fill: #303030; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-text { +#_sample_helper_static_id_prefix_2 .tooltip-text { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-title { +#_sample_helper_static_id_prefix_2 .tooltip-title { fill: #bbbbbb; font-weight: bold; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-label { +#_sample_helper_static_id_prefix_2 .tooltip-label { fill: #bbbbbb; font-weight: bold; font-style: normal;font-family: sans-serif; @@ -129,7 +129,7 @@ font-size: 13.0px; } - + @@ -147,7 +147,7 @@ font-size: 13.0px; - + @@ -227,7 +227,7 @@ font-size: 13.0px; - + @@ -342,6 +342,6 @@ font-size: 13.0px; - + \ No newline at end of file diff --git a/docs/images/samples/pie/pie_settings.svg b/docs/images/samples/pie/pie_settings.svg index 0af64689a..a6ec4fefa 100644 --- a/docs/images/samples/pie/pie_settings.svg +++ b/docs/images/samples/pie/pie_settings.svg @@ -10,117 +10,117 @@ text { text-rendering: optimizeLegibility; } -#xXxprefixXx0 .plot-title { +#_sample_helper_static_id_prefix_0 .plot-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-x { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-x { fill: #ffffff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-y { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-y { fill: #ffffff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-text { +#_sample_helper_static_id_prefix_2 .tooltip-text { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-title { +#_sample_helper_static_id_prefix_2 .tooltip-title { fill: #474747; font-weight: bold; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-label { +#_sample_helper_static_id_prefix_2 .tooltip-label { fill: #474747; font-weight: bold; font-style: normal;font-family: sans-serif; @@ -129,7 +129,7 @@ font-size: 13.0px; } - + @@ -147,7 +147,7 @@ font-size: 13.0px; - + @@ -227,7 +227,7 @@ font-size: 13.0px; - + @@ -342,6 +342,6 @@ font-size: 13.0px; - + \ No newline at end of file diff --git a/docs/images/samples/pie/pie_settings_dark.svg b/docs/images/samples/pie/pie_settings_dark.svg index a3c1484d6..93828c772 100644 --- a/docs/images/samples/pie/pie_settings_dark.svg +++ b/docs/images/samples/pie/pie_settings_dark.svg @@ -10,117 +10,117 @@ text { text-rendering: optimizeLegibility; } -#xXxprefixXx0 .plot-title { +#_sample_helper_static_id_prefix_0 .plot-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-x { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-x { fill: #303030; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-y { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-y { fill: #303030; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-text { +#_sample_helper_static_id_prefix_2 .tooltip-text { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-title { +#_sample_helper_static_id_prefix_2 .tooltip-title { fill: #bbbbbb; font-weight: bold; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-label { +#_sample_helper_static_id_prefix_2 .tooltip-label { fill: #bbbbbb; font-weight: bold; font-style: normal;font-family: sans-serif; @@ -129,7 +129,7 @@ font-size: 13.0px; } - + @@ -147,7 +147,7 @@ font-size: 13.0px; - + @@ -227,7 +227,7 @@ font-size: 13.0px; - + @@ -342,6 +342,6 @@ font-size: 13.0px; - + \ No newline at end of file diff --git a/docs/images/samples/pie/pie_with_count.svg b/docs/images/samples/pie/pie_with_count.svg index 0fa0c57ae..8ea1cc284 100644 --- a/docs/images/samples/pie/pie_with_count.svg +++ b/docs/images/samples/pie/pie_with_count.svg @@ -10,117 +10,117 @@ text { text-rendering: optimizeLegibility; } -#xXxprefixXx0 .plot-title { +#_sample_helper_static_id_prefix_0 .plot-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-x { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-x { fill: #ffffff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-y { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-y { fill: #ffffff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-text { +#_sample_helper_static_id_prefix_2 .tooltip-text { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-title { +#_sample_helper_static_id_prefix_2 .tooltip-title { fill: #474747; font-weight: bold; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-label { +#_sample_helper_static_id_prefix_2 .tooltip-label { fill: #474747; font-weight: bold; font-style: normal;font-family: sans-serif; @@ -129,7 +129,7 @@ font-size: 13.0px; } - + @@ -147,7 +147,7 @@ font-size: 13.0px; - + @@ -227,7 +227,7 @@ font-size: 13.0px; - + @@ -342,6 +342,6 @@ font-size: 13.0px; - + \ No newline at end of file diff --git a/docs/images/samples/pie/pie_with_count_dark.svg b/docs/images/samples/pie/pie_with_count_dark.svg index 0b8b44952..8033d5960 100644 --- a/docs/images/samples/pie/pie_with_count_dark.svg +++ b/docs/images/samples/pie/pie_with_count_dark.svg @@ -10,117 +10,117 @@ text { text-rendering: optimizeLegibility; } -#xXxprefixXx0 .plot-title { +#_sample_helper_static_id_prefix_0 .plot-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-x { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-x { fill: #303030; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-y { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-y { fill: #303030; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-text { +#_sample_helper_static_id_prefix_2 .tooltip-text { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-title { +#_sample_helper_static_id_prefix_2 .tooltip-title { fill: #bbbbbb; font-weight: bold; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-label { +#_sample_helper_static_id_prefix_2 .tooltip-label { fill: #bbbbbb; font-weight: bold; font-style: normal;font-family: sans-serif; @@ -129,7 +129,7 @@ font-size: 13.0px; } - + @@ -147,7 +147,7 @@ font-size: 13.0px; - + @@ -227,7 +227,7 @@ font-size: 13.0px; - + @@ -342,6 +342,6 @@ font-size: 13.0px; - + \ No newline at end of file diff --git a/docs/images/samples/pie/pie_with_void.svg b/docs/images/samples/pie/pie_with_void.svg index 2c7226c96..5d6d52f9c 100644 --- a/docs/images/samples/pie/pie_with_void.svg +++ b/docs/images/samples/pie/pie_with_void.svg @@ -10,117 +10,117 @@ text { text-rendering: optimizeLegibility; } -#xXxprefixXx0 .plot-title { +#_sample_helper_static_id_prefix_0 .plot-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-x { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-x { fill: #ffffff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-y { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-y { fill: #ffffff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-text { +#_sample_helper_static_id_prefix_2 .tooltip-text { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-title { +#_sample_helper_static_id_prefix_2 .tooltip-title { fill: #474747; font-weight: bold; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-label { +#_sample_helper_static_id_prefix_2 .tooltip-label { fill: #474747; font-weight: bold; font-style: normal;font-family: sans-serif; @@ -129,7 +129,7 @@ font-size: 13.0px; } - + @@ -147,7 +147,7 @@ font-size: 13.0px; - + @@ -191,7 +191,7 @@ font-size: 13.0px; - + @@ -261,6 +261,6 @@ font-size: 13.0px; - + \ No newline at end of file diff --git a/docs/images/samples/pie/pie_with_void_dark.svg b/docs/images/samples/pie/pie_with_void_dark.svg index 1c248d6a7..c1890391d 100644 --- a/docs/images/samples/pie/pie_with_void_dark.svg +++ b/docs/images/samples/pie/pie_with_void_dark.svg @@ -10,117 +10,117 @@ text { text-rendering: optimizeLegibility; } -#xXxprefixXx0 .plot-title { +#_sample_helper_static_id_prefix_0 .plot-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-x { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-x { fill: #303030; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-y { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-y { fill: #303030; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-text { +#_sample_helper_static_id_prefix_2 .tooltip-text { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-title { +#_sample_helper_static_id_prefix_2 .tooltip-title { fill: #bbbbbb; font-weight: bold; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-label { +#_sample_helper_static_id_prefix_2 .tooltip-label { fill: #bbbbbb; font-weight: bold; font-style: normal;font-family: sans-serif; @@ -129,7 +129,7 @@ font-size: 13.0px; } - + @@ -147,7 +147,7 @@ font-size: 13.0px; - + @@ -191,7 +191,7 @@ font-size: 13.0px; - + @@ -261,6 +261,6 @@ font-size: 13.0px; - + \ No newline at end of file diff --git a/docs/images/samples/points/basic_points_plot.svg b/docs/images/samples/points/basic_points_plot.svg index f7409dc4d..62be5d00a 100644 --- a/docs/images/samples/points/basic_points_plot.svg +++ b/docs/images/samples/points/basic_points_plot.svg @@ -10,117 +10,117 @@ text { text-rendering: optimizeLegibility; } -#xXxprefixXx0 .plot-title { +#_sample_helper_static_id_prefix_0 .plot-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-x { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-x { fill: #ffffff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-y { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-y { fill: #ffffff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-text { +#_sample_helper_static_id_prefix_2 .tooltip-text { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-title { +#_sample_helper_static_id_prefix_2 .tooltip-title { fill: #474747; font-weight: bold; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-label { +#_sample_helper_static_id_prefix_2 .tooltip-label { fill: #474747; font-weight: bold; font-style: normal;font-family: sans-serif; @@ -129,7 +129,7 @@ font-size: 13.0px; } - + @@ -175,7 +175,7 @@ font-size: 13.0px; - + @@ -204,7 +204,7 @@ font-size: 13.0px; - + @@ -360,6 +360,6 @@ font-size: 13.0px; - + \ No newline at end of file diff --git a/docs/images/samples/points/basic_points_plot_dark.svg b/docs/images/samples/points/basic_points_plot_dark.svg index c5b4aaa54..411f5e5c3 100644 --- a/docs/images/samples/points/basic_points_plot_dark.svg +++ b/docs/images/samples/points/basic_points_plot_dark.svg @@ -10,117 +10,117 @@ text { text-rendering: optimizeLegibility; } -#xXxprefixXx0 .plot-title { +#_sample_helper_static_id_prefix_0 .plot-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-x { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-x { fill: #303030; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-y { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-y { fill: #303030; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-text { +#_sample_helper_static_id_prefix_2 .tooltip-text { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-title { +#_sample_helper_static_id_prefix_2 .tooltip-title { fill: #bbbbbb; font-weight: bold; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-label { +#_sample_helper_static_id_prefix_2 .tooltip-label { fill: #bbbbbb; font-weight: bold; font-style: normal;font-family: sans-serif; @@ -129,7 +129,7 @@ font-size: 13.0px; } - + @@ -309,7 +309,7 @@ font-size: 13.0px; - + @@ -338,7 +338,7 @@ font-size: 13.0px; - + @@ -360,6 +360,6 @@ font-size: 13.0px; - + \ No newline at end of file diff --git a/docs/images/samples/points/bubble_chart.svg b/docs/images/samples/points/bubble_chart.svg index cd788389c..3683458b8 100644 --- a/docs/images/samples/points/bubble_chart.svg +++ b/docs/images/samples/points/bubble_chart.svg @@ -10,117 +10,117 @@ text { text-rendering: optimizeLegibility; } -#xXxprefixXx0 .plot-title { +#_sample_helper_static_id_prefix_0 .plot-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-x { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-x { fill: #ffffff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-y { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-y { fill: #ffffff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-text { +#_sample_helper_static_id_prefix_2 .tooltip-text { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-title { +#_sample_helper_static_id_prefix_2 .tooltip-title { fill: #474747; font-weight: bold; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-label { +#_sample_helper_static_id_prefix_2 .tooltip-label { fill: #474747; font-weight: bold; font-style: normal;font-family: sans-serif; @@ -129,7 +129,7 @@ font-size: 13.0px; } - + @@ -167,7 +167,7 @@ font-size: 13.0px; - + @@ -209,7 +209,7 @@ font-size: 13.0px; - + @@ -461,6 +461,6 @@ font-size: 13.0px; - + \ No newline at end of file diff --git a/docs/images/samples/points/bubble_chart_dark.svg b/docs/images/samples/points/bubble_chart_dark.svg index 500054302..1ea9665d5 100644 --- a/docs/images/samples/points/bubble_chart_dark.svg +++ b/docs/images/samples/points/bubble_chart_dark.svg @@ -10,117 +10,117 @@ text { text-rendering: optimizeLegibility; } -#xXxprefixXx0 .plot-title { +#_sample_helper_static_id_prefix_0 .plot-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-x { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-x { fill: #303030; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-y { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-y { fill: #303030; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-text { +#_sample_helper_static_id_prefix_2 .tooltip-text { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-title { +#_sample_helper_static_id_prefix_2 .tooltip-title { fill: #bbbbbb; font-weight: bold; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-label { +#_sample_helper_static_id_prefix_2 .tooltip-label { fill: #bbbbbb; font-weight: bold; font-style: normal;font-family: sans-serif; @@ -129,7 +129,7 @@ font-size: 13.0px; } - + @@ -267,7 +267,7 @@ font-size: 13.0px; - + @@ -309,7 +309,7 @@ font-size: 13.0px; - + @@ -461,6 +461,6 @@ font-size: 13.0px; - + \ No newline at end of file diff --git a/docs/images/samples/points/complex_bubble_chart.svg b/docs/images/samples/points/complex_bubble_chart.svg index 88be9bec1..947da6856 100644 --- a/docs/images/samples/points/complex_bubble_chart.svg +++ b/docs/images/samples/points/complex_bubble_chart.svg @@ -10,117 +10,117 @@ text { text-rendering: optimizeLegibility; } -#xXxprefixXx0 .plot-title { +#_sample_helper_static_id_prefix_0 .plot-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-x { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-x { fill: #ffffff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-y { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-y { fill: #ffffff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-text { +#_sample_helper_static_id_prefix_2 .tooltip-text { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-title { +#_sample_helper_static_id_prefix_2 .tooltip-title { fill: #474747; font-weight: bold; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-label { +#_sample_helper_static_id_prefix_2 .tooltip-label { fill: #474747; font-weight: bold; font-style: normal;font-family: sans-serif; @@ -129,7 +129,7 @@ font-size: 13.0px; } - + @@ -171,7 +171,7 @@ font-size: 13.0px; - + @@ -221,7 +221,7 @@ font-size: 13.0px; - + @@ -408,6 +408,6 @@ font-size: 13.0px; - + \ No newline at end of file diff --git a/docs/images/samples/points/complex_bubble_chart_dark.svg b/docs/images/samples/points/complex_bubble_chart_dark.svg index 5392d7dab..c9bb4d6f4 100644 --- a/docs/images/samples/points/complex_bubble_chart_dark.svg +++ b/docs/images/samples/points/complex_bubble_chart_dark.svg @@ -10,117 +10,117 @@ text { text-rendering: optimizeLegibility; } -#xXxprefixXx0 .plot-title { +#_sample_helper_static_id_prefix_0 .plot-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-x { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-x { fill: #303030; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-y { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-y { fill: #303030; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-text { +#_sample_helper_static_id_prefix_2 .tooltip-text { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-title { +#_sample_helper_static_id_prefix_2 .tooltip-title { fill: #bbbbbb; font-weight: bold; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-label { +#_sample_helper_static_id_prefix_2 .tooltip-label { fill: #bbbbbb; font-weight: bold; font-style: normal;font-family: sans-serif; @@ -129,7 +129,7 @@ font-size: 13.0px; } - + @@ -291,7 +291,7 @@ font-size: 13.0px; - + @@ -341,7 +341,7 @@ font-size: 13.0px; - + @@ -408,6 +408,6 @@ font-size: 13.0px; - + \ No newline at end of file diff --git a/docs/images/samples/points/complex_bubble_chart_part2.svg b/docs/images/samples/points/complex_bubble_chart_part2.svg index 9cab58773..55a185d62 100644 --- a/docs/images/samples/points/complex_bubble_chart_part2.svg +++ b/docs/images/samples/points/complex_bubble_chart_part2.svg @@ -10,117 +10,117 @@ text { text-rendering: optimizeLegibility; } -#xXxprefixXx0 .plot-title { +#_sample_helper_static_id_prefix_0 .plot-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-x { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-x { fill: #ffffff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-y { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-y { fill: #ffffff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-text { +#_sample_helper_static_id_prefix_2 .tooltip-text { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-title { +#_sample_helper_static_id_prefix_2 .tooltip-title { fill: #474747; font-weight: bold; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-label { +#_sample_helper_static_id_prefix_2 .tooltip-label { fill: #474747; font-weight: bold; font-style: normal;font-family: sans-serif; @@ -129,7 +129,7 @@ font-size: 13.0px; } - + @@ -171,7 +171,7 @@ font-size: 13.0px; - + @@ -202,7 +202,7 @@ font-size: 13.0px; - + @@ -668,6 +668,6 @@ font-size: 13.0px; - + \ No newline at end of file diff --git a/docs/images/samples/points/complex_bubble_chart_part2_dark.svg b/docs/images/samples/points/complex_bubble_chart_part2_dark.svg index 6bb8374a6..90e6c2f96 100644 --- a/docs/images/samples/points/complex_bubble_chart_part2_dark.svg +++ b/docs/images/samples/points/complex_bubble_chart_part2_dark.svg @@ -10,117 +10,117 @@ text { text-rendering: optimizeLegibility; } -#xXxprefixXx0 .plot-title { +#_sample_helper_static_id_prefix_0 .plot-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-x { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-x { fill: #303030; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-y { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-y { fill: #303030; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-text { +#_sample_helper_static_id_prefix_2 .tooltip-text { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-title { +#_sample_helper_static_id_prefix_2 .tooltip-title { fill: #bbbbbb; font-weight: bold; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-label { +#_sample_helper_static_id_prefix_2 .tooltip-label { fill: #bbbbbb; font-weight: bold; font-style: normal;font-family: sans-serif; @@ -129,7 +129,7 @@ font-size: 13.0px; } - + @@ -293,7 +293,7 @@ font-size: 13.0px; - + @@ -324,7 +324,7 @@ font-size: 13.0px; - + @@ -668,6 +668,6 @@ font-size: 13.0px; - + \ No newline at end of file diff --git a/docs/images/samples/points/complex_bubble_chart_part3.svg b/docs/images/samples/points/complex_bubble_chart_part3.svg index 504acfb28..590b616dd 100644 --- a/docs/images/samples/points/complex_bubble_chart_part3.svg +++ b/docs/images/samples/points/complex_bubble_chart_part3.svg @@ -10,117 +10,117 @@ text { text-rendering: optimizeLegibility; } -#xXxprefixXx0 .plot-title { +#_sample_helper_static_id_prefix_0 .plot-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-x { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-x { fill: #ffffff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-y { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-y { fill: #ffffff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-text { +#_sample_helper_static_id_prefix_2 .tooltip-text { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-title { +#_sample_helper_static_id_prefix_2 .tooltip-title { fill: #474747; font-weight: bold; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-label { +#_sample_helper_static_id_prefix_2 .tooltip-label { fill: #474747; font-weight: bold; font-style: normal;font-family: sans-serif; @@ -129,7 +129,7 @@ font-size: 13.0px; } - + @@ -171,7 +171,7 @@ font-size: 13.0px; - + @@ -202,7 +202,7 @@ font-size: 13.0px; - + @@ -666,6 +666,6 @@ font-size: 13.0px; - + \ No newline at end of file diff --git a/docs/images/samples/points/complex_bubble_chart_part3_dark.svg b/docs/images/samples/points/complex_bubble_chart_part3_dark.svg index 2468ad6a7..b500b0232 100644 --- a/docs/images/samples/points/complex_bubble_chart_part3_dark.svg +++ b/docs/images/samples/points/complex_bubble_chart_part3_dark.svg @@ -10,117 +10,117 @@ text { text-rendering: optimizeLegibility; } -#xXxprefixXx0 .plot-title { +#_sample_helper_static_id_prefix_0 .plot-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-x { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-x { fill: #303030; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-y { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-y { fill: #303030; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-text { +#_sample_helper_static_id_prefix_2 .tooltip-text { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-title { +#_sample_helper_static_id_prefix_2 .tooltip-title { fill: #bbbbbb; font-weight: bold; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-label { +#_sample_helper_static_id_prefix_2 .tooltip-label { fill: #bbbbbb; font-weight: bold; font-style: normal;font-family: sans-serif; @@ -129,7 +129,7 @@ font-size: 13.0px; } - + @@ -291,7 +291,7 @@ font-size: 13.0px; - + @@ -322,7 +322,7 @@ font-size: 13.0px; - + @@ -666,6 +666,6 @@ font-size: 13.0px; - + \ No newline at end of file diff --git a/docs/images/samples/points/fixed_points.svg b/docs/images/samples/points/fixed_points.svg index b25ea6c7f..b722b7ef3 100644 --- a/docs/images/samples/points/fixed_points.svg +++ b/docs/images/samples/points/fixed_points.svg @@ -10,117 +10,117 @@ text { text-rendering: optimizeLegibility; } -#xXxprefixXx0 .plot-title { +#_sample_helper_static_id_prefix_0 .plot-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-x { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-x { fill: #ffffff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-y { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-y { fill: #ffffff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-text { +#_sample_helper_static_id_prefix_2 .tooltip-text { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-title { +#_sample_helper_static_id_prefix_2 .tooltip-title { fill: #474747; font-weight: bold; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-label { +#_sample_helper_static_id_prefix_2 .tooltip-label { fill: #474747; font-weight: bold; font-style: normal;font-family: sans-serif; @@ -129,7 +129,7 @@ font-size: 13.0px; } - + @@ -179,7 +179,7 @@ font-size: 13.0px; - + @@ -198,7 +198,7 @@ font-size: 13.0px; - + @@ -374,6 +374,6 @@ font-size: 13.0px; - + \ No newline at end of file diff --git a/docs/images/samples/points/fixed_points_dark.svg b/docs/images/samples/points/fixed_points_dark.svg index 2ca3486f1..de9802014 100644 --- a/docs/images/samples/points/fixed_points_dark.svg +++ b/docs/images/samples/points/fixed_points_dark.svg @@ -10,117 +10,117 @@ text { text-rendering: optimizeLegibility; } -#xXxprefixXx0 .plot-title { +#_sample_helper_static_id_prefix_0 .plot-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-x { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-x { fill: #303030; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-y { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-y { fill: #303030; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-text { +#_sample_helper_static_id_prefix_2 .tooltip-text { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-title { +#_sample_helper_static_id_prefix_2 .tooltip-title { fill: #bbbbbb; font-weight: bold; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-label { +#_sample_helper_static_id_prefix_2 .tooltip-label { fill: #bbbbbb; font-weight: bold; font-style: normal;font-family: sans-serif; @@ -129,7 +129,7 @@ font-size: 13.0px; } - + @@ -333,7 +333,7 @@ font-size: 13.0px; - + @@ -352,7 +352,7 @@ font-size: 13.0px; - + @@ -374,6 +374,6 @@ font-size: 13.0px; - + \ No newline at end of file diff --git a/docs/images/samples/points/functional_scatter_plot.svg b/docs/images/samples/points/functional_scatter_plot.svg index 76b3f5a1a..b1f03797b 100644 --- a/docs/images/samples/points/functional_scatter_plot.svg +++ b/docs/images/samples/points/functional_scatter_plot.svg @@ -10,117 +10,117 @@ text { text-rendering: optimizeLegibility; } -#xXxprefixXx0 .plot-title { +#_sample_helper_static_id_prefix_0 .plot-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-x { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-x { fill: #ffffff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-y { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-y { fill: #ffffff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-text { +#_sample_helper_static_id_prefix_2 .tooltip-text { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-title { +#_sample_helper_static_id_prefix_2 .tooltip-title { fill: #474747; font-weight: bold; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-label { +#_sample_helper_static_id_prefix_2 .tooltip-label { fill: #474747; font-weight: bold; font-style: normal;font-family: sans-serif; @@ -129,7 +129,7 @@ font-size: 13.0px; } - + @@ -179,7 +179,7 @@ font-size: 13.0px; - + @@ -252,7 +252,7 @@ font-size: 13.0px; - + @@ -420,6 +420,6 @@ font-size: 13.0px; - + \ No newline at end of file diff --git a/docs/images/samples/points/functional_scatter_plot_dark.svg b/docs/images/samples/points/functional_scatter_plot_dark.svg index 619022767..d85d317ca 100644 --- a/docs/images/samples/points/functional_scatter_plot_dark.svg +++ b/docs/images/samples/points/functional_scatter_plot_dark.svg @@ -10,117 +10,117 @@ text { text-rendering: optimizeLegibility; } -#xXxprefixXx0 .plot-title { +#_sample_helper_static_id_prefix_0 .plot-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-x { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-x { fill: #303030; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-y { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-y { fill: #303030; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-text { +#_sample_helper_static_id_prefix_2 .tooltip-text { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-title { +#_sample_helper_static_id_prefix_2 .tooltip-title { fill: #bbbbbb; font-weight: bold; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-label { +#_sample_helper_static_id_prefix_2 .tooltip-label { fill: #bbbbbb; font-weight: bold; font-style: normal;font-family: sans-serif; @@ -129,7 +129,7 @@ font-size: 13.0px; } - + @@ -325,7 +325,7 @@ font-size: 13.0px; - + @@ -398,7 +398,7 @@ font-size: 13.0px; - + @@ -420,6 +420,6 @@ font-size: 13.0px; - + \ No newline at end of file diff --git a/docs/images/samples/points/points_gradient.svg b/docs/images/samples/points/points_gradient.svg index bb36ab900..95d2b7d8e 100644 --- a/docs/images/samples/points/points_gradient.svg +++ b/docs/images/samples/points/points_gradient.svg @@ -10,117 +10,117 @@ text { text-rendering: optimizeLegibility; } -#xXxprefixXx0 .plot-title { +#_sample_helper_static_id_prefix_0 .plot-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-x { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-x { fill: #ffffff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-y { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-y { fill: #ffffff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-text { +#_sample_helper_static_id_prefix_2 .tooltip-text { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-title { +#_sample_helper_static_id_prefix_2 .tooltip-title { fill: #474747; font-weight: bold; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-label { +#_sample_helper_static_id_prefix_2 .tooltip-label { fill: #474747; font-weight: bold; font-style: normal;font-family: sans-serif; @@ -129,7 +129,7 @@ font-size: 13.0px; } - + @@ -187,7 +187,7 @@ font-size: 13.0px; - + @@ -299,7 +299,7 @@ font-size: 13.0px; - + @@ -612,6 +612,6 @@ font-size: 13.0px; - + \ No newline at end of file diff --git a/docs/images/samples/points/points_gradient_dark.svg b/docs/images/samples/points/points_gradient_dark.svg index 1fff22f4d..50ca0ba68 100644 --- a/docs/images/samples/points/points_gradient_dark.svg +++ b/docs/images/samples/points/points_gradient_dark.svg @@ -10,117 +10,117 @@ text { text-rendering: optimizeLegibility; } -#xXxprefixXx0 .plot-title { +#_sample_helper_static_id_prefix_0 .plot-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-x { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-x { fill: #303030; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-y { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-y { fill: #303030; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-text { +#_sample_helper_static_id_prefix_2 .tooltip-text { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-title { +#_sample_helper_static_id_prefix_2 .tooltip-title { fill: #bbbbbb; font-weight: bold; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-label { +#_sample_helper_static_id_prefix_2 .tooltip-label { fill: #bbbbbb; font-weight: bold; font-style: normal;font-family: sans-serif; @@ -129,7 +129,7 @@ font-size: 13.0px; } - + @@ -369,7 +369,7 @@ font-size: 13.0px; - + @@ -481,7 +481,7 @@ font-size: 13.0px; - + @@ -612,6 +612,6 @@ font-size: 13.0px; - + \ No newline at end of file diff --git a/docs/images/samples/points/points_settings.svg b/docs/images/samples/points/points_settings.svg index da245ad54..d3a4f31ab 100644 --- a/docs/images/samples/points/points_settings.svg +++ b/docs/images/samples/points/points_settings.svg @@ -10,117 +10,117 @@ text { text-rendering: optimizeLegibility; } -#xXxprefixXx0 .plot-title { +#_sample_helper_static_id_prefix_0 .plot-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-x { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-x { fill: #ffffff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-y { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-y { fill: #ffffff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-text { +#_sample_helper_static_id_prefix_2 .tooltip-text { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-title { +#_sample_helper_static_id_prefix_2 .tooltip-title { fill: #474747; font-weight: bold; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-label { +#_sample_helper_static_id_prefix_2 .tooltip-label { fill: #474747; font-weight: bold; font-style: normal;font-family: sans-serif; @@ -129,7 +129,7 @@ font-size: 13.0px; } - + @@ -175,7 +175,7 @@ font-size: 13.0px; - + @@ -204,7 +204,7 @@ font-size: 13.0px; - + @@ -360,6 +360,6 @@ font-size: 13.0px; - + \ No newline at end of file diff --git a/docs/images/samples/points/points_settings_dark.svg b/docs/images/samples/points/points_settings_dark.svg index 4adf0e9b8..d74a7879c 100644 --- a/docs/images/samples/points/points_settings_dark.svg +++ b/docs/images/samples/points/points_settings_dark.svg @@ -10,117 +10,117 @@ text { text-rendering: optimizeLegibility; } -#xXxprefixXx0 .plot-title { +#_sample_helper_static_id_prefix_0 .plot-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-x { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-x { fill: #303030; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-y { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-y { fill: #303030; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-text { +#_sample_helper_static_id_prefix_2 .tooltip-text { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-title { +#_sample_helper_static_id_prefix_2 .tooltip-title { fill: #bbbbbb; font-weight: bold; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-label { +#_sample_helper_static_id_prefix_2 .tooltip-label { fill: #bbbbbb; font-weight: bold; font-style: normal;font-family: sans-serif; @@ -129,7 +129,7 @@ font-size: 13.0px; } - + @@ -309,7 +309,7 @@ font-size: 13.0px; - + @@ -338,7 +338,7 @@ font-size: 13.0px; - + @@ -360,6 +360,6 @@ font-size: 13.0px; - + \ No newline at end of file diff --git a/docs/images/samples/points/points_with_abLine.svg b/docs/images/samples/points/points_with_abLine.svg index 6d759b583..a056e69a8 100644 --- a/docs/images/samples/points/points_with_abLine.svg +++ b/docs/images/samples/points/points_with_abLine.svg @@ -10,117 +10,117 @@ text { text-rendering: optimizeLegibility; } -#xXxprefixXx0 .plot-title { +#_sample_helper_static_id_prefix_0 .plot-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx3 .axis-tooltip-text-x { +#_sample_helper_static_id_prefix_3 .axis-tooltip-text-x { fill: #ffffff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx3 .axis-tooltip-text-y { +#_sample_helper_static_id_prefix_3 .axis-tooltip-text-y { fill: #ffffff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx3 .tooltip-text { +#_sample_helper_static_id_prefix_3 .tooltip-text { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx3 .tooltip-title { +#_sample_helper_static_id_prefix_3 .tooltip-title { fill: #474747; font-weight: bold; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx3 .tooltip-label { +#_sample_helper_static_id_prefix_3 .tooltip-label { fill: #474747; font-weight: bold; font-style: normal;font-family: sans-serif; @@ -129,7 +129,7 @@ font-size: 13.0px; } - + @@ -171,7 +171,7 @@ font-size: 13.0px; - + @@ -202,13 +202,13 @@ font-size: 13.0px; - + - + @@ -346,6 +346,6 @@ font-size: 13.0px; - + \ No newline at end of file diff --git a/docs/images/samples/points/points_with_abLine_dark.svg b/docs/images/samples/points/points_with_abLine_dark.svg index 8b6ca0793..64a517cea 100644 --- a/docs/images/samples/points/points_with_abLine_dark.svg +++ b/docs/images/samples/points/points_with_abLine_dark.svg @@ -10,117 +10,117 @@ text { text-rendering: optimizeLegibility; } -#xXxprefixXx0 .plot-title { +#_sample_helper_static_id_prefix_0 .plot-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx3 .axis-tooltip-text-x { +#_sample_helper_static_id_prefix_3 .axis-tooltip-text-x { fill: #303030; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx3 .axis-tooltip-text-y { +#_sample_helper_static_id_prefix_3 .axis-tooltip-text-y { fill: #303030; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx3 .tooltip-text { +#_sample_helper_static_id_prefix_3 .tooltip-text { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx3 .tooltip-title { +#_sample_helper_static_id_prefix_3 .tooltip-title { fill: #bbbbbb; font-weight: bold; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx3 .tooltip-label { +#_sample_helper_static_id_prefix_3 .tooltip-label { fill: #bbbbbb; font-weight: bold; font-style: normal;font-family: sans-serif; @@ -129,7 +129,7 @@ font-size: 13.0px; } - + @@ -287,7 +287,7 @@ font-size: 13.0px; - + @@ -318,13 +318,13 @@ font-size: 13.0px; - + - + @@ -346,6 +346,6 @@ font-size: 13.0px; - + \ No newline at end of file diff --git a/docs/images/samples/points/points_with_color_by_category.svg b/docs/images/samples/points/points_with_color_by_category.svg index b2867f1ac..8e5d7c0da 100644 --- a/docs/images/samples/points/points_with_color_by_category.svg +++ b/docs/images/samples/points/points_with_color_by_category.svg @@ -10,117 +10,117 @@ text { text-rendering: optimizeLegibility; } -#xXxprefixXx0 .plot-title { +#_sample_helper_static_id_prefix_0 .plot-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-x { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-x { fill: #ffffff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-y { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-y { fill: #ffffff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-text { +#_sample_helper_static_id_prefix_2 .tooltip-text { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-title { +#_sample_helper_static_id_prefix_2 .tooltip-title { fill: #474747; font-weight: bold; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-label { +#_sample_helper_static_id_prefix_2 .tooltip-label { fill: #474747; font-weight: bold; font-style: normal;font-family: sans-serif; @@ -129,7 +129,7 @@ font-size: 13.0px; } - + @@ -171,7 +171,7 @@ font-size: 13.0px; - + @@ -203,7 +203,7 @@ font-size: 13.0px; - + @@ -395,6 +395,6 @@ font-size: 13.0px; - + \ No newline at end of file diff --git a/docs/images/samples/points/points_with_color_by_category_dark.svg b/docs/images/samples/points/points_with_color_by_category_dark.svg index 7dfcc9c66..5a5ced7c1 100644 --- a/docs/images/samples/points/points_with_color_by_category_dark.svg +++ b/docs/images/samples/points/points_with_color_by_category_dark.svg @@ -10,117 +10,117 @@ text { text-rendering: optimizeLegibility; } -#xXxprefixXx0 .plot-title { +#_sample_helper_static_id_prefix_0 .plot-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-x { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-x { fill: #303030; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-y { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-y { fill: #303030; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-text { +#_sample_helper_static_id_prefix_2 .tooltip-text { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-title { +#_sample_helper_static_id_prefix_2 .tooltip-title { fill: #bbbbbb; font-weight: bold; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-label { +#_sample_helper_static_id_prefix_2 .tooltip-label { fill: #bbbbbb; font-weight: bold; font-style: normal;font-family: sans-serif; @@ -129,7 +129,7 @@ font-size: 13.0px; } - + @@ -291,7 +291,7 @@ font-size: 13.0px; - + @@ -323,7 +323,7 @@ font-size: 13.0px; - + @@ -395,6 +395,6 @@ font-size: 13.0px; - + \ No newline at end of file diff --git a/docs/images/samples/ribbon/regression_confidence_band.svg b/docs/images/samples/ribbon/regression_confidence_band.svg index 94a5daee0..11c4685bc 100644 --- a/docs/images/samples/ribbon/regression_confidence_band.svg +++ b/docs/images/samples/ribbon/regression_confidence_band.svg @@ -10,117 +10,117 @@ text { text-rendering: optimizeLegibility; } -#xXxprefixXx0 .plot-title { +#_sample_helper_static_id_prefix_0 .plot-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx3 .axis-tooltip-text-x { +#_sample_helper_static_id_prefix_3 .axis-tooltip-text-x { fill: #ffffff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx3 .axis-tooltip-text-y { +#_sample_helper_static_id_prefix_3 .axis-tooltip-text-y { fill: #ffffff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx3 .tooltip-text { +#_sample_helper_static_id_prefix_3 .tooltip-text { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx3 .tooltip-title { +#_sample_helper_static_id_prefix_3 .tooltip-title { fill: #474747; font-weight: bold; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx3 .tooltip-label { +#_sample_helper_static_id_prefix_3 .tooltip-label { fill: #474747; font-weight: bold; font-style: normal;font-family: sans-serif; @@ -129,7 +129,7 @@ font-size: 13.0px; } - + @@ -173,7 +173,7 @@ font-size: 13.0px; - + @@ -199,13 +199,13 @@ font-size: 13.0px; - + - + @@ -352,6 +352,6 @@ font-size: 13.0px; - + \ No newline at end of file diff --git a/docs/images/samples/ribbon/regression_confidence_band_dark.svg b/docs/images/samples/ribbon/regression_confidence_band_dark.svg index 49479565b..22264cb74 100644 --- a/docs/images/samples/ribbon/regression_confidence_band_dark.svg +++ b/docs/images/samples/ribbon/regression_confidence_band_dark.svg @@ -10,117 +10,117 @@ text { text-rendering: optimizeLegibility; } -#xXxprefixXx0 .plot-title { +#_sample_helper_static_id_prefix_0 .plot-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx3 .axis-tooltip-text-x { +#_sample_helper_static_id_prefix_3 .axis-tooltip-text-x { fill: #303030; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx3 .axis-tooltip-text-y { +#_sample_helper_static_id_prefix_3 .axis-tooltip-text-y { fill: #303030; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx3 .tooltip-text { +#_sample_helper_static_id_prefix_3 .tooltip-text { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx3 .tooltip-title { +#_sample_helper_static_id_prefix_3 .tooltip-title { fill: #bbbbbb; font-weight: bold; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx3 .tooltip-label { +#_sample_helper_static_id_prefix_3 .tooltip-label { fill: #bbbbbb; font-weight: bold; font-style: normal;font-family: sans-serif; @@ -129,7 +129,7 @@ font-size: 13.0px; } - + @@ -298,7 +298,7 @@ font-size: 13.0px; - + @@ -324,13 +324,13 @@ font-size: 13.0px; - + - + @@ -352,6 +352,6 @@ font-size: 13.0px; - + \ No newline at end of file diff --git a/docs/images/samples/ribbon/ribbon_function_plot.svg b/docs/images/samples/ribbon/ribbon_function_plot.svg index 4bb9fc3a0..636c760af 100644 --- a/docs/images/samples/ribbon/ribbon_function_plot.svg +++ b/docs/images/samples/ribbon/ribbon_function_plot.svg @@ -10,117 +10,117 @@ text { text-rendering: optimizeLegibility; } -#xXxprefixXx0 .plot-title { +#_sample_helper_static_id_prefix_0 .plot-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-x { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-x { fill: #ffffff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-y { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-y { fill: #ffffff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-text { +#_sample_helper_static_id_prefix_2 .tooltip-text { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-title { +#_sample_helper_static_id_prefix_2 .tooltip-title { fill: #474747; font-weight: bold; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-label { +#_sample_helper_static_id_prefix_2 .tooltip-label { fill: #474747; font-weight: bold; font-style: normal;font-family: sans-serif; @@ -129,7 +129,7 @@ font-size: 13.0px; } - + @@ -171,7 +171,7 @@ font-size: 13.0px; - + @@ -191,7 +191,7 @@ font-size: 13.0px; - + @@ -335,6 +335,6 @@ font-size: 13.0px; - + \ No newline at end of file diff --git a/docs/images/samples/ribbon/ribbon_function_plot_dark.svg b/docs/images/samples/ribbon/ribbon_function_plot_dark.svg index 2cdc41128..545f8446c 100644 --- a/docs/images/samples/ribbon/ribbon_function_plot_dark.svg +++ b/docs/images/samples/ribbon/ribbon_function_plot_dark.svg @@ -10,117 +10,117 @@ text { text-rendering: optimizeLegibility; } -#xXxprefixXx0 .plot-title { +#_sample_helper_static_id_prefix_0 .plot-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-x { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-x { fill: #303030; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-y { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-y { fill: #303030; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-text { +#_sample_helper_static_id_prefix_2 .tooltip-text { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-title { +#_sample_helper_static_id_prefix_2 .tooltip-title { fill: #bbbbbb; font-weight: bold; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-label { +#_sample_helper_static_id_prefix_2 .tooltip-label { fill: #bbbbbb; font-weight: bold; font-style: normal;font-family: sans-serif; @@ -129,7 +129,7 @@ font-size: 13.0px; } - + @@ -293,7 +293,7 @@ font-size: 13.0px; - + @@ -313,7 +313,7 @@ font-size: 13.0px; - + @@ -335,6 +335,6 @@ font-size: 13.0px; - + \ No newline at end of file diff --git a/docs/images/samples/ribbon/ribbon_grouped.svg b/docs/images/samples/ribbon/ribbon_grouped.svg index f10a036fe..b7af791de 100644 --- a/docs/images/samples/ribbon/ribbon_grouped.svg +++ b/docs/images/samples/ribbon/ribbon_grouped.svg @@ -10,117 +10,117 @@ text { text-rendering: optimizeLegibility; } -#xXxprefixXx0 .plot-title { +#_sample_helper_static_id_prefix_0 .plot-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-x { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-x { fill: #ffffff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-y { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-y { fill: #ffffff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-text { +#_sample_helper_static_id_prefix_2 .tooltip-text { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-title { +#_sample_helper_static_id_prefix_2 .tooltip-title { fill: #474747; font-weight: bold; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-label { +#_sample_helper_static_id_prefix_2 .tooltip-label { fill: #474747; font-weight: bold; font-style: normal;font-family: sans-serif; @@ -129,7 +129,7 @@ font-size: 13.0px; } - + @@ -175,7 +175,7 @@ font-size: 13.0px; - + @@ -207,7 +207,7 @@ font-size: 13.0px; - + @@ -406,6 +406,6 @@ font-size: 13.0px; - + \ No newline at end of file diff --git a/docs/images/samples/ribbon/ribbon_grouped_dark.svg b/docs/images/samples/ribbon/ribbon_grouped_dark.svg index 16dc60849..b637d71cf 100644 --- a/docs/images/samples/ribbon/ribbon_grouped_dark.svg +++ b/docs/images/samples/ribbon/ribbon_grouped_dark.svg @@ -10,117 +10,117 @@ text { text-rendering: optimizeLegibility; } -#xXxprefixXx0 .plot-title { +#_sample_helper_static_id_prefix_0 .plot-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-x { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-x { fill: #303030; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-y { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-y { fill: #303030; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-text { +#_sample_helper_static_id_prefix_2 .tooltip-text { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-title { +#_sample_helper_static_id_prefix_2 .tooltip-title { fill: #bbbbbb; font-weight: bold; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-label { +#_sample_helper_static_id_prefix_2 .tooltip-label { fill: #bbbbbb; font-weight: bold; font-style: normal;font-family: sans-serif; @@ -129,7 +129,7 @@ font-size: 13.0px; } - + @@ -303,7 +303,7 @@ font-size: 13.0px; - + @@ -335,7 +335,7 @@ font-size: 13.0px; - + @@ -406,6 +406,6 @@ font-size: 13.0px; - + \ No newline at end of file diff --git a/docs/images/samples/ribbon/ribbon_settings.svg b/docs/images/samples/ribbon/ribbon_settings.svg index 4afa78496..638c42d03 100644 --- a/docs/images/samples/ribbon/ribbon_settings.svg +++ b/docs/images/samples/ribbon/ribbon_settings.svg @@ -10,117 +10,117 @@ text { text-rendering: optimizeLegibility; } -#xXxprefixXx0 .plot-title { +#_sample_helper_static_id_prefix_0 .plot-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-x { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-x { fill: #ffffff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-y { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-y { fill: #ffffff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-text { +#_sample_helper_static_id_prefix_2 .tooltip-text { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-title { +#_sample_helper_static_id_prefix_2 .tooltip-title { fill: #474747; font-weight: bold; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-label { +#_sample_helper_static_id_prefix_2 .tooltip-label { fill: #474747; font-weight: bold; font-style: normal;font-family: sans-serif; @@ -129,7 +129,7 @@ font-size: 13.0px; } - + @@ -177,7 +177,7 @@ font-size: 13.0px; - + @@ -197,7 +197,7 @@ font-size: 13.0px; - + @@ -354,6 +354,6 @@ font-size: 13.0px; - + \ No newline at end of file diff --git a/docs/images/samples/ribbon/ribbon_settings_dark.svg b/docs/images/samples/ribbon/ribbon_settings_dark.svg index 5420e3d4d..a96db6db6 100644 --- a/docs/images/samples/ribbon/ribbon_settings_dark.svg +++ b/docs/images/samples/ribbon/ribbon_settings_dark.svg @@ -10,117 +10,117 @@ text { text-rendering: optimizeLegibility; } -#xXxprefixXx0 .plot-title { +#_sample_helper_static_id_prefix_0 .plot-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-x { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-x { fill: #303030; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-y { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-y { fill: #303030; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-text { +#_sample_helper_static_id_prefix_2 .tooltip-text { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-title { +#_sample_helper_static_id_prefix_2 .tooltip-title { fill: #bbbbbb; font-weight: bold; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-label { +#_sample_helper_static_id_prefix_2 .tooltip-label { fill: #bbbbbb; font-weight: bold; font-style: normal;font-family: sans-serif; @@ -129,7 +129,7 @@ font-size: 13.0px; } - + @@ -312,7 +312,7 @@ font-size: 13.0px; - + @@ -332,7 +332,7 @@ font-size: 13.0px; - + @@ -354,6 +354,6 @@ font-size: 13.0px; - + \ No newline at end of file diff --git a/docs/images/samples/ribbon/ribbon_simple.svg b/docs/images/samples/ribbon/ribbon_simple.svg index af08fc57d..49cdb5fda 100644 --- a/docs/images/samples/ribbon/ribbon_simple.svg +++ b/docs/images/samples/ribbon/ribbon_simple.svg @@ -10,117 +10,117 @@ text { text-rendering: optimizeLegibility; } -#xXxprefixXx0 .plot-title { +#_sample_helper_static_id_prefix_0 .plot-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-x { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-x { fill: #ffffff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-y { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-y { fill: #ffffff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-text { +#_sample_helper_static_id_prefix_2 .tooltip-text { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-title { +#_sample_helper_static_id_prefix_2 .tooltip-title { fill: #474747; font-weight: bold; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-label { +#_sample_helper_static_id_prefix_2 .tooltip-label { fill: #474747; font-weight: bold; font-style: normal;font-family: sans-serif; @@ -129,7 +129,7 @@ font-size: 13.0px; } - + @@ -175,7 +175,7 @@ font-size: 13.0px; - + @@ -195,7 +195,7 @@ font-size: 13.0px; - + @@ -357,6 +357,6 @@ font-size: 13.0px; - + \ No newline at end of file diff --git a/docs/images/samples/ribbon/ribbon_simple_dark.svg b/docs/images/samples/ribbon/ribbon_simple_dark.svg index aaa47186d..66d4ac855 100644 --- a/docs/images/samples/ribbon/ribbon_simple_dark.svg +++ b/docs/images/samples/ribbon/ribbon_simple_dark.svg @@ -10,117 +10,117 @@ text { text-rendering: optimizeLegibility; } -#xXxprefixXx0 .plot-title { +#_sample_helper_static_id_prefix_0 .plot-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-x { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-x { fill: #303030; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-y { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-y { fill: #303030; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-text { +#_sample_helper_static_id_prefix_2 .tooltip-text { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-title { +#_sample_helper_static_id_prefix_2 .tooltip-title { fill: #bbbbbb; font-weight: bold; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-label { +#_sample_helper_static_id_prefix_2 .tooltip-label { fill: #bbbbbb; font-weight: bold; font-style: normal;font-family: sans-serif; @@ -129,7 +129,7 @@ font-size: 13.0px; } - + @@ -315,7 +315,7 @@ font-size: 13.0px; - + @@ -335,7 +335,7 @@ font-size: 13.0px; - + @@ -357,6 +357,6 @@ font-size: 13.0px; - + \ No newline at end of file diff --git a/docs/images/samples/ribbon/ribbon_with_line.svg b/docs/images/samples/ribbon/ribbon_with_line.svg index 3f3eb603e..d7b74aa8c 100644 --- a/docs/images/samples/ribbon/ribbon_with_line.svg +++ b/docs/images/samples/ribbon/ribbon_with_line.svg @@ -10,117 +10,117 @@ text { text-rendering: optimizeLegibility; } -#xXxprefixXx0 .plot-title { +#_sample_helper_static_id_prefix_0 .plot-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx3 .axis-tooltip-text-x { +#_sample_helper_static_id_prefix_3 .axis-tooltip-text-x { fill: #ffffff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx3 .axis-tooltip-text-y { +#_sample_helper_static_id_prefix_3 .axis-tooltip-text-y { fill: #ffffff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx3 .tooltip-text { +#_sample_helper_static_id_prefix_3 .tooltip-text { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx3 .tooltip-title { +#_sample_helper_static_id_prefix_3 .tooltip-title { fill: #474747; font-weight: bold; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx3 .tooltip-label { +#_sample_helper_static_id_prefix_3 .tooltip-label { fill: #474747; font-weight: bold; font-style: normal;font-family: sans-serif; @@ -129,7 +129,7 @@ font-size: 13.0px; } - + @@ -177,7 +177,7 @@ font-size: 13.0px; - + @@ -203,13 +203,13 @@ font-size: 13.0px; - + - + @@ -370,6 +370,6 @@ font-size: 13.0px; - + \ No newline at end of file diff --git a/docs/images/samples/ribbon/ribbon_with_line_dark.svg b/docs/images/samples/ribbon/ribbon_with_line_dark.svg index 4e56e0fc4..83a165aa2 100644 --- a/docs/images/samples/ribbon/ribbon_with_line_dark.svg +++ b/docs/images/samples/ribbon/ribbon_with_line_dark.svg @@ -10,117 +10,117 @@ text { text-rendering: optimizeLegibility; } -#xXxprefixXx0 .plot-title { +#_sample_helper_static_id_prefix_0 .plot-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx3 .axis-tooltip-text-x { +#_sample_helper_static_id_prefix_3 .axis-tooltip-text-x { fill: #303030; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx3 .axis-tooltip-text-y { +#_sample_helper_static_id_prefix_3 .axis-tooltip-text-y { fill: #303030; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx3 .tooltip-text { +#_sample_helper_static_id_prefix_3 .tooltip-text { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx3 .tooltip-title { +#_sample_helper_static_id_prefix_3 .tooltip-title { fill: #bbbbbb; font-weight: bold; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx3 .tooltip-label { +#_sample_helper_static_id_prefix_3 .tooltip-label { fill: #bbbbbb; font-weight: bold; font-style: normal;font-family: sans-serif; @@ -129,7 +129,7 @@ font-size: 13.0px; } - + @@ -316,7 +316,7 @@ font-size: 13.0px; - + @@ -342,13 +342,13 @@ font-size: 13.0px; - + - + @@ -370,6 +370,6 @@ font-size: 13.0px; - + \ No newline at end of file diff --git a/docs/images/samples/tiles/basic_heatmap.svg b/docs/images/samples/tiles/basic_heatmap.svg index fdab55765..8b8557468 100644 --- a/docs/images/samples/tiles/basic_heatmap.svg +++ b/docs/images/samples/tiles/basic_heatmap.svg @@ -10,117 +10,117 @@ text { text-rendering: optimizeLegibility; } -#xXxprefixXx0 .plot-title { +#_sample_helper_static_id_prefix_0 .plot-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-x { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-x { fill: #ffffff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-y { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-y { fill: #ffffff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-text { +#_sample_helper_static_id_prefix_2 .tooltip-text { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-title { +#_sample_helper_static_id_prefix_2 .tooltip-title { fill: #474747; font-weight: bold; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-label { +#_sample_helper_static_id_prefix_2 .tooltip-label { fill: #474747; font-weight: bold; font-style: normal;font-family: sans-serif; @@ -129,7 +129,7 @@ font-size: 13.0px; } - + @@ -155,7 +155,7 @@ font-size: 13.0px; - + @@ -176,7 +176,7 @@ font-size: 13.0px; - + @@ -361,6 +361,6 @@ font-size: 13.0px; - + \ No newline at end of file diff --git a/docs/images/samples/tiles/basic_heatmap_dark.svg b/docs/images/samples/tiles/basic_heatmap_dark.svg index e29d488bc..736013a43 100644 --- a/docs/images/samples/tiles/basic_heatmap_dark.svg +++ b/docs/images/samples/tiles/basic_heatmap_dark.svg @@ -10,117 +10,117 @@ text { text-rendering: optimizeLegibility; } -#xXxprefixXx0 .plot-title { +#_sample_helper_static_id_prefix_0 .plot-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-x { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-x { fill: #303030; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-y { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-y { fill: #303030; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-text { +#_sample_helper_static_id_prefix_2 .tooltip-text { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-title { +#_sample_helper_static_id_prefix_2 .tooltip-title { fill: #bbbbbb; font-weight: bold; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-label { +#_sample_helper_static_id_prefix_2 .tooltip-label { fill: #bbbbbb; font-weight: bold; font-style: normal;font-family: sans-serif; @@ -129,7 +129,7 @@ font-size: 13.0px; } - + @@ -209,7 +209,7 @@ font-size: 13.0px; - + @@ -230,7 +230,7 @@ font-size: 13.0px; - + @@ -361,6 +361,6 @@ font-size: 13.0px; - + \ No newline at end of file diff --git a/docs/images/samples/tiles/basic_tile_plot.svg b/docs/images/samples/tiles/basic_tile_plot.svg index 0381608b4..79f625f39 100644 --- a/docs/images/samples/tiles/basic_tile_plot.svg +++ b/docs/images/samples/tiles/basic_tile_plot.svg @@ -10,117 +10,117 @@ text { text-rendering: optimizeLegibility; } -#xXxprefixXx0 .plot-title { +#_sample_helper_static_id_prefix_0 .plot-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-x { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-x { fill: #ffffff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-y { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-y { fill: #ffffff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-text { +#_sample_helper_static_id_prefix_2 .tooltip-text { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-title { +#_sample_helper_static_id_prefix_2 .tooltip-title { fill: #474747; font-weight: bold; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-label { +#_sample_helper_static_id_prefix_2 .tooltip-label { fill: #474747; font-weight: bold; font-style: normal;font-family: sans-serif; @@ -129,7 +129,7 @@ font-size: 13.0px; } - + @@ -171,7 +171,7 @@ font-size: 13.0px; - + @@ -185,7 +185,7 @@ font-size: 13.0px; - + @@ -315,6 +315,6 @@ font-size: 13.0px; - + \ No newline at end of file diff --git a/docs/images/samples/tiles/basic_tile_plot_dark.svg b/docs/images/samples/tiles/basic_tile_plot_dark.svg index 752314acb..f875fa244 100644 --- a/docs/images/samples/tiles/basic_tile_plot_dark.svg +++ b/docs/images/samples/tiles/basic_tile_plot_dark.svg @@ -10,117 +10,117 @@ text { text-rendering: optimizeLegibility; } -#xXxprefixXx0 .plot-title { +#_sample_helper_static_id_prefix_0 .plot-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-x { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-x { fill: #303030; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-y { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-y { fill: #303030; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-text { +#_sample_helper_static_id_prefix_2 .tooltip-text { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-title { +#_sample_helper_static_id_prefix_2 .tooltip-title { fill: #bbbbbb; font-weight: bold; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-label { +#_sample_helper_static_id_prefix_2 .tooltip-label { fill: #bbbbbb; font-weight: bold; font-style: normal;font-family: sans-serif; @@ -129,7 +129,7 @@ font-size: 13.0px; } - + @@ -279,7 +279,7 @@ font-size: 13.0px; - + @@ -293,7 +293,7 @@ font-size: 13.0px; - + @@ -315,6 +315,6 @@ font-size: 13.0px; - + \ No newline at end of file diff --git a/docs/images/samples/tiles/fixed_tile.svg b/docs/images/samples/tiles/fixed_tile.svg index 845c7bd51..af0948318 100644 --- a/docs/images/samples/tiles/fixed_tile.svg +++ b/docs/images/samples/tiles/fixed_tile.svg @@ -10,117 +10,117 @@ text { text-rendering: optimizeLegibility; } -#xXxprefixXx0 .plot-title { +#_sample_helper_static_id_prefix_0 .plot-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-x { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-x { fill: #ffffff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-y { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-y { fill: #ffffff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-text { +#_sample_helper_static_id_prefix_2 .tooltip-text { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-title { +#_sample_helper_static_id_prefix_2 .tooltip-title { fill: #474747; font-weight: bold; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-label { +#_sample_helper_static_id_prefix_2 .tooltip-label { fill: #474747; font-weight: bold; font-style: normal;font-family: sans-serif; @@ -129,7 +129,7 @@ font-size: 13.0px; } - + @@ -173,7 +173,7 @@ font-size: 13.0px; - + @@ -189,7 +189,7 @@ font-size: 13.0px; - + @@ -344,6 +344,6 @@ font-size: 13.0px; - + \ No newline at end of file diff --git a/docs/images/samples/tiles/fixed_tile_dark.svg b/docs/images/samples/tiles/fixed_tile_dark.svg index e208e5974..c3abbfecd 100644 --- a/docs/images/samples/tiles/fixed_tile_dark.svg +++ b/docs/images/samples/tiles/fixed_tile_dark.svg @@ -10,117 +10,117 @@ text { text-rendering: optimizeLegibility; } -#xXxprefixXx0 .plot-title { +#_sample_helper_static_id_prefix_0 .plot-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-x { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-x { fill: #303030; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-y { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-y { fill: #303030; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-text { +#_sample_helper_static_id_prefix_2 .tooltip-text { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-title { +#_sample_helper_static_id_prefix_2 .tooltip-title { fill: #bbbbbb; font-weight: bold; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-label { +#_sample_helper_static_id_prefix_2 .tooltip-label { fill: #bbbbbb; font-weight: bold; font-style: normal;font-family: sans-serif; @@ -129,7 +129,7 @@ font-size: 13.0px; } - + @@ -306,7 +306,7 @@ font-size: 13.0px; - + @@ -322,7 +322,7 @@ font-size: 13.0px; - + @@ -344,6 +344,6 @@ font-size: 13.0px; - + \ No newline at end of file diff --git a/docs/images/samples/tiles/tiles_color_categories.svg b/docs/images/samples/tiles/tiles_color_categories.svg index e912cfed9..f662e75cb 100644 --- a/docs/images/samples/tiles/tiles_color_categories.svg +++ b/docs/images/samples/tiles/tiles_color_categories.svg @@ -10,117 +10,117 @@ text { text-rendering: optimizeLegibility; } -#xXxprefixXx0 .plot-title { +#_sample_helper_static_id_prefix_0 .plot-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-x { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-x { fill: #ffffff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-y { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-y { fill: #ffffff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-text { +#_sample_helper_static_id_prefix_2 .tooltip-text { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-title { +#_sample_helper_static_id_prefix_2 .tooltip-title { fill: #474747; font-weight: bold; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-label { +#_sample_helper_static_id_prefix_2 .tooltip-label { fill: #474747; font-weight: bold; font-style: normal;font-family: sans-serif; @@ -129,7 +129,7 @@ font-size: 13.0px; } - + @@ -157,7 +157,7 @@ font-size: 13.0px; - + @@ -181,7 +181,7 @@ font-size: 13.0px; - + @@ -324,6 +324,6 @@ font-size: 13.0px; - + \ No newline at end of file diff --git a/docs/images/samples/tiles/tiles_color_categories_dark.svg b/docs/images/samples/tiles/tiles_color_categories_dark.svg index 457e25b2a..2e31638b0 100644 --- a/docs/images/samples/tiles/tiles_color_categories_dark.svg +++ b/docs/images/samples/tiles/tiles_color_categories_dark.svg @@ -10,117 +10,117 @@ text { text-rendering: optimizeLegibility; } -#xXxprefixXx0 .plot-title { +#_sample_helper_static_id_prefix_0 .plot-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-x { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-x { fill: #303030; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-y { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-y { fill: #303030; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-text { +#_sample_helper_static_id_prefix_2 .tooltip-text { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-title { +#_sample_helper_static_id_prefix_2 .tooltip-title { fill: #bbbbbb; font-weight: bold; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-label { +#_sample_helper_static_id_prefix_2 .tooltip-label { fill: #bbbbbb; font-weight: bold; font-style: normal;font-family: sans-serif; @@ -129,7 +129,7 @@ font-size: 13.0px; } - + @@ -220,7 +220,7 @@ font-size: 13.0px; - + @@ -244,7 +244,7 @@ font-size: 13.0px; - + @@ -324,6 +324,6 @@ font-size: 13.0px; - + \ No newline at end of file diff --git a/docs/images/samples/tiles/tiles_gradient.svg b/docs/images/samples/tiles/tiles_gradient.svg index 4c921ba47..962f10b01 100644 --- a/docs/images/samples/tiles/tiles_gradient.svg +++ b/docs/images/samples/tiles/tiles_gradient.svg @@ -10,117 +10,117 @@ text { text-rendering: optimizeLegibility; } -#xXxprefixXx0 .plot-title { +#_sample_helper_static_id_prefix_0 .plot-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-x { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-x { fill: #ffffff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-y { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-y { fill: #ffffff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-text { +#_sample_helper_static_id_prefix_2 .tooltip-text { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-title { +#_sample_helper_static_id_prefix_2 .tooltip-title { fill: #474747; font-weight: bold; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-label { +#_sample_helper_static_id_prefix_2 .tooltip-label { fill: #474747; font-weight: bold; font-style: normal;font-family: sans-serif; @@ -129,7 +129,7 @@ font-size: 13.0px; } - + @@ -157,7 +157,7 @@ font-size: 13.0px; - + @@ -181,7 +181,7 @@ font-size: 13.0px; - + @@ -357,6 +357,6 @@ font-size: 13.0px; - + \ No newline at end of file diff --git a/docs/images/samples/tiles/tiles_gradient_dark.svg b/docs/images/samples/tiles/tiles_gradient_dark.svg index 18fd7d5ec..56c67680f 100644 --- a/docs/images/samples/tiles/tiles_gradient_dark.svg +++ b/docs/images/samples/tiles/tiles_gradient_dark.svg @@ -10,117 +10,117 @@ text { text-rendering: optimizeLegibility; } -#xXxprefixXx0 .plot-title { +#_sample_helper_static_id_prefix_0 .plot-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-x { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-x { fill: #303030; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-y { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-y { fill: #303030; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-text { +#_sample_helper_static_id_prefix_2 .tooltip-text { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-title { +#_sample_helper_static_id_prefix_2 .tooltip-title { fill: #bbbbbb; font-weight: bold; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-label { +#_sample_helper_static_id_prefix_2 .tooltip-label { fill: #bbbbbb; font-weight: bold; font-style: normal;font-family: sans-serif; @@ -129,7 +129,7 @@ font-size: 13.0px; } - + @@ -220,7 +220,7 @@ font-size: 13.0px; - + @@ -244,7 +244,7 @@ font-size: 13.0px; - + @@ -357,6 +357,6 @@ font-size: 13.0px; - + \ No newline at end of file diff --git a/docs/images/samples/tiles/tiles_ktnb_logo.svg b/docs/images/samples/tiles/tiles_ktnb_logo.svg index f82fd7df0..98fe7681a 100644 --- a/docs/images/samples/tiles/tiles_ktnb_logo.svg +++ b/docs/images/samples/tiles/tiles_ktnb_logo.svg @@ -10,117 +10,117 @@ text { text-rendering: optimizeLegibility; } -#xXxprefixXx0 .plot-title { +#_sample_helper_static_id_prefix_0 .plot-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-x { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-x { fill: #ffffff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-y { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-y { fill: #ffffff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-text { +#_sample_helper_static_id_prefix_2 .tooltip-text { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-title { +#_sample_helper_static_id_prefix_2 .tooltip-title { fill: #474747; font-weight: bold; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-label { +#_sample_helper_static_id_prefix_2 .tooltip-label { fill: #474747; font-weight: bold; font-style: normal;font-family: sans-serif; @@ -129,7 +129,7 @@ font-size: 13.0px; } - + @@ -147,7 +147,7 @@ font-size: 13.0px; - + @@ -1640,7 +1640,7 @@ font-size: 13.0px; - + @@ -1652,6 +1652,6 @@ font-size: 13.0px; - + \ No newline at end of file diff --git a/docs/images/samples/tiles/tiles_ktnb_logo_dark.svg b/docs/images/samples/tiles/tiles_ktnb_logo_dark.svg index 8ec47811e..c5b06fd73 100644 --- a/docs/images/samples/tiles/tiles_ktnb_logo_dark.svg +++ b/docs/images/samples/tiles/tiles_ktnb_logo_dark.svg @@ -10,117 +10,117 @@ text { text-rendering: optimizeLegibility; } -#xXxprefixXx0 .plot-title { +#_sample_helper_static_id_prefix_0 .plot-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-x { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-x { fill: #303030; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-y { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-y { fill: #303030; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-text { +#_sample_helper_static_id_prefix_2 .tooltip-text { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-title { +#_sample_helper_static_id_prefix_2 .tooltip-title { fill: #bbbbbb; font-weight: bold; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-label { +#_sample_helper_static_id_prefix_2 .tooltip-label { fill: #bbbbbb; font-weight: bold; font-style: normal;font-family: sans-serif; @@ -129,7 +129,7 @@ font-size: 13.0px; } - + @@ -147,7 +147,7 @@ font-size: 13.0px; - + @@ -1640,7 +1640,7 @@ font-size: 13.0px; - + @@ -1652,6 +1652,6 @@ font-size: 13.0px; - + \ No newline at end of file diff --git a/docs/images/samples/tiles/tiles_settings.svg b/docs/images/samples/tiles/tiles_settings.svg index 81ef4985e..4d7a9d33c 100644 --- a/docs/images/samples/tiles/tiles_settings.svg +++ b/docs/images/samples/tiles/tiles_settings.svg @@ -10,117 +10,117 @@ text { text-rendering: optimizeLegibility; } -#xXxprefixXx0 .plot-title { +#_sample_helper_static_id_prefix_0 .plot-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-x { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-x { fill: #ffffff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-y { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-y { fill: #ffffff; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-text { +#_sample_helper_static_id_prefix_2 .tooltip-text { fill: #474747; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-title { +#_sample_helper_static_id_prefix_2 .tooltip-title { fill: #474747; font-weight: bold; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-label { +#_sample_helper_static_id_prefix_2 .tooltip-label { fill: #474747; font-weight: bold; font-style: normal;font-family: sans-serif; @@ -129,7 +129,7 @@ font-size: 13.0px; } - + @@ -155,7 +155,7 @@ font-size: 13.0px; - + @@ -176,7 +176,7 @@ font-size: 13.0px; - + @@ -370,6 +370,6 @@ font-size: 13.0px; - + \ No newline at end of file diff --git a/docs/images/samples/tiles/tiles_settings_dark.svg b/docs/images/samples/tiles/tiles_settings_dark.svg index 22cabee9d..0cb086eda 100644 --- a/docs/images/samples/tiles/tiles_settings_dark.svg +++ b/docs/images/samples/tiles/tiles_settings_dark.svg @@ -10,117 +10,117 @@ text { text-rendering: optimizeLegibility; } -#xXxprefixXx0 .plot-title { +#_sample_helper_static_id_prefix_0 .plot-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-x { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-x { fill: #303030; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .axis-tooltip-text-y { +#_sample_helper_static_id_prefix_2 .axis-tooltip-text-y { fill: #303030; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-text { +#_sample_helper_static_id_prefix_2 .tooltip-text { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-title { +#_sample_helper_static_id_prefix_2 .tooltip-title { fill: #bbbbbb; font-weight: bold; font-style: normal;font-family: sans-serif; font-size: 13.0px; } -#xXxprefixXx2 .tooltip-label { +#_sample_helper_static_id_prefix_2 .tooltip-label { fill: #bbbbbb; font-weight: bold; font-style: normal;font-family: sans-serif; @@ -129,7 +129,7 @@ font-size: 13.0px; } - + @@ -209,7 +209,7 @@ font-size: 13.0px; - + @@ -230,7 +230,7 @@ font-size: 13.0px; - + @@ -370,6 +370,6 @@ font-size: 13.0px; - + \ No newline at end of file diff --git a/docs/kd.tree b/docs/kd.tree index e04717527..e75358127 100644 --- a/docs/kd.tree +++ b/docs/kd.tree @@ -251,4 +251,5 @@ +