From 59eb63596dea54c62440eb73808d73c6651ede7d Mon Sep 17 00:00:00 2001 From: "andrei.kislitsyn" Date: Mon, 17 Feb 2025 13:47:37 +0400 Subject: [PATCH 01/36] saveTable() in sample helper --- docs/resources/usaStatesAccessDataFrame.html | 468 ++++++++++++++++++ .../kandy/geo/samples/guides/GeoGuide.kt | 1 + .../kandy/letsplot/samples/SampleHelper.kt | 14 + .../letsplot/samples/writersideParameters.kt | 37 ++ 4 files changed, 520 insertions(+) create mode 100644 docs/resources/usaStatesAccessDataFrame.html create mode 100644 util/samples-utils/src/main/kotlin/org/jetbrains/kotlinx/kandy/letsplot/samples/writersideParameters.kt diff --git a/docs/resources/usaStatesAccessDataFrame.html b/docs/resources/usaStatesAccessDataFrame.html new file mode 100644 index 000000000..0b21e4917 --- /dev/null +++ b/docs/resources/usaStatesAccessDataFrame.html @@ -0,0 +1,468 @@ + + + + + +
+ +

... showing only top 20 of 52 rows

+ + + diff --git a/kandy-geo/src/test/kotlin/org/jetbrains/kotlinx/kandy/geo/samples/guides/GeoGuide.kt b/kandy-geo/src/test/kotlin/org/jetbrains/kotlinx/kandy/geo/samples/guides/GeoGuide.kt index e4c41eb4a..c974a47da 100644 --- a/kandy-geo/src/test/kotlin/org/jetbrains/kotlinx/kandy/geo/samples/guides/GeoGuide.kt +++ b/kandy-geo/src/test/kotlin/org/jetbrains/kotlinx/kandy/geo/samples/guides/GeoGuide.kt @@ -171,6 +171,7 @@ class GeoGuide : SampleHelper("geoGuide", "guides") { // SampleStart usaStates.df // SampleEnd + .saveTable() assertNotNull(usaStatesDf) } diff --git a/util/samples-utils/src/main/kotlin/org/jetbrains/kotlinx/kandy/letsplot/samples/SampleHelper.kt b/util/samples-utils/src/main/kotlin/org/jetbrains/kotlinx/kandy/letsplot/samples/SampleHelper.kt index 364cb279e..d86152708 100644 --- a/util/samples-utils/src/main/kotlin/org/jetbrains/kotlinx/kandy/letsplot/samples/SampleHelper.kt +++ b/util/samples-utils/src/main/kotlin/org/jetbrains/kotlinx/kandy/letsplot/samples/SampleHelper.kt @@ -1,6 +1,8 @@ @file:Suppress("INVISIBLE_REFERENCE", "INVISIBLE_MEMBER") package org.jetbrains.kotlinx.kandy.letsplot.samples +import org.jetbrains.kotlinx.dataframe.DataFrame +import org.jetbrains.kotlinx.dataframe.io.toStandaloneHTML import org.jetbrains.kotlinx.kandy.ir.Plot import org.jetbrains.kotlinx.kandy.ir.feature.FeatureName import org.jetbrains.kotlinx.kandy.letsplot.feature.Layout @@ -40,10 +42,13 @@ public abstract class SampleHelper(sampleName: String, folder: String = "samples private val pathToImageFolder = "../docs/images/$folder/$sampleName" + private val pathToResourceFolder = "../docs/resources" + private val darkColor = Color.hex("#19191c") init { File(pathToImageFolder).mkdirs() + File(pathToResourceFolder).mkdirs() } private val defaultWidth = 600 @@ -111,6 +116,15 @@ public abstract class SampleHelper(sampleName: String, folder: String = "samples saveAsSVG("${name}_dark") } + /** + * Saves the current [DataFrame] as HTML. + */ + public fun DataFrame<*>.saveTable() { + val name = testName.methodName.replace("_dataframe", "") + val html = this.toStandaloneHTML(configuration = SamplesDisplayConfiguration, getFooter = WritersideFooter) + WritersideStyle + html.writeHTML(File(pathToResourceFolder, "$name.html")) + } + private fun Plot.changeThemeToDarkMode() { val layout = (this.features as MutableMap)[FeatureName("layout")] as? Layout val darkBackground = BackgroundParameters(fillColor = darkColor) diff --git a/util/samples-utils/src/main/kotlin/org/jetbrains/kotlinx/kandy/letsplot/samples/writersideParameters.kt b/util/samples-utils/src/main/kotlin/org/jetbrains/kotlinx/kandy/letsplot/samples/writersideParameters.kt new file mode 100644 index 000000000..e71f157c0 --- /dev/null +++ b/util/samples-utils/src/main/kotlin/org/jetbrains/kotlinx/kandy/letsplot/samples/writersideParameters.kt @@ -0,0 +1,37 @@ +package org.jetbrains.kotlinx.kandy.letsplot.samples + +import org.jetbrains.kotlinx.dataframe.DataFrame +import org.jetbrains.kotlinx.dataframe.io.DataFrameHtmlData +import org.jetbrains.kotlinx.dataframe.io.DisplayConfiguration + +internal val SamplesDisplayConfiguration = DisplayConfiguration(enableFallbackStaticTables = false) + +internal val WritersideStyle = DataFrameHtmlData( + // copy writerside stlyles + style = + """ + body { + font-family: "JetBrains Mono",SFMono-Regular,Consolas,"Liberation Mono",Menlo,Courier,monospace; + } + + :root { + color: #19191C; + background-color: #fff; + } + + :root[theme="dark"] { + background-color: #19191C; + color: #FFFFFFCC + } + + details details { + margin-left: 20px; + } + + summary { + padding: 6px; + } + """.trimIndent(), +) + +internal val WritersideFooter: (DataFrame<*>) -> String = { "" } From b612c701c24f671573d05a788d30b94e31549ee7 Mon Sep 17 00:00:00 2001 From: "andrei.kislitsyn" Date: Wed, 23 Apr 2025 17:28:32 +0400 Subject: [PATCH 02/36] sample helper --- docs/resources/usaStatesAccessDataFrame.html | 468 ------------------ .../kandy/letsplot/samples/SampleHelper.kt | 2 +- 2 files changed, 1 insertion(+), 469 deletions(-) delete mode 100644 docs/resources/usaStatesAccessDataFrame.html diff --git a/docs/resources/usaStatesAccessDataFrame.html b/docs/resources/usaStatesAccessDataFrame.html deleted file mode 100644 index 0b21e4917..000000000 --- a/docs/resources/usaStatesAccessDataFrame.html +++ /dev/null @@ -1,468 +0,0 @@ - - - - - -
- -

... showing only top 20 of 52 rows

- - - diff --git a/util/samples-utils/src/main/kotlin/org/jetbrains/kotlinx/kandy/letsplot/samples/SampleHelper.kt b/util/samples-utils/src/main/kotlin/org/jetbrains/kotlinx/kandy/letsplot/samples/SampleHelper.kt index d86152708..7076cf513 100644 --- a/util/samples-utils/src/main/kotlin/org/jetbrains/kotlinx/kandy/letsplot/samples/SampleHelper.kt +++ b/util/samples-utils/src/main/kotlin/org/jetbrains/kotlinx/kandy/letsplot/samples/SampleHelper.kt @@ -32,7 +32,7 @@ import java.io.File * The output directory is created if it doesn't already exist. * * @param sampleName The name of the sample for which visualizations are being generated. - * @param folder The folder name to store the generated visualization files. Default is "samples". + * @param folder The folder name to store the generated visualization files. The default is "samples". */ public abstract class SampleHelper(sampleName: String, folder: String = "samples") { From 905ca7d038ad62bc966e505beac77acc939842d6 Mon Sep 17 00:00:00 2001 From: "andrei.kislitsyn" Date: Wed, 23 Apr 2025 17:28:50 +0400 Subject: [PATCH 03/36] german companies --- ...tebook_test_top_12_german_companies_10.svg | 768 ++++++++++++++++++ ...k_test_top_12_german_companies_10_dark.svg | 768 ++++++++++++++++++ ...tebook_test_top_12_german_companies_12.svg | 329 ++++++++ ...k_test_top_12_german_companies_12_dark.svg | 329 ++++++++ ...tebook_test_top_12_german_companies_13.svg | 338 ++++++++ ...k_test_top_12_german_companies_13_dark.svg | 338 ++++++++ ...otebook_test_top_12_german_companies_9.svg | 759 +++++++++++++++++ ...ok_test_top_12_german_companies_9_dark.svg | 759 +++++++++++++++++ docs/kd.tree | 1 + ...ebook_test_top_12_german_companies_11.html | 471 +++++++++++ ...tebook_test_top_12_german_companies_3.html | 477 +++++++++++ ...tebook_test_top_12_german_companies_5.html | 512 ++++++++++++ ...tebook_test_top_12_german_companies_6.html | 512 ++++++++++++ ...tebook_test_top_12_german_companies_7.html | 473 +++++++++++ docs/topics/guides/top_12_german_companies.md | 135 +++ .../samples/guides/topGermanCompanies.kt | 491 +++++++++++ .../resources/top_12_german_companies.csv | 385 +++++++++ 17 files changed, 7845 insertions(+) create mode 100644 docs/images/guides/top_12_german_companies/notebook_test_top_12_german_companies_10.svg create mode 100644 docs/images/guides/top_12_german_companies/notebook_test_top_12_german_companies_10_dark.svg create mode 100644 docs/images/guides/top_12_german_companies/notebook_test_top_12_german_companies_12.svg create mode 100644 docs/images/guides/top_12_german_companies/notebook_test_top_12_german_companies_12_dark.svg create mode 100644 docs/images/guides/top_12_german_companies/notebook_test_top_12_german_companies_13.svg create mode 100644 docs/images/guides/top_12_german_companies/notebook_test_top_12_german_companies_13_dark.svg create mode 100644 docs/images/guides/top_12_german_companies/notebook_test_top_12_german_companies_9.svg create mode 100644 docs/images/guides/top_12_german_companies/notebook_test_top_12_german_companies_9_dark.svg create mode 100644 docs/resources/notebook_test_top_12_german_companies_11.html create mode 100644 docs/resources/notebook_test_top_12_german_companies_3.html create mode 100644 docs/resources/notebook_test_top_12_german_companies_5.html create mode 100644 docs/resources/notebook_test_top_12_german_companies_6.html create mode 100644 docs/resources/notebook_test_top_12_german_companies_7.html create mode 100644 docs/topics/guides/top_12_german_companies.md create mode 100644 kandy-lets-plot/src/test/kotlin/org/jetbrains/kotlinx/kandy/letsplot/samples/guides/topGermanCompanies.kt create mode 100644 kandy-lets-plot/src/test/resources/top_12_german_companies.csv diff --git a/docs/images/guides/top_12_german_companies/notebook_test_top_12_german_companies_10.svg b/docs/images/guides/top_12_german_companies/notebook_test_top_12_german_companies_10.svg new file mode 100644 index 000000000..e9e32a754 --- /dev/null +++ b/docs/images/guides/top_12_german_companies/notebook_test_top_12_german_companies_10.svg @@ -0,0 +1,768 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 2017 + + + + + + + + + 2018 + + + + + + + + + 2019 + + + + + + + + + 2020 + + + + + + + + + 2021 + + + + + + + + + 2022 + + + + + + + + + 2023 + + + + + + + + + 2024 + + + + + + + + + 2025 + + + + + + + + + + + 1G + + + + + + + 2G + + + + + + + 3G + + + + + + + 4G + + + + + + + 5G + + + + + + + 6G + + + + + + + 7G + + + + + + + + + Net Income by Sector + + + + + Net Income + + + + + Date + + + + + + + + + Sector + + + + + + + + + + + + + + + + + + + + Automotive + + + + + + + + + + + + + + + + + + + + Banking + + + + + + + + + + + + + + + + + + + + Insurance + + + + + + + + + + + + + + + + + + + + Industrial + + + + + + + + + + + + + + + + + + + + Telecom + + + + + + + + + + + + + + + + + + + + IT + + + + + + + + + + + + + + + + + + + + Pharma + + + + + + + + + + + + \ No newline at end of file diff --git a/docs/images/guides/top_12_german_companies/notebook_test_top_12_german_companies_10_dark.svg b/docs/images/guides/top_12_german_companies/notebook_test_top_12_german_companies_10_dark.svg new file mode 100644 index 000000000..2b7eb1f27 --- /dev/null +++ b/docs/images/guides/top_12_german_companies/notebook_test_top_12_german_companies_10_dark.svg @@ -0,0 +1,768 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 2017 + + + + + + + + + 2018 + + + + + + + + + 2019 + + + + + + + + + 2020 + + + + + + + + + 2021 + + + + + + + + + 2022 + + + + + + + + + 2023 + + + + + + + + + 2024 + + + + + + + + + 2025 + + + + + + + + + + + 1G + + + + + + + 2G + + + + + + + 3G + + + + + + + 4G + + + + + + + 5G + + + + + + + 6G + + + + + + + 7G + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Net Income by Sector + + + + + Net Income + + + + + Date + + + + + + + + + Sector + + + + + + + + + + + + + + + + + + + + Automotive + + + + + + + + + + + + + + + + + + + + Banking + + + + + + + + + + + + + + + + + + + + Insurance + + + + + + + + + + + + + + + + + + + + Industrial + + + + + + + + + + + + + + + + + + + + Telecom + + + + + + + + + + + + + + + + + + + + IT + + + + + + + + + + + + + + + + + + + + Pharma + + + + + + + + + + + + \ No newline at end of file diff --git a/docs/images/guides/top_12_german_companies/notebook_test_top_12_german_companies_12.svg b/docs/images/guides/top_12_german_companies/notebook_test_top_12_german_companies_12.svg new file mode 100644 index 000000000..3a5c31699 --- /dev/null +++ b/docs/images/guides/top_12_german_companies/notebook_test_top_12_german_companies_12.svg @@ -0,0 +1,329 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + INSURANCE_FINANCE + + + + + + + + + INDUSTRIAL_TECH + + + + + + + + + AUTOMOTIVE + + + + + + + + + PHARMA_CHEMICAL + + + + + + + + + BANKING + + + + + + + + + TELECOMMUNICATIONS + + + + + + + + + IT_SOFTWARE + + + + + + + + + + + 0 + + + + + + + 2G + + + + + + + 4G + + + + + + + + + Average ROA By Sector With Standard Deviation + + + + + Avg ROA + + + + + Sector of Business + + + + + + + + \ No newline at end of file diff --git a/docs/images/guides/top_12_german_companies/notebook_test_top_12_german_companies_12_dark.svg b/docs/images/guides/top_12_german_companies/notebook_test_top_12_german_companies_12_dark.svg new file mode 100644 index 000000000..e13ea7fca --- /dev/null +++ b/docs/images/guides/top_12_german_companies/notebook_test_top_12_german_companies_12_dark.svg @@ -0,0 +1,329 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + INSURANCE_FINANCE + + + + + + + + + INDUSTRIAL_TECH + + + + + + + + + AUTOMOTIVE + + + + + + + + + PHARMA_CHEMICAL + + + + + + + + + BANKING + + + + + + + + + TELECOMMUNICATIONS + + + + + + + + + IT_SOFTWARE + + + + + + + + + + + 0 + + + + + + + 2G + + + + + + + 4G + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Average ROA By Sector With Standard Deviation + + + + + Avg ROA + + + + + Sector of Business + + + + + + + + \ No newline at end of file diff --git a/docs/images/guides/top_12_german_companies/notebook_test_top_12_german_companies_13.svg b/docs/images/guides/top_12_german_companies/notebook_test_top_12_german_companies_13.svg new file mode 100644 index 000000000..da79116e6 --- /dev/null +++ b/docs/images/guides/top_12_german_companies/notebook_test_top_12_german_companies_13.svg @@ -0,0 +1,338 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + INSURANCE_FINANCE + + + + + + + + + INDUSTRIAL_TECH + + + + + + + + + AUTOMOTIVE + + + + + + + + + PHARMA_CHEMICAL + + + + + + + + + BANKING + + + + + + + + + TELECOMMUNICATIONS + + + + + + + + + IT_SOFTWARE + + + + + + + + + + + 0 + + + + + + + 2G + + + + + + + 4G + + + + + + + 6G + + + + + + + + + Average ROE By Sector With Standard Deviation + + + + + Avg ROE + + + + + Sector of Business + + + + + + + + \ No newline at end of file diff --git a/docs/images/guides/top_12_german_companies/notebook_test_top_12_german_companies_13_dark.svg b/docs/images/guides/top_12_german_companies/notebook_test_top_12_german_companies_13_dark.svg new file mode 100644 index 000000000..5e7479610 --- /dev/null +++ b/docs/images/guides/top_12_german_companies/notebook_test_top_12_german_companies_13_dark.svg @@ -0,0 +1,338 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + INSURANCE_FINANCE + + + + + + + + + INDUSTRIAL_TECH + + + + + + + + + AUTOMOTIVE + + + + + + + + + PHARMA_CHEMICAL + + + + + + + + + BANKING + + + + + + + + + TELECOMMUNICATIONS + + + + + + + + + IT_SOFTWARE + + + + + + + + + + + 0 + + + + + + + 2G + + + + + + + 4G + + + + + + + 6G + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Average ROE By Sector With Standard Deviation + + + + + Avg ROE + + + + + Sector of Business + + + + + + + + \ No newline at end of file diff --git a/docs/images/guides/top_12_german_companies/notebook_test_top_12_german_companies_9.svg b/docs/images/guides/top_12_german_companies/notebook_test_top_12_german_companies_9.svg new file mode 100644 index 000000000..a364484ff --- /dev/null +++ b/docs/images/guides/top_12_german_companies/notebook_test_top_12_german_companies_9.svg @@ -0,0 +1,759 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 2017 + + + + + + + + + 2018 + + + + + + + + + 2019 + + + + + + + + + 2020 + + + + + + + + + 2021 + + + + + + + + + 2022 + + + + + + + + + 2023 + + + + + + + + + 2024 + + + + + + + + + 2025 + + + + + + + + + + + 10G + + + + + + + 20G + + + + + + + 30G + + + + + + + 40G + + + + + + + 50G + + + + + + + 60G + + + + + + + + + Revenue by Sector + + + + + Revenue + + + + + Date + + + + + + + + + Sector + + + + + + + + + + + + + + + + + + + + Automotive + + + + + + + + + + + + + + + + + + + + Banking + + + + + + + + + + + + + + + + + + + + Insurance + + + + + + + + + + + + + + + + + + + + Industrial + + + + + + + + + + + + + + + + + + + + Telecom + + + + + + + + + + + + + + + + + + + + IT + + + + + + + + + + + + + + + + + + + + Pharma + + + + + + + + + + + + \ No newline at end of file diff --git a/docs/images/guides/top_12_german_companies/notebook_test_top_12_german_companies_9_dark.svg b/docs/images/guides/top_12_german_companies/notebook_test_top_12_german_companies_9_dark.svg new file mode 100644 index 000000000..46331fbc9 --- /dev/null +++ b/docs/images/guides/top_12_german_companies/notebook_test_top_12_german_companies_9_dark.svg @@ -0,0 +1,759 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 2017 + + + + + + + + + 2018 + + + + + + + + + 2019 + + + + + + + + + 2020 + + + + + + + + + 2021 + + + + + + + + + 2022 + + + + + + + + + 2023 + + + + + + + + + 2024 + + + + + + + + + 2025 + + + + + + + + + + + 10G + + + + + + + 20G + + + + + + + 30G + + + + + + + 40G + + + + + + + 50G + + + + + + + 60G + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Revenue by Sector + + + + + Revenue + + + + + Date + + + + + + + + + Sector + + + + + + + + + + + + + + + + + + + + Automotive + + + + + + + + + + + + + + + + + + + + Banking + + + + + + + + + + + + + + + + + + + + Insurance + + + + + + + + + + + + + + + + + + + + Industrial + + + + + + + + + + + + + + + + + + + + Telecom + + + + + + + + + + + + + + + + + + + + IT + + + + + + + + + + + + + + + + + + + + Pharma + + + + + + + + + + + + \ No newline at end of file diff --git a/docs/kd.tree b/docs/kd.tree index e04717527..bcde76aa8 100644 --- a/docs/kd.tree +++ b/docs/kd.tree @@ -251,4 +251,5 @@ + \ No newline at end of file diff --git a/docs/resources/notebook_test_top_12_german_companies_11.html b/docs/resources/notebook_test_top_12_german_companies_11.html new file mode 100644 index 000000000..436d3f7a4 --- /dev/null +++ b/docs/resources/notebook_test_top_12_german_companies_11.html @@ -0,0 +1,471 @@ + + + + + +
+ +

+ + + diff --git a/docs/resources/notebook_test_top_12_german_companies_3.html b/docs/resources/notebook_test_top_12_german_companies_3.html new file mode 100644 index 000000000..f39ed7b5f --- /dev/null +++ b/docs/resources/notebook_test_top_12_german_companies_3.html @@ -0,0 +1,477 @@ + + + + + +
+ +

+ + + diff --git a/docs/resources/notebook_test_top_12_german_companies_5.html b/docs/resources/notebook_test_top_12_german_companies_5.html new file mode 100644 index 000000000..5a77c09ab --- /dev/null +++ b/docs/resources/notebook_test_top_12_german_companies_5.html @@ -0,0 +1,512 @@ + + + + + +
+ +

+ + + diff --git a/docs/resources/notebook_test_top_12_german_companies_6.html b/docs/resources/notebook_test_top_12_german_companies_6.html new file mode 100644 index 000000000..31a0108d4 --- /dev/null +++ b/docs/resources/notebook_test_top_12_german_companies_6.html @@ -0,0 +1,512 @@ + + + + + +
+ +

+ + + diff --git a/docs/resources/notebook_test_top_12_german_companies_7.html b/docs/resources/notebook_test_top_12_german_companies_7.html new file mode 100644 index 000000000..861bc7cc2 --- /dev/null +++ b/docs/resources/notebook_test_top_12_german_companies_7.html @@ -0,0 +1,473 @@ + + + + + +
+ +

+ + + diff --git a/docs/topics/guides/top_12_german_companies.md b/docs/topics/guides/top_12_german_companies.md new file mode 100644 index 000000000..17ae7c376 --- /dev/null +++ b/docs/topics/guides/top_12_german_companies.md @@ -0,0 +1,135 @@ +# Financial Analysis of Top German Companies + +In this notebook, we load and analyze key financial metrics for several major German companies. +We perform data transformations, compute statistical measures, group by business sector, and create various plots to visualize trends in +revenue, net income, return on assets (ROA), and return on equity (ROE) + + +TODO: write summary + + + +TODO: write summary + + + +TODO: write summary + + + + + + + + + + + + + + + + + + +## Data Preparation: Formatting and Categorization + +In this step, we prepare and clean the data for analysis. + +- Custom Date Format: We define a custom date format (MM/DD/YYYY) to parse the "period" column into `LocalDate` without zero-padding for months. +- Business Sectors: We create an `enum` to classify companies into sectors such as Automotive, Banking, IT, and others. +- Data Transformation: + - Convert the "period" column to `LocalDate` using the custom format. + - Parse the "percentageDebtToEquity" column by removing the percentage sign and converting it to a `Double`. + - Sort the data by "company" and "period". + - Add a new column, "sector," which assigns companies to specific business sectors based on their names. + + +This step ensures the dataset is well-structured and categorized for further analysis. + + + + + +### Aggregating Financial Data + +These steps group data by company and calculate key metrics (mean, median, std, min, max) for financial columns like revenue, net income, and ratios. + + + + + + + + + + + + + + + + + + + + + + + +## Visualizing Revenue and Net Income by Sector + +1. Revenue by Sector: + - A line chart shows total revenue over time, grouped by business sector. + - Points highlight specific values, and each sector is color-coded using a predefined palette. + - The chart includes a legend for sector identification. +2. Net Income by Sector: + - A similar line chart displays total net income over time for each sector. + - Points and color-coding are used to enhance clarity, with a legend indicating the sectors. + +These visualizations help analyze trends and compare financial performance across sectors over time. + + + + + +![notebook_test_top_12_german_companies_9](notebook_test_top_12_german_companies_9.svg) + + + + + +![notebook_test_top_12_german_companies_10](notebook_test_top_12_german_companies_10.svg) + +## ROA and ROE Analysis by Sector + +1. Computing Averages and Standard Deviations: + - Group the data by sector and calculate the mean and standard deviation for Return on Assets (ROA) and Return on Equity (ROE). + - This creates a summarized dataset for sector-level performance comparison. +2. Visualizing ROA by Sector: + - A bar chart displays the average ROA for each sector. + - Error bars represent one standard deviation, showing the variability within each sector. +3. Visualizing ROE by Sector: + - A similar bar chart illustrates the average ROE across sectors. + - Error bars provide insight into the standard deviation of ROE within each sector. + +These charts help compare sector-level profitability metrics and assess consistency within sectors. + + + + + + + + + + + +![notebook_test_top_12_german_companies_12](notebook_test_top_12_german_companies_12.svg) + + + + + +![notebook_test_top_12_german_companies_13](notebook_test_top_12_german_companies_13.svg) + diff --git a/kandy-lets-plot/src/test/kotlin/org/jetbrains/kotlinx/kandy/letsplot/samples/guides/topGermanCompanies.kt b/kandy-lets-plot/src/test/kotlin/org/jetbrains/kotlinx/kandy/letsplot/samples/guides/topGermanCompanies.kt new file mode 100644 index 000000000..3032a32eb --- /dev/null +++ b/kandy-lets-plot/src/test/kotlin/org/jetbrains/kotlinx/kandy/letsplot/samples/guides/topGermanCompanies.kt @@ -0,0 +1,491 @@ +package org.jetbrains.kotlinx.kandy.letsplot.samples.guides + +import kotlinx.datetime.LocalDate +import kotlinx.datetime.format.Padding +import kotlinx.datetime.format.char +import org.jetbrains.kotlinx.dataframe.ColumnsContainer +import org.jetbrains.kotlinx.dataframe.DataColumn +import org.jetbrains.kotlinx.dataframe.DataFrame +import org.jetbrains.kotlinx.dataframe.DataRow +import org.jetbrains.kotlinx.dataframe.api.* +import org.jetbrains.kotlinx.dataframe.io.read +import org.jetbrains.kotlinx.kandy.dsl.categorical +import org.jetbrains.kotlinx.kandy.dsl.continuous +import org.jetbrains.kotlinx.kandy.dsl.plot +import org.jetbrains.kotlinx.kandy.letsplot.feature.layout +import org.jetbrains.kotlinx.kandy.letsplot.layers.bars +import org.jetbrains.kotlinx.kandy.letsplot.layers.line +import org.jetbrains.kotlinx.kandy.letsplot.layers.lineRanges +import org.jetbrains.kotlinx.kandy.letsplot.layers.points +import org.jetbrains.kotlinx.kandy.letsplot.samples.SampleHelper +import org.jetbrains.kotlinx.kandy.letsplot.x +import org.jetbrains.kotlinx.kandy.letsplot.y +import org.jetbrains.kotlinx.kandy.util.color.Color +import org.jetbrains.kotlinx.kandy.util.context.invoke +import kotlin.test.Ignore +import kotlin.test.Test + +@Suppress("UNUSED_VARIABLE", "UNCHECKED_CAST") +class TopGermanCompanies : SampleHelper("top_12_german_companies", "guides") { + private enum class BusinessSector(val simpleName: String) { + AUTOMOTIVE("Automotive"), + BANKING("Banking"), + INDUSTRIAL_TECH("Industrial"), + INSURANCE_FINANCE("Insurance"), + TELECOMMUNICATIONS("Telecom"), + IT_SOFTWARE("IT"), + PHARMA_CHEMICAL("Pharma"), + OTHER("Other") + } + + private val format = + LocalDate.Format { + monthNumber(Padding.NONE) + char('/') + dayOfMonth() + char('/') + year() + } + + interface DataFrameSchema + + val ColumnsContainer.period + get() = get("period") as DataColumn + val ColumnsContainer.percentageDebtToEquity + get() = get("percentageDebtToEquity") as DataColumn + val ColumnsContainer.ROA + get() = get("ROA") as DataColumn + val ColumnsContainer.ROE + get() = get("ROE") as DataColumn + val DataRow.company + get() = get("company") as String + + + interface CompaniesDfSchema + + private val company by column() + private val sector by column() + + @get:JvmName("period2") + val ColumnsContainer.period + get() = get("period") as DataColumn + val ColumnsContainer.revenue + get() = get("revenue") as DataColumn + val ColumnsContainer.netIncome + get() = get("netIncome") as DataColumn + @get:JvmName("ROA2") + val ColumnsContainer.ROA + get() = get("ROA") as DataColumn + @get:JvmName("ROE2") + val ColumnsContainer.ROE + get() = get("ROE") as DataColumn + val ColumnsContainer.liabilities + get() = get("liabilities") as DataColumn + val ColumnsContainer.assets + get() = get("assets") as DataColumn + val ColumnsContainer.equity + get() = get("equity") as DataColumn + @get:JvmName("percentageDebtToEquity2") + val ColumnsContainer.percentageDebtToEquity + get() = get("percentageDebtToEquity") as DataColumn + + val totalRevenue by column() + val totalNetIncome by column() + + interface RoeAndRoaDfSchema + + val ColumnsContainer.`Avg ROA` + get() = get("Avg ROA") as DataColumn + val ColumnsContainer.`Std ROA` + get() = get("Std ROA") as DataColumn + val ColumnsContainer.`Avg ROE` + get() = get("Avg ROE") as DataColumn + val ColumnsContainer.`Std ROE` + get() = get("Std ROE") as DataColumn + + val dataset = this.javaClass.classLoader.getResource("top_12_german_companies.csv") + private val dataFrame = + DataFrame.read(dataset) + .renameToCamelCase().rename("rOA(%)", "rOE(%)").into("ROA", "ROE") as DataFrame + + + + private val companiesDf = + dataFrame + .convert { period }.with { LocalDate.parse(it, format) } + .convert { percentageDebtToEquity }.with { it.removeSuffix("%").replace(',', '.').toDouble() } + .convert { ROA and ROE }.with { it.replace(".", "").toDouble() } + .sortBy { company and period } + .add("sector") { + when (company) { + "Volkswagen AG", "BMW AG", "Daimler AG", "Porsche AG" -> BusinessSector.AUTOMOTIVE + "Siemens AG", "BASF SE" -> BusinessSector.INDUSTRIAL_TECH + "Allianz SE" -> BusinessSector.INSURANCE_FINANCE + "Deutsche Bank AG" -> BusinessSector.BANKING + "Deutsche Telekom AG" -> BusinessSector.TELECOMMUNICATIONS + "SAP SE" -> BusinessSector.IT_SOFTWARE + "Bayer AG", "Merck KGaA" -> BusinessSector.PHARMA_CHEMICAL + else -> BusinessSector.OTHER + } + } as DataFrame + private val timeSerDf = + companiesDf.groupBy { period and sector }.aggregate { + revenue.sum() into "totalRevenue" + netIncome.sum() into "totalNetIncome" + } + private val listOfSectors = + listOf( + BusinessSector.AUTOMOTIVE, + BusinessSector.BANKING, + BusinessSector.INSURANCE_FINANCE, + BusinessSector.INDUSTRIAL_TECH, + BusinessSector.TELECOMMUNICATIONS, + BusinessSector.IT_SOFTWARE, + BusinessSector.PHARMA_CHEMICAL + ) + private val listOfSectorColors = + listOf( + Color.hex("#ffaf00"), + Color.hex("#f46920"), + Color.hex("#f53255"), + Color.hex("#f857c1"), + Color.hex("#29bdfd"), + Color.hex("#00cbbf"), + Color.hex("#01c159") + ) + private val roeAndRoaDf = + companiesDf.groupBy { sector }.aggregate { + ROA.mean() into "Avg ROA" + ROA.std() into "Std ROA" + ROE.mean() into "Avg ROE" + ROE.std() into "Std ROE" + } as DataFrame + + + @Ignore + @Test + fun notebook_test_top_12_german_companies_2() { + // SampleStart + // Read data from a CSV file into a DataFrame + val dataFrame = DataFrame.read("top_12_german_companies.csv") + .renameToCamelCase().rename("rOA(%)", "rOE(%)").into("ROA", "ROE") + // SampleEnd + } + + @Test + fun notebook_test_top_12_german_companies_3() { + // SampleStart + dataFrame.head() + // SampleEnd + .saveTable() + } + + @Test + fun notebook_test_top_12_german_companies_4() { + // SampleStart + // import kotlinx.datetime.format.Padding + // import kotlinx.datetime.format.char + + // Define a custom date format without zero-padding for the month, + // separating month/day/year with slashes + val format = LocalDate.Format { + monthNumber(Padding.NONE) + char('/') + dayOfMonth() + char('/') + year() + } + + // Enum of Business Sectors + /* enum class BusinessSector(val simpleName: String) { + AUTOMOTIVE("Automotive"), + BANKING("Banking"), + INDUSTRIAL_TECH("Industrial"), + INSURANCE_FINANCE("Insurance"), + TELECOMMUNICATIONS("Telecom"), + IT_SOFTWARE("IT"), + PHARMA_CHEMICAL("Pharma"), + OTHER("Other") + }*/ + + // Create a new DataFrame by converting the "period" column to LocalDate using the custom format + // and converting "percentageDebtToEquity" column to Double, + // then sorting based on "company" and "period", and finally adding a "sector" column + // depending on the company name + val companiesDf = dataFrame + .convert { period }.with { LocalDate.parse(it, format) } + .convert { percentageDebtToEquity }.with { it.removeSuffix("%").replace(',', '.').toDouble() } + .convert { ROA and ROE }.with { it.replace(".", "").toDouble() } + .sortBy { company and period } + .add("sector") { + when (company) { + "Volkswagen AG", "BMW AG", "Daimler AG", "Porsche AG" -> BusinessSector.AUTOMOTIVE + "Siemens AG", "BASF SE" -> BusinessSector.INDUSTRIAL_TECH + "Allianz SE" -> BusinessSector.INSURANCE_FINANCE + "Deutsche Bank AG" -> BusinessSector.BANKING + "Deutsche Telekom AG" -> BusinessSector.TELECOMMUNICATIONS + "SAP SE" -> BusinessSector.IT_SOFTWARE + "Bayer AG", "Merck KGaA" -> BusinessSector.PHARMA_CHEMICAL + else -> BusinessSector.OTHER + } + } + // SampleEnd + } + + @Test + fun notebook_test_top_12_german_companies_5() { + // SampleStart + companiesDf.groupBy { company }.aggregate { + val financeColumns = + it.select { revenue and netIncome and liabilities and assets and equity and ROA and ROE and percentageDebtToEquity } + financeColumns.mean() into "mean" + financeColumns.median() into "median" + financeColumns.std() into "std" + financeColumns.min() into "min" + financeColumns.max() into "max" + } + // SampleEnd + .saveTable() + } + + @Test + fun notebook_test_top_12_german_companies_6() { + // SampleStart + // Group by "company" and aggregate key financial columns + companiesDf.groupBy { sector }.aggregate { + val financeColumns = + it.select { revenue and netIncome and liabilities and assets and equity and ROA and ROE and percentageDebtToEquity } + financeColumns.mean() into "mean" + financeColumns.median() into "median" + financeColumns.std() into "std" + financeColumns.min() into "min" + financeColumns.max() into "max" + } + // SampleEnd + .saveTable() + } + + @Test + fun notebook_test_top_12_german_companies_7() { + // SampleStart + companiesDf.groupBy { sector }.aggregate { + revenue.mean() into "Avg revenue" + revenue.sum() into "Total revenue" + netIncome.mean() into "Avg Net Income" + netIncome.sum() into "Sum Net Income" + ROA.mean() into "Avg ROA" + ROE.mean() into "Avg ROE" + }.sortBy { sector } + // SampleEnd + .saveTable() + } + + @Test + fun notebook_test_top_12_german_companies_8() { + // SampleStart + // Group by "period" and "sector" then compute total revenue and net income + val timeSerDf = companiesDf.groupBy { period and sector }.aggregate { + revenue.sum() into "totalRevenue" + netIncome.sum() into "totalNetIncome" + } + + // List of business sectors + val listOfSectors = listOf( + BusinessSector.AUTOMOTIVE, + BusinessSector.BANKING, + BusinessSector.INSURANCE_FINANCE, + BusinessSector.INDUSTRIAL_TECH, + BusinessSector.TELECOMMUNICATIONS, + BusinessSector.IT_SOFTWARE, + BusinessSector.PHARMA_CHEMICAL + ) + + // Matching colors for each sector + val listOfSectorColors = listOf( + Color.hex("#ffaf00"), + Color.hex("#f46920"), + Color.hex("#f53255"), + Color.hex("#f857c1"), + Color.hex("#29bdfd"), + Color.hex("#00cbbf"), + Color.hex("#01c159") + ) + // SampleEnd + } + + @Test + fun notebook_test_top_12_german_companies_9() { + // SampleStart + // Plot total revenue by period and sector + timeSerDf.plot { + // Map the x-axis to the "period" column + x(period) { axis.name = "Date" } + // Map the y-axis to the aggregated "totalRevenue" + y(totalRevenue) { axis.name = "Revenue" } + + // Draw a line chart + line { + // Color lines by the "sector" column + color(sector) { + // Use a categorical color scale with predefined colors and sectors + scale = categorical(range = listOfSectorColors, domain = listOfSectors) + // Configure and label the legend + legend { + name = "Sector" + this.breaksLabeled( + BusinessSector.AUTOMOTIVE to BusinessSector.AUTOMOTIVE.simpleName, + BusinessSector.BANKING to BusinessSector.BANKING.simpleName, + BusinessSector.INSURANCE_FINANCE to BusinessSector.INSURANCE_FINANCE.simpleName, + BusinessSector.INDUSTRIAL_TECH to BusinessSector.INDUSTRIAL_TECH.simpleName, + BusinessSector.TELECOMMUNICATIONS to BusinessSector.TELECOMMUNICATIONS.simpleName, + BusinessSector.IT_SOFTWARE to BusinessSector.IT_SOFTWARE.simpleName, + BusinessSector.PHARMA_CHEMICAL to BusinessSector.PHARMA_CHEMICAL.simpleName + ) + } + } + } + // Add points on top of the line chart + points { + size = 3.0 + color(sector) { scale = categorical(range = listOfSectorColors, domain = listOfSectors) } + } + + // Adjust the layout and overall plot appearance + layout { + title = "Revenue by Sector" + size = 875 to 500 + } + } + // SampleEnd + .saveSample() + } + + @Test + fun notebook_test_top_12_german_companies_10() { + // SampleStart + // Plot total net income by period and sector + timeSerDf.plot { + // Map the x-axis to the "period" column + x(period) { axis.name = "Date" } + // Map the y-axis to the aggregated "totalNetIncome" + y(totalNetIncome) { axis.name = "Net Income" } + + // Draw a line chart + line { + // Color lines by the "sector" column + color(sector) { + // Use the same categorical color scale and sector list + scale = categorical(range = listOfSectorColors, domain = listOfSectors) + // Configure and label the legend + legend { + name = "Sector" + this.breaksLabeled( + BusinessSector.AUTOMOTIVE to BusinessSector.AUTOMOTIVE.simpleName, + BusinessSector.BANKING to BusinessSector.BANKING.simpleName, + BusinessSector.INSURANCE_FINANCE to BusinessSector.INSURANCE_FINANCE.simpleName, + BusinessSector.INDUSTRIAL_TECH to BusinessSector.INDUSTRIAL_TECH.simpleName, + BusinessSector.TELECOMMUNICATIONS to BusinessSector.TELECOMMUNICATIONS.simpleName, + BusinessSector.IT_SOFTWARE to BusinessSector.IT_SOFTWARE.simpleName, + BusinessSector.PHARMA_CHEMICAL to BusinessSector.PHARMA_CHEMICAL.simpleName + ) + } + } + + } + + // Add points on top of the line chart + points { + size = 3.0 + color(sector) { scale = categorical(range = listOfSectorColors, domain = listOfSectors) } + } + + // Adjust the layout and overall plot appearance + layout { + title = "Net Income by Sector" + size = 875 to 500 + } + } + // SampleEnd + .saveSample() + } + + @Test + fun notebook_test_top_12_german_companies_11() { + // SampleStart + // Group data by sector to compute average and standard deviations of ROA and ROE + val roeAndRoaDf = companiesDf.groupBy { sector }.aggregate { + ROA.mean() into "Avg ROA" + ROA.std() into "Std ROA" + ROE.mean() into "Avg ROE" + ROE.std() into "Std ROE" + } + + roeAndRoaDf + // SampleEnd + .saveTable() + } + + @Test + fun notebook_test_top_12_german_companies_12() { + // SampleStart + // Plot average ROA by sector with error bars representing one standard deviation + roeAndRoaDf.plot { + // Set the x-axis to the sector names + x(sector.map { it.simpleName }) { axis.name = "Sector of Business" } + + bars { + // Use the "Avg ROA" column for the bar heights + y(`Avg ROA`) { scale = continuous(min = .0, max = 4.5e+9) } + // Fill bars with a chosen color + fillColor = Color.hex("#ffaf00") + } + lineRanges { + // Calculate the min and max for the error bars (Std ROA) + yMin(`Avg ROA`.toList().zip(`Std ROA`.toList()).map { it.first - it.second }) + yMax(`Avg ROA`.toList().zip(`Std ROA`.toList()).map { it.first + it.second }) + // Color the line of the ranges + borderLine.color = Color.GREY + } + + // Adjust layout options such as title and overall size + layout { + title = "Average ROA By Sector With Standard Deviation" + size = 875 to 500 + } + } + // SampleEnd + .saveSample() + } + + @Test + fun notebook_test_top_12_german_companies_13() { + // SampleStart + // Plot average ROE by sector with error bars representing one standard deviation + roeAndRoaDf.plot { + // Set the x-axis to the sector names + x(sector.map { it.simpleName }) { axis.name = "Sector of Business" } + + bars { + // Use the "Avg ROE" column for the bar heights + y(`Avg ROE`) + // Fill bars with a chosen color + fillColor = Color.hex("#ffaf00") + } + lineRanges { + // Calculate the min and max for the error bars (Std ROE) + yMin(`Avg ROE`.toList().zip(`Std ROE`.toList()).map { it.first - it.second }) + yMax(`Avg ROE`.toList().zip(`Std ROE`.toList()).map { it.first + it.second }) + // Color the line of the ranges + borderLine.color = Color.GREY + } + + // Adjust layout options such as title and overall size + layout { + title = "Average ROE By Sector With Standard Deviation" + size = 875 to 500 + } + } + // SampleEnd + .saveSample() + } +} diff --git a/kandy-lets-plot/src/test/resources/top_12_german_companies.csv b/kandy-lets-plot/src/test/resources/top_12_german_companies.csv new file mode 100644 index 000000000..569e80fa3 --- /dev/null +++ b/kandy-lets-plot/src/test/resources/top_12_german_companies.csv @@ -0,0 +1,385 @@ +Company,Period,Revenue,Net Income,Liabilities,Assets,Equity,ROA (%),ROE (%),Debt to Equity,percentage Debt to Equity +Volkswagen AG,12/31/2017,9750496618,516889818.4,21354201295,54861302788,33507101493,942.175.618,1.542.627.668,637.303.746,"0,00%" +Siemens AG,12/31/2017,19716237464,1276840007,45009303223,75268101508,30258798286,1.696.389.282,4.219.731.382,1.487.478.214,"283,68%" +Allianz SE,12/31/2017,19458831198,1600107100,48538978480,69583711255,21044732775,2.299.542.624,7.603.361.452,2.306.466.848,"329,65%" +BMW AG,12/31/2017,18808147150,960184349.6,35382107627,67327482638,31945375011,142.614.028,3.005.706.927,1.107.581.539,"0,00%" +BASF SE,12/31/2017,16895580815,1797081911,28309420014,68036567115,39727147101,2.641.347.127,4.523.561.449,71.259.635,"634,80%" +Deutsche Telekom AG,12/31/2017,11505351408,1425682028,36680109736,61941763399,25261653663,2.301.649.081,5.643.660.732,1.452.007.467,"388,68%" +Daimler AG,12/31/2017,17133317238,1743084807,19707492188,56381587968,36674095780,309.158.516,4.752.904.659,537.368.182,"884,48%" +SAP SE,12/31/2017,17560385805,2276360916,40828269592,73785136305,32956866713,3.085.121.245,6.907.091.429,123.883.954,"557,55%" +Bayer AG,12/31/2017,18251254610,2670535587,16524775630,29169852309,12645076680,915.512.207,2.111.917.274,130.681.498,"1616,08%" +Deutsche Bank AG,12/31/2017,9318303083,958508333.7,11123712659,49692010679,38568298020,1.928.898.269,2.485.223.313,288.415.959,"0,00%" +Porsche AG,12/31/2017,12119018742,894091080.3,28361763209,73909302825,45547539617,120.971.386,1.962.984.363,622.684.857,"0,00%" +Merck KGaA,12/31/2017,11760953647,812341476,29296072481,51828662312,22532589831,1.567.359.526,3.605.184.677,130.016.446,"277,29%" +Volkswagen AG,12/31/2018,15132692627,1296423798,22603216585,52612061095,30008844510,2.464.119.008,432.013.901,753.218.491,"573,56%" +Siemens AG,12/31/2018,9738110535,1128540207,47796930083,86681431720,38884501637,1.301.939.971,2.902.287.954,1.229.202.589,"236,11%" +Allianz SE,12/31/2018,11358222175,1091045445,25112465464,47584136480,22471671016,229.287.642,4.855.203.888,1.117.516.603,"434,46%" +BMW AG,12/31/2018,6557505339,618883604.9,33315961378,60538144207,27222182829,1.022.303.562,2.273.453.267,1.223.853.414,"0,00%" +BASF SE,12/31/2018,10270182691,708863277.1,42708053991,57050114588,14342060597,124.252.735,4.942.548.334,2.977.818.543,"0,00%" +Deutsche Telekom AG,12/31/2018,15273880507,1698666925,35514608139,56589637247,21075029108,3.001.727.892,8.060.092.903,1.685.151.084,"478,30%" +Daimler AG,12/31/2018,14737735881,1726421482,41539802392,60496305967,18956503575,2.853.763.473,9.107.278.014,2.191.321.951,"415,61%" +SAP SE,12/31/2018,10184334320,1365996842,44932510908,90595603440,45663092533,1.507.795.953,299.146.809,98.400.061,"304,01%" +Bayer AG,12/31/2018,18541451915,2242441772,28896911499,58238408654,29341497155,3.850.451.659,7.642.560.842,984.847.888,"776,01%" +Deutsche Bank AG,12/31/2018,8808021584,1274941171,36770248755,55390246152,18619997397,2.301.743.104,6.847.160.844,197.477.196,"346,73%" +Porsche AG,12/31/2018,7955302121,939711762.4,35954156213,65117507958,29163351745,1.443.101.543,3.222.235.121,1.232.854.047,"0,00%" +Merck KGaA,12/31/2018,14241334382,1165009578,37401670447,71252783664,33851113217,1.635.037.283,3.441.569.472,1.104.887.458,"311,49%" +Volkswagen AG,12/31/2019,15448794996,1760261975,43856467673,93429721556,49573253883,1.884.049.257,3.550.830.008,884.680.029,"401,37%" +Siemens AG,12/31/2019,12841952642,1411970100,29126693633,55130546327,26003852694,2.561.139.322,5.429.849.634,1.120.091.472,"484,77%" +Allianz SE,12/31/2019,15508664175,1417702229,18132341778,46620472331,28488130553,3.040.943.514,4.976.466.345,636.487.598,"781,86%" +BMW AG,12/31/2019,8859340166,1144565565,40538252302,78168514026,37630261724,1.464.228.377,3.041.609.365,1.077.277.979,"282,34%" +BASF SE,12/31/2019,17877114298,1224635136,31860731568,65500282723,33639551155,1.869.663.892,3.640.462.175,947.121.185,"384,37%" +Deutsche Telekom AG,12/31/2019,15796654133,805016265.8,11494162751,47776069193,36281906442,1.684.978.022,2.218.781.604,31.680.151,"0,00%" +Daimler AG,12/31/2019,10937481164,1145842379,19578678306,31178454239,11599775933,3.675.109.647,9.878.142.355,1.687.849.698,"585,25%" +SAP SE,12/31/2019,8046709255,662165230.7,39424977655,89177961232,49752983577,742.521.158,1.330.905.572,79.241.434,"0,00%" +Bayer AG,12/31/2019,17402979577,1387637302,31887265220,61548783018,29661517798,2.254.532.476,467.824.105,1.075.038.217,"435,17%" +Deutsche Bank AG,12/31/2019,9814156310,576451352.5,25131659304,46301105258,21169445954,1.245.005.598,2.723.034.669,1.187.166.606,"0,00%" +Porsche AG,12/31/2019,15806884536,845076735.9,34376508276,55201546863,20825038587,1.530.893.216,405.798.401,1.650.729.632,"0,00%" +Merck KGaA,12/31/2019,17666094987,1547381835,47717175754,76466035769,28748860015,2.023.619.793,5.382.411.109,1.659.793.666,"324,28%" +Volkswagen AG,12/31/2020,6074909806,875656602.5,42262965768,80569106208,38306140440,1.086.839.167,2.285.943.174,1.103.294.806,"0,00%" +Siemens AG,12/31/2020,17731550761,1893885668,10137976567,39067986912,28930010345,4.847.666.382,6.546.439.648,350.431.142,"1868,11%" +Allianz SE,12/31/2020,10098889889,1161225924,39497490703,77791788915,38294298213,1.492.735.853,3.032.372.908,1.031.419.625,"294,00%" +BMW AG,12/31/2020,6940311223,962499322.1,29150494667,41331347093,12180852427,2.328.739.298,7.901.740.276,2.393.140.779,"0,00%" +BASF SE,12/31/2020,11583572658,1407524593,37122614462,82673694404,45551079942,1.702.505.982,3.089.991.707,814.966.725,"379,16%" +Deutsche Telekom AG,12/31/2020,19614896783,1231038198,45625478678,94598230353,48972751675,1.301.333.221,2.513.720.704,931.650.298,"269,81%" +Daimler AG,12/31/2020,8582626126,482111535,40109942612,86478204177,46368261566,55.749.485,1.039.744.685,865.030.115,"120,20%" +SAP SE,12/31/2020,9687560178,1027662516,40817136100,65594337613,24777201513,1.566.693.946,4.147.613.343,1.647.366.676,"251,77%" +Bayer AG,12/31/2020,14954913916,1086100755,49223539015,87910824435,38687285420,1.235.457.365,2.807.384.243,1.272.344.091,"220,65%" +Deutsche Bank AG,12/31/2020,16454038855,1761523797,29090502114,64555499757,35464997643,2.728.696.708,4.966.936.173,820.259.525,"605,53%" +Porsche AG,12/31/2020,14994514428,1118453310,13089516203,26894911034,13805394830,4.158.605.723,8.101.566.983,948.145.009,"854,46%" +Merck KGaA,12/31/2020,5897253747,625948791.2,38506883950,51548729961,13041846011,1.214.285.573,4.799.541.343,2.952.563.918,"0,00%" +Volkswagen AG,12/31/2021,11544833810,1709962819,14660160673,40260511363,25600350690,4.247.245.654,6.679.450.762,572.654.682,"1166,40%" +Siemens AG,12/31/2021,15389996263,923394181.6,21808491986,40095375980,18286883994,2.302.994.196,5.049.488.923,1.192.575.618,"0,00%" +Allianz SE,12/31/2021,9380555380,1350100953,41223028779,68933524997,27710496218,195.855.493,4.872.164.475,1.487.632.284,"327,51%" +BMW AG,12/31/2021,18321682480,1436804767,33230894855,73659285546,40428390691,1.950.609.154,355.394.994,821.969.272,"432,37%" +BASF SE,12/31/2021,18793891125,2702710428,12423193661,54396450621,41973256961,4.968.541.876,6.439.124.871,295.978.787,"2175,54%" +Deutsche Telekom AG,12/31/2021,18588737724,2116759905,15557689149,64787149652,49229460503,3.267.252.713,429.978.286,316.023.962,"1360,59%" +Daimler AG,12/31/2021,19604996789,2406144332,39627936994,77954949919,38327012925,3.086.583.128,6.277.933.363,1.033.942.746,"607,18%" +SAP SE,12/31/2021,12465229611,800983300.4,28257880783,51866957482,23609076699,1.544.303.617,3.392.692.186,1.196.907.492,"0,00%" +Bayer AG,12/31/2021,13009192330,1451167596,31049801948,49482603845,18432801897,2.932.682.364,7.872.745.579,1.684.486.283,"467,37%" +Deutsche Bank AG,12/31/2021,10414516344,1120888368,33962234582,80244374780,46282140198,1.396.843.544,2.421.859.412,733.808.645,"330,04%" +Porsche AG,12/31/2021,14047287806,1489899027,14851641486,42561319258,27709677772,3.500.594.092,5.376.818.307,535.973.085,"1003,19%" +Merck KGaA,12/31/2021,12917187369,1708731611,17319486583,43037893850,25718407267,3.970.295.613,664.400.246,673.427.651,"986,59%" +Volkswagen AG,12/31/2022,11168902003,587168043.4,20072750684,67464272122,47391521437,870.339.255,1.238.972.765,423.551.515,"0,00%" +Siemens AG,12/31/2022,16861000234,918419211.5,32873432607,81487723152,48614290545,1.127.064.515,1.889.195.957,676.209.243,"0,00%" +Allianz SE,12/31/2022,16472180169,2043609431,34718393733,62464433746,27746040013,3.271.636.847,736.540.937,125.129.185,"588,62%" +BMW AG,12/31/2022,7382434260,1093800017,35338248318,45898916976,10560668658,2.383.062.802,1.035.729.888,3.346.213.148,"309,52%" +BASF SE,12/31/2022,13018762765,1704211990,11167034881,30031637051,18864602170,567.472.225,9.033.914.282,591.957.083,"1526,11%" +Deutsche Telekom AG,12/31/2022,9420241101,990420474.4,12931047199,34081834188,21150786988,2.906.006.963,4.682.664.881,611.374.282,"0,00%" +Daimler AG,12/31/2022,9363037363,704852259.1,34778269496,54701473950,19923204453,1.288.543.449,3.537.845.836,1.745.616.253,"0,00%" +SAP SE,12/31/2022,16805465254,1837934274,10102113588,37939001132,27836887544,4.844.445.609,6.602.513.558,362.903.847,"1819,36%" +Bayer AG,12/31/2022,19647577142,1826544478,10046371516,37513857859,27467486343,4.868.985.975,6.649.842.126,365.755.038,"1818,11%" +Deutsche Bank AG,12/31/2022,7252204354,949551701.2,44858188981,86269206025,41411017045,110.068.441,229.299.295,1.083.242.871,"0,00%" +Porsche AG,12/31/2022,5536870879,298030924.1,19445445005,30265348449,10819903444,984.726.558,275.446.935,1.797.192.101,"0,00%" +Merck KGaA,12/31/2022,7610452133,536310750.1,48688712492,88688270941,39999558449,604.714.405,1.340.791.676,1.217.231.249,"0,00%" +Volkswagen AG,12/31/2023,16782030250,1481049554,32384571623,78417189252,46032617629,1.888.679.725,3.217.391.559,70.351.358,"457,33%" +Siemens AG,12/31/2023,8282175431,459390813.5,28551545477,64407150986,35855605509,713.260.572,1.281.224.531,796.292.381,"0,00%" +Allianz SE,12/31/2023,13941085692,1722322782,32850325731,66248470463,33398144732,2.599.792.523,5.156.941.487,983.597.322,"524,29%" +BMW AG,12/31/2023,8469619625,602960048.5,32716601950,78863289364,46146687414,764.563.656,1.306.616.103,708.969.674,"0,00%" +BASF SE,12/31/2023,12852011317,684110085.9,18179739764,53040583203,34860843439,1.289.786.131,1.962.402.565,521.494.547,"0,00%" +Deutsche Telekom AG,12/31/2023,12752580163,884167446.6,28470052842,53978751141,25508698298,1.637.991.669,3.466.140.986,1.116.091.951,"0,00%" +Daimler AG,12/31/2023,5161220914,527374446.2,15838145692,51630867307,35792721615,1.021.432.476,1.473.412.533,442.496.267,"0,00%" +SAP SE,12/31/2023,13414872686,1069408471,35679098743,80239095201,44559996459,1.332.777.331,2.399.929.435,800.697.971,"299,73%" +Bayer AG,12/31/2023,15851738346,905684923,42371799830,52389418748,10017618918,1.728.755.433,9.040.920.106,422.972.766,"213,75%" +Deutsche Bank AG,12/31/2023,12421650351,967097057.5,33786415736,79888234351,46101818615,1.210.562.563,2.097.741.665,73.286.514,"0,00%" +Porsche AG,12/31/2023,16438581863,1419961878,19415830018,36726316966,17310486949,386.633.345,8.202.899.676,1.121.622.406,"731,34%" +Merck KGaA,12/31/2023,17637490503,2103890014,44486109206,61628452463,17142343256,3.413.829.051,1.227.305.965,259.510.083,"472,93%" +Volkswagen AG,12/31/2024,14186610709,2107123762,14632441063,32642980976,18010539913,6.455.059.247,1.169.939.253,812.437.669,"1440,04%" +Siemens AG,12/31/2024,8451674463,530013312.6,43381572844,83248031989,39866459145,636.667.678,1.329.471.751,1.088.172.207,"0,00%" +Allianz SE,12/31/2024,7203400075,631684017.9,23852825717,41830939577,17978113860,1.510.088.046,3.513.627.863,13.267.702,"0,00%" +BMW AG,12/31/2024,6152045684,707968936.5,29243056689,57427208762,28184152074,1.232.810.982,2.511.939.811,1.037.570.923,"0,00%" +BASF SE,12/31/2024,15113132584,1914494156,43259483243,88221659272,44962176029,2.170.095.385,4.258.010.455,962.130.552,"442,56%" +Deutsche Telekom AG,12/31/2024,19139621006,2834016899,18313729720,41643539977,23329810257,6.805.417.841,1.214.762.087,784.992.656,"1547,48%" +Daimler AG,12/31/2024,16456922307,1492220093,48085311015,79618978403,31533667388,1.874.201.507,4.732.148.895,1.524.888.001,"310,33%" +SAP SE,12/31/2024,16754700510,923006607.2,49206362475,96053458782,46847096308,96.093.011,1.970.253.612,105.036.099,"0,00%" +Bayer AG,12/31/2024,5728072323,604515777.3,34398569588,80121015584,45722445996,754.503.388,1.322.142.252,752.334.413,"0,00%" +Deutsche Bank AG,12/31/2024,19852203756,2223753463,36451064643,76222443508,39771378864,2.917.452.342,5.591.341.126,916.514.983,"610,07%" +Porsche AG,12/31/2024,13056746207,1500333956,33698449632,62560115073,28861665442,2.398.227.615,519.836.237,1.167.585.069,"445,22%" +Merck KGaA,12/31/2024,18915504026,2413914962,30820597362,65357495789,34536898427,3.693.401.855,6.989.379.684,892.396.213,"783,21%" +Volkswagen AG,3/31/2017,19695988685,1329397719,24520605687,58120450678,33599844991,2.287.314.883,3.956.559.082,729.783.298,"542,16%" +Siemens AG,3/31/2017,19833452617,1519697640,16063730954,53272532961,37208802008,2.852.685.156,4.084.242.325,431.718.574,"946,04%" +Allianz SE,3/31/2017,9164246774,981041952.6,19407851173,43999960378,24592109205,2.229.642.809,3.989.255.027,789.190.183,"0,00%" +BMW AG,3/31/2017,18765462866,1081539894,34543581067,80126669599,45583088532,1.349.787.655,2.372.677.959,75.781.572,"313,09%" +BASF SE,3/31/2017,16836243798,2100216671,19360624506,64506392372,45145767866,3.255.827.204,4.652.078.745,428.846.942,"1084,79%" +Deutsche Telekom AG,3/31/2017,13951553720,1348710564,21828517855,62780698314,40952180459,2.148.288.567,3.293.379.129,533.024.557,"617,87%" +Daimler AG,3/31/2017,7142318181,980884827.4,33400146455,69867319792,36467173338,1.403.925.083,2.689.774.769,915.896.227,"0,00%" +SAP SE,3/31/2017,6568715630,719090971.2,18570025227,65782612977,47212587750,1.093.132.271,1.523.091.628,393.327.841,"0,00%" +Bayer AG,3/31/2017,13027840283,1127343336,48157761467,85094142147,36936380680,1.324.818.968,3.052.121.825,1.303.802.933,"234,09%" +Deutsche Bank AG,3/31/2017,14843015558,1680873545,14840428879,46770654578,31930225699,3.593.863.632,5.264.208.155,464.776.824,"1132,63%" +Porsche AG,3/31/2017,5883512064,440184439.5,47041623953,76926443805,29884819852,572.214.726,1.472.936.567,1.574.097.625,"0,00%" +Merck KGaA,3/31/2017,6974057939,389688114,31405828053,49969368014,18563539961,779.853.997,2.099.212.299,1.691.801.678,"124,08%" +Volkswagen AG,3/31/2018,15989256775,1291419013,42659096630,53863933584,11204836955,2.397.557.934,1.152.554.935,3.807.203.693,"302,73%" +Siemens AG,3/31/2018,10138254767,1262116952,45296373926,72972094010,27675720085,1.729.588.508,45.603.762,163.668.276,"278,64%" +Allianz SE,3/31/2018,17610247426,2015329868,40259793264,68504291957,28244498693,294.190.307,7.135.300.541,1.425.403.003,"500,58%" +BMW AG,3/31/2018,7335760537,743322627.7,48776154787,95122657900,46346503113,781.435.931,1.603.837.566,1.052.423.624,"0,00%" +BASF SE,3/31/2018,16240083291,1330285061,20620789244,35863861269,15243072025,3.709.263.346,872.714.541,1.352.797.468,"645,12%" +Deutsche Telekom AG,3/31/2018,17427808963,1967928248,36127253691,72733202053,36605948363,2.705.680.752,5.375.979.415,986.923.036,"544,72%" +Daimler AG,3/31/2018,8641226117,983139976.9,36665610699,59016046453,22350435755,1.665.885.867,4.398.750.824,164.048.751,"0,00%" +SAP SE,3/31/2018,19774628627,1421900578,42095348780,63447988091,21352639311,224.104.912,6.659.132.662,1.971.435.389,"337,78%" +Bayer AG,3/31/2018,6560227745,884011217.4,46074070728,59231903754,13157833026,1.492.457.884,6.718.516.763,3.501.645.798,"0,00%" +Deutsche Bank AG,3/31/2018,13740924616,1900766775,46035800087,57764409125,11728609038,3.290.550.018,1.620.624.209,3.925.086.081,"412,89%" +Porsche AG,3/31/2018,17555661518,1335299860,46994742351,88007178782,41012436432,1.517.262.431,3.255.841.341,1.145.865.655,"284,14%" +Merck KGaA,3/31/2018,9318197850,641817429.8,48172882387,65628926423,17456044036,977.949,3.676.763.352,2.759.667.785,"0,00%" +Volkswagen AG,3/31/2019,14907937768,1438598483,20854112480,54405171112,33551058632,2.644.231.152,4.287.788.646,621.563.472,"689,84%" +Siemens AG,3/31/2019,11643264079,1453293868,35825693285,75665486452,39839793167,1.920.682.647,3.647.844.912,899.243.958,"405,66%" +Allianz SE,3/31/2019,11744716344,1284599881,31388781794,60735397643,29346615849,2.115.076.103,4.377.335.663,1.069.587.783,"409,25%" +BMW AG,3/31/2019,15132523755,1022601951,38023980809,86825852703,48801871894,1.177.762.059,2.095.415.424,779.150.048,"268,94%" +BASF SE,3/31/2019,13827496449,1133835190,46117811894,82240340578,36122528684,1.378.684.939,3.138.858.853,127.670.497,"245,86%" +Deutsche Telekom AG,3/31/2019,17933328881,1112803764,47538352610,96220600130,48682247520,1.156.513.016,2.285.851.252,976.502.833,"234,09%" +Daimler AG,3/31/2019,11018589464,1097018126,21597719176,57241727973,35644008796,1.916.465.776,3.077.706.922,605.928.455,"507,93%" +SAP SE,3/31/2019,18300753695,989934361.3,24181084351,42408075770,18226991420,2.334.306.245,5.431.145.154,1.326.663.507,"0,00%" +Bayer AG,3/31/2019,15790567330,951709509,15068249757,54818573513,39750323756,1.736.107.761,2.394.218.258,379.072.378,"631,60%" +Deutsche Bank AG,3/31/2019,11192425819,1563079220,10546244209,38688850201,28142605992,4.040.128.387,5.554.138.164,374.742.986,"1482,12%" +Porsche AG,3/31/2019,12923331618,1676027156,26939537534,57056948432,30117410898,2.937.463.714,5.564.977.554,894.483.846,"622,14%" +Merck KGaA,3/31/2019,19217681417,2238884002,12733925598,36970270841,24236345242,6.055.903.707,9.237.712.947,525.406.181,"1758,20%" +Volkswagen AG,3/31/2020,15933280023,1743770422,44490184859,59864740520,15374555661,2.912.850.548,1.134.192.402,289.375.419,"391,94%" +Siemens AG,3/31/2020,15947068708,835207323,19623471264,54178518349,34555047086,1.541.583.913,241.703.425,567.890.161,"425,62%" +Allianz SE,3/31/2020,9263668849,635671166.8,12187372783,46576570031,34389197248,1.364.787.416,1.848.461.778,354.395.385,"0,00%" +BMW AG,3/31/2020,12864732630,1045458883,40800355871,78928197945,38127842074,1.324.569.559,2.741.982.831,1.070.093.497,"256,24%" +BASF SE,3/31/2020,9927936838,1197785480,37635556954,86394249061,48758692107,138.641.807,2.456.557.854,7.718.738,"318,26%" +Deutsche Telekom AG,3/31/2020,17673360637,1501884164,32122639453,73938353262,41815713810,2.031.265.369,3.591.674.104,768.195.411,"467,55%" +Daimler AG,3/31/2020,17781237366,1179606125,18447303156,42728183777,24280880621,2.760.721.427,4.858.168.628,759.746.051,"639,45%" +SAP SE,3/31/2020,9236017256,529982877.3,48081211472,96574017987,48492806515,548.784.123,10.929.103,991.512.245,"0,00%" +Bayer AG,3/31/2020,14107423353,1367599932,13615077246,27849556029,14234478784,4.910.670.497,9.607.657.241,956.485.829,"1004,47%" +Deutsche Bank AG,3/31/2020,11812773682,980285159.4,44322011186,92083567435,47761556249,1.064.560.363,2.052.456.487,927.985.071,"0,00%" +Porsche AG,3/31/2020,10779438774,1358943185,33525281805,71745524050,38220242245,189.411.563,3.555.558.796,877.160.369,"405,35%" +Merck KGaA,3/31/2020,15236467952,894574066,36909348765,72030787429,35121438664,1.241.932.926,2.547.088.331,1.050.906.517,"242,37%" +Volkswagen AG,3/31/2021,19710269369,1137314233,36066540496,64427162211,28360621715,1.765.271.344,4.010.187.943,1.271.711.913,"315,34%" +Siemens AG,3/31/2021,18942636889,1771268697,15918566390,49830943520,33912377129,3.554.555.808,5.223.074.426,469.402.848,"1112,71%" +Allianz SE,3/31/2021,8226780982,522858114.5,39148815906,54906293986,15757478080,952.273.549,3.318.158.603,2.484.459.487,"0,00%" +BMW AG,3/31/2021,8417325544,742678238,36333752143,50307101979,13973349836,147.628.905,5.314.962.029,2.600.217.741,"204,40%" +BASF SE,3/31/2021,6644620233,990744714.5,21424039042,52878014917,31453975875,1.873.642.035,314.982.347,681.123.402,"0,00%" +Deutsche Telekom AG,3/31/2021,6356573780,831921707.3,22622163266,70081083207,47458919941,1.187.084.544,1.752.930.131,476.668.312,"0,00%" +Daimler AG,3/31/2021,17838709007,1559286116,42906482998,53748741344,10842258346,2.901.065.359,1.438.156.209,3.957.338.188,"363,42%" +SAP SE,3/31/2021,6588278496,731216298.1,11461577968,53638409260,42176831292,1.363.232.632,1.733.691.877,271.750.571,"0,00%" +Bayer AG,3/31/2021,15481381698,1813221637,20090535950,39516175321,19425639371,4.588.555.503,933.416.709,1.034.227.784,"902,53%" +Deutsche Bank AG,3/31/2021,8720665039,1028066418,14173153454,61397948008,47224794554,1.674.431.233,2.176.963.241,300.121.019,"725,36%" +Porsche AG,3/31/2021,7884337935,1152213820,19342832660,61176556532,41833723872,1.883.423.791,2.754.270.272,462.374.153,"595,68%" +Merck KGaA,3/31/2021,14786170161,1680074258,26820455279,61714717112,34894261833,2.722.323.518,4.814.757.986,768.620.795,"626,42%" +Volkswagen AG,3/31/2022,17383281301,2467286454,26847350661,44033610784,17186260123,5.603.189.041,1.435.615.681,1.562.140.365,"919,01%" +Siemens AG,3/31/2022,7786480387,484400549.7,33021752886,60040484961,27018732075,806.789.869,1.792.832.278,122.217.996,"0,00%" +Allianz SE,3/31/2022,16640634818,2400803163,16356578486,32583061956,16226483469,7.368.255.218,1.479.558.505,100.801.745,"1467,79%" +BMW AG,3/31/2022,11652663475,1123917078,30713910663,55316480279,24602569617,2.031.794.272,4.568.291.423,1.248.402.551,"365,93%" +BASF SE,3/31/2022,7020216669,504888024.6,19566830326,62928514411,43361684085,802.319.949,1.164.364.427,451.247.011,"0,00%" +Deutsche Telekom AG,3/31/2022,6523953565,440649540.1,18792941935,60677034815,41884092879,726.221.282,1.052.068.959,448.689.243,"0,00%" +Daimler AG,3/31/2022,13358841713,1013271417,43437924866,86840936189,43403011323,1.166.813.097,2.334.564.784,1.000.804.404,"233,27%" +SAP SE,3/31/2022,14896500404,1471513321,30918779103,51643572423,20724793320,2.849.363.924,7.100.255.712,1.491.873.942,"475,93%" +Bayer AG,3/31/2022,9090799678,904181650.9,49055627276,76658563614,27602936339,1.179.492.034,3.275.671.979,1.777.188.726,"0,00%" +Deutsche Bank AG,3/31/2022,15495522952,1232326295,38566723026,72355738353,33789015327,1.703.149.361,3.647.121.064,1.141.398.252,"319,53%" +Porsche AG,3/31/2022,10774855240,975556879.2,15417730087,40879706571,25461976485,2.386.408.712,3.831.426.362,605.519.768,"0,00%" +Merck KGaA,3/31/2022,7570645554,419794972.7,36325434183,64924945929,28599511746,646.585.017,1.467.839.648,127.014.176,"0,00%" +Volkswagen AG,3/31/2023,13460197722,1122578628,37590881745,71858135493,34267253748,1.562.215.079,3.275.951.543,1.096.991.373,"298,63%" +Siemens AG,3/31/2023,13888922534,1095226689,47947497289,70943083888,22995586599,1.543.810.374,4.762.769.081,2.085.073.894,"228,42%" +Allianz SE,3/31/2023,14581130415,1529637744,32236390204,47068791910,14832401705,3.249.791.809,1.031.281.228,2.173.376.291,"474,51%" +BMW AG,3/31/2023,19456335114,2009563555,47081333393,64537094762,17455761369,3.113.811.618,1.151.232.256,2.697.180.169,"426,83%" +BASF SE,3/31/2023,9496852852,691692392.2,36704020555,77712763784,41008743229,890.062.788,1.686.694.928,895.029.149,"0,00%" +Deutsche Telekom AG,3/31/2023,10942719196,1439735669,35021279445,51489159430,16467879985,279.619.183,8.742.689.833,2.126.641.649,"411,10%" +Daimler AG,3/31/2023,13197347212,691428622,43343894473,57721074868,14377180395,1.197.878.979,4.809.208.781,3.014.770.162,"159,52%" +SAP SE,3/31/2023,14505450248,863046066.9,22921333603,46384701674,23463368071,1.860.626.534,3.678.270.163,976.898.693,"0,00%" +Bayer AG,3/31/2023,15711957620,2201969781,29454258021,71356904907,41902646886,3.085.853.826,5.254.965.841,702.921.181,"747,59%" +Deutsche Bank AG,3/31/2023,7317098693,887813882.3,23138553563,72645962598,49507409035,1.222.110.425,1.793.294.983,467.375.571,"0,00%" +Porsche AG,3/31/2023,8880891013,668545569.7,40027402595,66992846031,26965443436,997.935.764,247.926.785,1.484.396.231,"0,00%" +Merck KGaA,3/31/2023,18085416710,2126765225,44629946816,61554558843,16924612027,3.455.089.704,1.256.610.918,2.636.984.927,"476,53%" +Volkswagen AG,3/31/2024,7309084994,1039334580,30910642675,64531416585,33620773909,161.058.696,3.091.346.389,91.939.117,"336,24%" +Siemens AG,3/31/2024,15785741204,1106822544,13225063565,51661794785,38436731220,2.142.439.202,287.959.592,344.073.576,"836,91%" +Allianz SE,3/31/2024,18801502624,1006058196,48264388990,86904149774,38639760784,1.157.664.161,2.603.686.398,1.249.086.123,"208,45%" +BMW AG,3/31/2024,15848632086,2129654605,38842203399,87315704066,48473500667,2.439.028.154,4.393.440.901,80.130.799,"548,28%" +BASF SE,3/31/2024,19756965859,1431835601,10848294146,60234434421,49386140275,2.377.104.749,2.899.266.055,219.662.725,"1319,87%" +Deutsche Telekom AG,3/31/2024,16377852382,1007117429,43228375752,78855235024,35626859272,1.277.172.567,2.826.848.759,1.213.364.766,"232,98%" +Daimler AG,3/31/2024,17637310202,1618745275,24936555962,37936073156,12999517193,4.267.034.357,124.523.492,1.918.267.855,"649,15%" +SAP SE,3/31/2024,13351789947,761306516.2,45369290420,94052696634,48683406213,809.446.771,1.563.790.571,931.925.146,"0,00%" +Bayer AG,3/31/2024,10194351917,1512864021,26311852797,62689824382,36377971585,2.413.252.926,4.158.736.606,723.290.817,"574,97%" +Deutsche Bank AG,3/31/2024,19417487313,2333015849,28301209342,55585382174,27284172832,4.197.175.153,8.550.802.927,1.037.275.695,"824,35%" +Porsche AG,3/31/2024,12668426079,744579528.3,33183980227,53340703796,20156723569,1.395.893.708,3.693.951.181,1.646.298.324,"0,00%" +Merck KGaA,3/31/2024,18818295502,2691544192,27944602045,74405164472,46460562427,3.617.415.823,5.793.180.392,601.469.302,"963,17%" +Volkswagen AG,6/30/2017,7201825633,722080990.6,27556950386,53860356064,26303405678,1.340.653.949,2.745.199.612,1.047.657.126,"0,00%" +Siemens AG,6/30/2017,9065572324,736570414.4,47957169639,95650487131,47693317491,770.064.468,1.544.389.137,1.005.532.267,"0,00%" +Allianz SE,6/30/2017,14340884258,1865680236,22448503705,35401436947,12952933241,5.270.069.233,1.440.353.472,1.733.082.637,"831,09%" +BMW AG,6/30/2017,10211703797,526461438.3,13575717212,61177654063,47601936851,860.545.319,1.105.966.423,285.192.539,"0,00%" +BASF SE,6/30/2017,16139422505,1276985447,16542748372,53339154988,36796406616,2.394.086.384,3.470.408.021,449.575.105,"771,93%" +Deutsche Telekom AG,6/30/2017,15409119271,924345905.8,44651352138,77649206644,32997854506,1.190.412.556,2.801.230.321,1.353.159.252,"0,00%" +Daimler AG,6/30/2017,10611576433,1197653535,31728621908,65800353827,34071731919,1.820.132.363,3.515.094.384,931.230.088,"377,47%" +SAP SE,6/30/2017,6644029236,744873003.7,11294935497,23437806831,12142871334,317.808.321,6.134.241.097,930.170.072,"0,00%" +Bayer AG,6/30/2017,8439918128,854234127.5,26356391355,61242421820,34886030465,139.484.054,2.448.642.382,755.499.866,"0,00%" +Deutsche Bank AG,6/30/2017,19544012256,2752792674,13706520368,55551723268,41845202900,4.955.368.641,6.578.514.343,327.552.967,"2008,38%" +Porsche AG,6/30/2017,11523447744,1069672005,31531931981,51328720570,19796788588,2.083.963.896,5.403.260.231,1.592.780.154,"339,23%" +Merck KGaA,6/30/2017,11003803134,1050945998,30579291828,50859030282,20279738454,2.066.390.162,5.182.246.312,1.507.874.073,"343,68%" +Volkswagen AG,6/30/2018,6601886883,674015397.4,48397997453,95156833814,46758836361,708.320.538,1.441.471.709,1.035.055.643,"0,00%" +Siemens AG,6/30/2018,11314535587,1340341283,33163887180,56794362553,23630475373,2.359.990.011,5.672.087.683,1.403.437.157,"404,16%" +Allianz SE,6/30/2018,11661846976,1354192659,23626577882,54731462963,31104885082,247.424.897,4.353.633.376,759.577.726,"573,16%" +BMW AG,6/30/2018,17315578796,1167741135,16852576890,50991540077,34138963187,2.290.068.378,342.055.243,493.646.418,"692,92%" +BASF SE,6/30/2018,11432373323,902833070.5,15796422658,55141147698,39344725041,1.637.312.802,2.294.673.732,401.487.687,"0,00%" +Deutsche Telekom AG,6/30/2018,10561657912,1025524147,18824834094,53785357297,34960523204,1.906.697.655,2.933.377.572,538.459.736,"544,77%" +Daimler AG,6/30/2018,18960217812,2711256442,20217118393,63441922522,43224804128,4.273.603.847,6.272.455.125,467.720.301,"1341,07%" +SAP SE,6/30/2018,5282345417,541864195.9,34968772981,55603015081,20634242100,974.523.045,2.626.043.609,1.694.696.263,"0,00%" +Bayer AG,6/30/2018,14443060707,1684483053,37340600075,64364816177,27024216101,2.617.086.715,6.233.235.581,138.174.591,"451,11%" +Deutsche Bank AG,6/30/2018,7788761208,663079894,30096796442,49497014532,19400218090,1.339.636.138,3.417.899.175,155.136.382,"220,32%" +Porsche AG,6/30/2018,9586227654,1382170553,40862854527,89907869527,49045015000,1.537.318.769,2.818.167.256,833.170.395,"338,25%" +Merck KGaA,6/30/2018,7868422908,477697388.2,36789908510,81877040048,45087131537,583.432.655,1.059.498.291,815.973.588,"0,00%" +Volkswagen AG,6/30/2019,8797334817,1311084923,25365853191,40151924792,14786071601,3.265.310.268,8.867.026.743,1.715.523.492,"516,87%" +Siemens AG,6/30/2019,6550073893,733627118.4,19919552350,37424903073,17505350723,1.960.264.578,4.190.873.579,1.137.912.211,"0,00%" +Allianz SE,6/30/2019,9612688482,1071424359,26052899280,55802879567,29749980287,1.920.016.257,3.601.428.805,875.728.287,"411,25%" +BMW AG,6/30/2019,13411319092,782523298.9,19531535755,37657712776,18126177021,2.077.989.451,4.317.089.577,1.077.531.999,"0,00%" +BASF SE,6/30/2019,11534207296,1513985001,19270767207,53405386175,34134618968,2.834.891.963,4.435.335.874,564.551.994,"785,64%" +Deutsche Telekom AG,6/30/2019,9246129285,1035650167,29184989731,52641709425,23456719694,1.967.356.642,4.415.153.442,124.420.593,"354,86%" +Daimler AG,6/30/2019,12504841895,639354361.8,41871491156,82039997300,40168506143,779.320.311,1.591.680.705,1.042.396.026,"0,00%" +SAP SE,6/30/2019,13878289168,932271478.5,29658734145,62964273740,33305539595,1.480.635.642,2.799.148.399,890.504.538,"0,00%" +Bayer AG,6/30/2019,13365845309,1437180604,30394456127,61175428677,30780972550,2.349.277.536,4.669.055.214,987.443.008,"472,84%" +Deutsche Bank AG,6/30/2019,9538166828,766520233.9,38799826104,70810004871,32010178767,1.082.502.727,2.394.614.037,121.210.901,"0,00%" +Porsche AG,6/30/2019,16367236342,1857704381,11368621660,21773242219,10404620558,8.532.052.149,1.785.460.959,109.265.125,"1634,06%" +Merck KGaA,6/30/2019,16209619277,1894725317,17305347324,45432894647,28127547323,4.170.382.124,673.619.102,615.245.514,"1094,88%" +Volkswagen AG,6/30/2020,7895384436,511149178.9,17592686846,61107816340,43515129494,836.471.027,1.174.647.036,404.288.969,"0,00%" +Siemens AG,6/30/2020,7571178877,527700192,14328955584,29444881442,15115925857,1.792.162.733,3.491.021.304,947.937.673,"368,28%" +Allianz SE,6/30/2020,13787621203,1605393739,33743352626,56826390011,23083037385,2.825.084.858,695.486.349,1.461.824.632,"475,77%" +BMW AG,6/30/2020,19909637251,2732548048,15058770523,36892503606,21833733082,7.406.783.982,125.152.581,689.702.053,"1814,59%" +BASF SE,6/30/2020,11914158554,1054111676,43298236595,83113769380,39815532785,1.268.275.622,2.647.488.561,1.087.470.983,"243,45%" +Deutsche Telekom AG,6/30/2020,16609605942,2209253956,40969123319,78858492215,37889368896,2.801.542.223,5.830.801.675,1.081.282.811,"539,25%" +Daimler AG,6/30/2020,14075946856,1786382228,42169052107,79023797685,36854745578,2.260.562.362,4.847.088.752,114.419.599,"423,62%" +SAP SE,6/30/2020,6413035553,941195826.2,19793091472,35210598357,15417506885,2.673.046.952,6.104.721.296,1.283.806.235,"0,00%" +Bayer AG,6/30/2020,12664152205,953498605.8,14551986231,38961279021,24409292791,2.447.298.009,3.906.293.451,596.165.827,"0,00%" +Deutsche Bank AG,6/30/2020,16087302422,1326310547,32589277601,54693171121,22103893521,2.425.002.097,6.000.348.063,1.474.368.195,"406,98%" +Porsche AG,6/30/2020,7764718758,920211365.8,34970670581,72558969348,37588298767,1.268.225.519,244.813.252,930.360.557,"0,00%" +Merck KGaA,6/30/2020,17048403140,1779998241,31894204894,69469086501,37574881608,2.562.288.251,4.737.202.528,848.817.176,"558,09%" +Volkswagen AG,6/30/2021,12858026662,1124878943,17059669622,65938237159,48878567538,1.705.958.471,2.301.374.609,349.021.473,"659,38%" +Siemens AG,6/30/2021,6387462404,911547751.1,43580496165,59758020643,16177524478,1.525.398.166,5.634.655.366,269.389.153,"0,00%" +Allianz SE,6/30/2021,17019949886,2402780363,10477167725,40916062724,30438894999,5.872.462.313,7.893.783.146,344.203.287,"2293,35%" +BMW AG,6/30/2021,12011483364,1571388192,16704351188,36319540470,19615189283,4.326.564.081,8.011.078.402,851.602.855,"940,71%" +BASF SE,6/30/2021,18768998808,1373518726,31667361119,58519002305,26851641187,2.347.132.848,5.115.213.316,117.934.546,"433,73%" +Deutsche Telekom AG,6/30/2021,5509568002,378951538.1,36585800973,54397521144,17811720171,696.633.836,2.127.540.375,2.054.029.629,"0,00%" +Daimler AG,6/30/2021,15648054896,1066739844,40442076671,75441053988,34998977318,1.414.004.428,3.047.917.184,1.155.521.669,"263,77%" +SAP SE,6/30/2021,11199189899,719949867.5,45007114334,92397807990,47390693656,779.185.008,1.519.179.847,949.703.641,"0,00%" +Bayer AG,6/30/2021,11712522838,1191464502,39707273398,77463236730,37755963332,1.538.103.173,3.155.698.855,1.051.682.169,"300,06%" +Deutsche Bank AG,6/30/2021,5220250485,460458002.1,44926554184,91889065168,46962510984,501.102.064,980.479.945,95.664.719,"0,00%" +Porsche AG,6/30/2021,12452147525,908357933.3,42131566815,76799130880,34667564065,1.182.771.111,2.620.195.442,1.215.302.198,"0,00%" +Merck KGaA,6/30/2021,14025754117,1636333354,16839994355,60072011589,43232017234,2.723.952.986,3.785.003.473,389.525.991,"971,69%" +Volkswagen AG,6/30/2022,12314464977,1478784803,25112871815,44050938495,18938066680,3.356.988.191,7.808.530.977,1.326.052.561,"588,86%" +Siemens AG,6/30/2022,17737880122,2592267899,23358323946,38107807520,14749483574,6.802.458.781,1.757.531.297,158.367.063,"1109,78%" +Allianz SE,6/30/2022,8089768870,488084935.3,45657380068,93604660446,47947280377,521.432.302,1.017.961.668,952.241.289,"0,00%" +BMW AG,6/30/2022,11584036388,1399147461,22546412228,53277235987,30730823758,2.626.163.755,455.291.232,73.367.419,"620,56%" +BASF SE,6/30/2022,11227593925,1221025867,27001572213,45570891422,18569319208,2.679.398.689,6.575.501.522,1.454.095.969,"452,21%" +Deutsche Telekom AG,6/30/2022,8444063288,1187007039,47810647914,69756044623,21945396709,1.701.654.739,5.408.911.286,217.861.853,"248,27%" +Daimler AG,6/30/2022,16579977460,877145067,30509379123,76296463396,45787084273,1.149.653.638,1.915.704.136,666.331.556,"287,50%" +SAP SE,6/30/2022,14799049316,1792143630,35425741218,52933352519,17507611301,3.385.660.542,1.023.636.862,2.023.448.008,"505,89%" +Bayer AG,6/30/2022,7918029220,810924591.5,42824962792,91140421051,48315458259,889.752.957,1.678.395.737,886.361.515,"0,00%" +Deutsche Bank AG,6/30/2022,13527313706,1369609294,47047722396,76309903159,29262180763,1.794.798.889,4.680.475.816,1.607.799.596,"291,11%" +Porsche AG,6/30/2022,9602996001,1224040111,42066934650,86789124292,44722189642,1.410.361.172,2.736.986.092,940.627.795,"290,97%" +Merck KGaA,6/30/2022,19175705351,1921123977,39424400695,70149764250,30725363554,2.738.603.611,6.252.567.113,128.312.235,"487,29%" +Volkswagen AG,6/30/2023,12729418594,1662688493,39022576433,81451183390,42428606957,2.041.331.291,3.918.791.148,919.723.254,"426,08%" +Siemens AG,6/30/2023,14327627383,1625286889,41679203694,52235242339,10556038645,3.111.475.732,1.539.675.009,3.948.375.437,"389,95%" +Allianz SE,6/30/2023,5318114486,431100966,42312531626,58725506361,16412974734,734.094.932,2.626.586.423,2.577.992.857,"101,88%" +BMW AG,6/30/2023,14368618381,1533626886,42361743521,64353154119,21991410599,2.383.141.754,6.973.754.044,1.926.285.871,"362,03%" +BASF SE,6/30/2023,14800185962,1295428284,11911955269,57692706612,45780751343,2.245.393.499,2.829.635.264,260.195.714,"1087,50%" +Deutsche Telekom AG,6/30/2023,10399408221,561732001.5,38426371195,68448568389,30022197194,820.662.893,1.871.055.599,127.993.201,"0,00%" +Daimler AG,6/30/2023,6677625789,440969634.7,45505367856,68668748604,23163380748,642.169.318,1.903.736.072,196.453.913,"0,00%" +SAP SE,6/30/2023,10806122549,698788622.5,46400326109,56419077430,10018751320,1.238.567.971,697.480.754,4.631.348.222,"0,00%" +Bayer AG,6/30/2023,10038837028,1319011419,42095419645,52756441711,10661022066,2.500.190.263,1.237.227.923,3.948.535.083,"313,34%" +Deutsche Bank AG,6/30/2023,7129233268,804182359.4,37136074738,74971932150,37835857412,107.264.457,2.125.450.338,981.504.776,"0,00%" +Porsche AG,6/30/2023,16477351074,1226392611,42857529033,61495517042,18637988008,1.994.279.698,6.580.069.753,2.299.471.864,"286,16%" +Merck KGaA,6/30/2023,9146296754,868361702.9,43413456694,56455610934,13042154240,1.538.131.797,6.658.115.576,3.328.702.904,"0,00%" +Volkswagen AG,6/30/2024,13076152982,1526410746,24545656357,68124372355,43578715998,2.240.623.573,3.502.651.951,563.248.728,"621,87%" +Siemens AG,6/30/2024,9018099865,963180373.7,36993263217,49531602468,12538339252,1.944.577.453,7.681.881.582,2.950.411.731,"0,00%" +Allianz SE,6/30/2024,13059939771,864826440.5,21561018412,57150274352,35589255939,1.513.249.849,2.430.021.133,605.829.424,"0,00%" +BMW AG,6/30/2024,17928146832,2182113657,12109060417,56333682316,44224621899,3.873.550.543,4.934.160.121,273.808.116,"1802,05%" +BASF SE,6/30/2024,11122911230,1144594204,29846781652,60313552592,30466770941,1.897.739.653,3.756.860.897,979.650.312,"383,49%" +Deutsche Telekom AG,6/30/2024,15923641671,1238976660,29108930053,40292182768,11183252715,3.074.980.245,1.107.885.775,2.602.903.716,"425,63%" +Daimler AG,6/30/2024,9897018704,888471372.7,33856303197,55117754937,21261451739,161.195.131,4.178.789.781,1.592.379.656,"0,00%" +SAP SE,6/30/2024,8144018454,529257365.4,31360696540,57876694077,26515997537,914.456.801,1.995.992.663,1.182.708.533,"0,00%" +Bayer AG,6/30/2024,7369565272,1064148244,20591206981,42904241960,22313034979,2.480.286.785,47.691.775,922.833.088,"516,80%" +Deutsche Bank AG,6/30/2024,9306050327,729847876.9,23854663266,48476616703,24621953437,1.505.566.862,2.964.215.974,968.837.153,"0,00%" +Porsche AG,6/30/2024,16413767338,1074145603,25161220888,52217608876,27056387988,2.057.056.282,3.970.025.873,929.954.911,"426,91%" +Merck KGaA,6/30/2024,16561793827,2435933937,19456844175,52664090849,33207246674,4.625.417.238,7.335.549.257,585.921.632,"1251,97%" +Volkswagen AG,9/30/2017,15706422457,2263166301,11556351337,26096752248,14540400911,8.672.214.379,1.556.467.607,794.775.289,"1958,37%" +Siemens AG,9/30/2017,5703877749,588622371.4,24982736979,39727077870,14744340891,1.481.665.411,3.992.191.823,1.694.394.966,"0,00%" +Allianz SE,9/30/2017,7168009253,373428560.2,15187122059,38651159578,23464037519,966.150.988,1.591.493.194,647.251.013,"0,00%" +BMW AG,9/30/2017,14824260103,1856672009,49769403556,87097998229,37328594673,213.170.457,4.973.859.919,1.333.278.255,"373,05%" +BASF SE,9/30/2017,9548006554,1237046329,27483087953,52090363015,24607275062,2.374.808.425,5.027.156.913,1.116.868.401,"450,11%" +Deutsche Telekom AG,9/30/2017,14110556301,1163491999,16591763093,32355610354,15763847262,3.595.951.325,7.380.761.688,1.052.519.909,"701,25%" +Daimler AG,9/30/2017,7323507123,793777927.1,27624534772,70422660411,42798125639,1.127.162.653,1.854.702.549,645.461.322,"0,00%" +SAP SE,9/30/2017,18227487487,1997618536,40486058249,55383211771,14897153522,3.606.902.655,1.340.939.753,2.717.704.304,"493,41%" +Bayer AG,9/30/2017,12670837136,1282915745,20339721000,55136777973,34797056973,2.326.787.657,3.686.851.292,584.524.174,"630,74%" +Deutsche Bank AG,9/30/2017,19868905162,1429630591,12720436994,42183197053,29462760059,3.389.099.666,4.852.330.833,431.746.278,"1123,88%" +Porsche AG,9/30/2017,9631040999,1113020766,22993549681,72046513305,49052963625,1.544.864.164,226.901.839,468.749.449,"484,06%" +Merck KGaA,9/30/2017,17552142118,1316005049,28846310799,40791728305,11945417506,3.226.156.634,110.168.192,2.414.843.247,"456,21%" +Volkswagen AG,9/30/2018,11494666314,1658196131,14924498356,62462464157,47537965801,2.654.708.156,3.488.151.213,313.949.032,"1111,06%" +Siemens AG,9/30/2018,12634974138,741274735,28126694879,40432233302,12305538423,1.833.375.687,6.023.911.425,2.285.693.962,"263,55%" +Allianz SE,9/30/2018,10545031789,1010594241,33534009371,63852779536,30318770165,1.582.694.204,3.333.229.664,1.106.047.811,"301,36%" +BMW AG,9/30/2018,5647276212,430192893.6,49486716701,66912699732,17425983031,642.916.659,2.468.686.517,2.839.823.533,"0,00%" +BASF SE,9/30/2018,19846387618,2884007106,11017913220,31498369926,20480456706,9.156.051.924,1.408.175.192,537.972.047,"2617,56%" +Deutsche Telekom AG,9/30/2018,10796012246,986280250.6,18030445293,66154405096,48123959803,1.490.876.154,2.049.457.806,374.666.702,"0,00%" +Daimler AG,9/30/2018,5152922484,599573691.4,24935989828,36383148668,11447158840,1.647.943.384,5.237.751.129,2.178.356.235,"0,00%" +SAP SE,9/30/2018,8133295785,750601103.2,12010781130,31029999758,19019218627,2.418.952.978,394.654.017,631.507.601,"0,00%" +Bayer AG,9/30/2018,8605806470,524552249.3,34919186753,46399878511,11480691758,1.130.503.497,4.568.995.147,3.041.557.729,"0,00%" +Deutsche Bank AG,9/30/2018,17771922214,1082288023,48317236409,88972406897,40655170488,1.216.431.095,2.662.116.553,1.188.464.735,"224,00%" +Porsche AG,9/30/2018,17963578177,2139702451,49106113898,95043652065,45937538167,2.251.283.915,4.657.851.806,1.068.975.741,"435,73%" +Merck KGaA,9/30/2018,17415152986,1617758811,46995232198,95054854077,48059621879,1.701.921.302,3.366.149.685,977.852.725,"344,24%" +Volkswagen AG,9/30/2019,10142417014,1306294910,21657205056,33344564963,11687359907,3.917.564.711,1.117.698.882,1.853.045.104,"603,17%" +Siemens AG,9/30/2019,16654538457,1322270205,29781715108,63506323345,33724608237,2.082.107.947,3.920.787.444,883.085.577,"443,99%" +Allianz SE,9/30/2019,13700664809,892851810.7,14820437742,51140549989,36320112247,174.587.839,2.458.284.833,408.050.439,"0,00%" +BMW AG,9/30/2019,8103350227,738019784.6,20380748219,31832927467,11452179248,2.318.416.317,6.444.361.101,1.779.639.296,"0,00%" +BASF SE,9/30/2019,7430177132,551583106,33765326378,50383426520,16618100141,1.094.770.928,3.319.170.671,2.031.840.348,"163,36%" +Deutsche Telekom AG,9/30/2019,11461718687,1380378045,27344331892,73302995160,45958663267,1.883.112.746,3.003.520.875,594.976.658,"504,81%" +Daimler AG,9/30/2019,9545803943,1253796606,34864875291,53486270610,18621395319,2.344.146.622,6.733.096.979,1.872.301.978,"359,62%" +SAP SE,9/30/2019,13973147193,1079900966,48121419304,75654119930,27532700626,1.427.418.583,3.922.248.606,174.779.147,"224,41%" +Bayer AG,9/30/2019,11417678713,984493632.9,43202192055,87180029468,43977837414,1.129.265.084,2.238.613.108,982.362.813,"0,00%" +Deutsche Bank AG,9/30/2019,6824564419,375695945.9,12634199326,28137106192,15502906866,1.335.233.067,242.339.033,814.956.797,"0,00%" +Porsche AG,9/30/2019,10956259576,738896491.2,30918840712,77968242093,47049401381,947.689.048,1.570.469.484,657.156.942,"0,00%" +Merck KGaA,9/30/2019,12097020632,1236164244,27900854055,42173393478,14272539423,2.931.147.205,8.661.137.359,1.954.862.637,"443,06%" +Volkswagen AG,9/30/2020,12436929028,1654939942,49496396884,90362459109,40866062225,1.831.446.331,4.049.668.237,1.211.185.864,"334,36%" +Siemens AG,9/30/2020,11686522494,980715243.5,33647832225,72644583109,38996750884,1.350.018.407,2.514.863.985,862.836.812,"0,00%" +Allianz SE,9/30/2020,18005946710,2292027552,30114206666,72398006770,42283800104,316.587.107,5.420.580.804,712.192.532,"761,11%" +BMW AG,9/30/2020,9482010377,803442750.4,46174948427,92567055368,46392106941,867.957.555,1.731.852.256,995.319.063,"0,00%" +BASF SE,9/30/2020,18130200876,2418330284,49603599758,91937242355,42333642596,2.630.414.207,5.712.549.489,1.171.730.017,"487,53%" +Deutsche Telekom AG,9/30/2020,15589999588,1310559971,40139408421,54633825763,14494417343,239.880.688,9.041.825.831,2.769.301.274,"326,50%" +Daimler AG,9/30/2020,17815073829,1375991001,34457237297,48064706274,13607468976,2.862.788.745,1.011.202.747,2.532.229.716,"399,33%" +SAP SE,9/30/2020,15986728775,2071404633,24329632573,49270478198,24940845625,4.204.149.643,8.305.270.255,975.493.491,"851,39%" +Bayer AG,9/30/2020,7778215290,1028179890,32630440063,51398528756,18768088693,2.000.407.238,5.478.340.957,1.738.612.844,"315,10%" +Deutsche Bank AG,9/30/2020,11268644278,1309520126,44147215219,66843792777,22696577557,1.959.075.139,5.769.681.015,1.945.104.503,"296,63%" +Porsche AG,9/30/2020,6912391322,945409918.5,38735572223,68605740345,29870168123,1.378.033.257,3.165.063.935,1.296.797.931,"0,00%" +Merck KGaA,9/30/2020,8081970522,678443942.4,46360819152,75700966235,29340147083,896.215.697,231.233.995,1.580.115.431,"0,00%" +Volkswagen AG,9/30/2021,10294096366,1404729444,27027656894,48359524775,21331867881,2.904.762.713,658.512.162,1.267.008.452,"519,74%" +Siemens AG,9/30/2021,19026792698,2073416725,23713313938,47556455590,23843141652,4.359.905.925,8.696.071.832,994.554.924,"874,37%" +Allianz SE,9/30/2021,11073630310,912822455.7,49692687138,70778247625,21085560486,1.289.693.495,4.329.135.364,2.356.716.444,"0,00%" +BMW AG,9/30/2021,14132310152,1250503703,34109472155,60179867780,26070395624,2.077.943.587,4.796.642.602,1.308.360.358,"366,61%" +BASF SE,9/30/2021,10808670566,658653438.1,37937729306,85517814001,47580084695,770.194.428,1.384.304.888,79.734.472,"0,00%" +Deutsche Telekom AG,9/30/2021,14468035363,1480956904,34748500389,83063430789,48314930400,178.292.287,3.065.215.849,71.920.833,"426,19%" +Daimler AG,9/30/2021,15893645982,2170220695,43221215972,62906987078,19685771106,3.449.888.154,1.102.431.133,2.195.556.158,"502,12%" +SAP SE,9/30/2021,9000667547,1079598533,20844606335,48683375624,27838769289,2.217.591.773,3.878.039.728,748.761.776,"517,93%" +Bayer AG,9/30/2021,13756386408,721617987.5,44559907041,88194004126,43634097086,818.216.606,1.653.793.789,102.121.758,"0,00%" +Deutsche Bank AG,9/30/2021,12533912164,782840180.3,42843256371,86694386780,43851130409,902.988.313,1.785.222.349,977.016.008,"0,00%" +Porsche AG,9/30/2021,7245971264,1033867668,43655777728,59462856760,15807079033,17.386.781,6.540.535.831,2.761.786.516,"236,82%" +Merck KGaA,9/30/2021,14686380695,2175890454,36499903384,85610397087,49110493703,2.541.619.392,4.430.601.873,743.220.046,"596,14%" +Volkswagen AG,9/30/2022,10260879440,889227522,10690275300,28159139854,17468864554,3.157.864.646,5.090.356.727,611.961.657,"831,81%" +Siemens AG,9/30/2022,12664949131,649372783.1,35555990358,69522102895,33966112537,934.052.274,1.911.825.448,1.046.807.765,"0,00%" +Allianz SE,9/30/2022,16931011156,2086994153,18754849198,52873275455,34118426257,3.947.162.597,6.116.912.125,549.698.543,"1112,78%" +BMW AG,9/30/2022,18782382394,1614997271,25317192992,38617124033,13299931041,418.207.547,1.214.289.959,1.903.558.215,"637,91%" +BASF SE,9/30/2022,8861717408,569761713.3,46662383110,69619249891,22956866781,8.183.968,2.481.879.251,2.032.611.138,"0,00%" +Deutsche Telekom AG,9/30/2022,14873007184,1613587509,33957807568,82298368793,48340561225,1.960.655.518,3.337.957.748,70.247.028,"475,17%" +Daimler AG,9/30/2022,18430272465,1278461027,44184049308,54843099546,10659050238,2.331.124.677,1.199.413.642,4.145.214.472,"289,35%" +SAP SE,9/30/2022,18713092617,1701020228,36355439326,47077977464,10722538138,3.613.197.338,1.586.396.995,3.390.562.837,"467,89%" +Bayer AG,9/30/2022,10642582906,1154447670,44364932131,75643621464,31278689333,1.526.166.579,3.690.844.131,1.418.375.676,"260,22%" +Deutsche Bank AG,9/30/2022,11924228778,1074208571,47986876748,85149075647,37162198900,1.261.562.223,2.890.594.752,1.291.281.952,"223,85%" +Porsche AG,9/30/2022,8621455856,1229669587,32376788972,47679877246,15303088274,2.579.011.647,803.543.419,2.115.702.948,"379,80%" +Merck KGaA,9/30/2022,7888146905,698353200.2,33355799273,53175544683,19819745411,131.329.769,3.523.522.556,1.682.958.009,"0,00%" +Volkswagen AG,9/30/2023,11664866018,1677667162,15998323030,33372541902,17374218871,5.027.088.338,965.607.245,92.080.819,"1048,65%" +Siemens AG,9/30/2023,10185412162,754846740.3,24373958388,59331553465,34957595076,1.272.251.772,2.159.321.139,69.724.357,"0,00%" +Allianz SE,9/30/2023,19814938566,1836312727,18499451286,30329911272,11830459986,6.054.461.257,1.552.190.472,1.563.713.609,"992,63%" +BMW AG,9/30/2023,12729885504,1804875257,10865997336,56007965536,45141968200,3.222.533.152,3.998.220.124,240.707.213,"1661,03%" +BASF SE,9/30/2023,8416753062,980336277,46036015495,95477772055,49441756560,1.026.769.117,1.982.810.372,931.116.099,"212,95%" +Deutsche Telekom AG,9/30/2023,5149849693,750613275.1,17312068995,55772071679,38460002684,1.345.858.693,1.951.672.446,450.131.768,"0,00%" +Daimler AG,9/30/2023,13104191262,1856279741,29165603027,45413408789,16247805762,4.087.514.659,1.142.480.264,1.795.048.726,"636,46%" +SAP SE,9/30/2023,17167661800,1338393789,26063953489,52362126677,26298173188,2.556.034.053,5.089.303.273,991.093.689,"513,50%" +Bayer AG,9/30/2023,9457609977,1131311165,40856047831,77252438398,36396390567,1.464.434.247,3.108.305.926,1.122.530.207,"276,90%" +Deutsche Bank AG,9/30/2023,17914537947,1449472284,20633879462,43019367872,22385488410,3.369.348.169,6.475.053.201,92.175.248,"702,47%" +Porsche AG,9/30/2023,12920254885,1147104411,35348848744,85266963912,49918115168,1.345.309.318,2.297.972.203,708.136.688,"324,51%" +Merck KGaA,9/30/2023,9297896247,1145109250,49354599469,67631473649,18276874181,1.693.160.283,6.265.345.152,2.700.385.141,"232,02%" +Volkswagen AG,9/30/2024,9752432683,970590418.5,31255665329,70790020629,39534355300,1.371.083.678,2.455.055.637,790.595.043,"0,00%" +Siemens AG,9/30/2024,11691964631,1345578064,24477801438,72482874961,48005073523,1.856.408.241,2.802.991.363,509.900.301,"549,71%" +Allianz SE,9/30/2024,16908879786,1197174003,48008203569,67570965703,19562762134,177.172.842,611.965.731,2.454.060.589,"249,37%" +BMW AG,9/30/2024,17989542164,2639441820,33643521649,69399402463,35755880815,3.803.263.035,7.381.839.743,940.922.748,"784,53%" +BASF SE,9/30/2024,16485330446,1727330520,41199120058,58775396940,17576276882,2.938.866.617,9.827.624.651,2.344.018.607,"419,26%" +Deutsche Telekom AG,9/30/2024,6531276814,872767531.7,15526905086,49404344791,33877439705,1.766.580.521,2.576.249.974,458.325.813,"0,00%" +Daimler AG,9/30/2024,14640665936,2101927829,10787737144,51913035226,41125298082,4.048.940.347,5.111.033.662,262.313.896,"1948,44%" +SAP SE,9/30/2024,10824151396,830279996.2,42369695133,72342104340,29972409208,114.771.336,2.770.147.673,1.413.623.271,"0,00%" +Bayer AG,9/30/2024,9332023907,746667545.1,23673143006,42677324477,19004181470,1.749.565.031,3.928.964.508,1.245.680.749,"0,00%" +Deutsche Bank AG,9/30/2024,18549946525,2323022170,49199711543,64461554635,15261843092,3.603.732.773,1.522.111.161,3.223.707.074,"472,16%" +Porsche AG,9/30/2024,15911174550,1241693861,36125130235,84583217359,48458087124,1.468.014.459,2.562.407.917,745.492.288,"343,72%" +Merck KGaA,9/30/2024,15036344926,1704097607,30603212259,59444780752,28841568494,2.866.690.036,5.908.477.575,1.061.080.026,"556,84%" \ No newline at end of file From 07a281cccbf30820ae216d2bff32e8f6088f579f Mon Sep 17 00:00:00 2001 From: "andrei.kislitsyn" Date: Wed, 30 Apr 2025 15:22:01 +0400 Subject: [PATCH 04/36] samples util update --- build.gradle.kts | 3 +- docs/cfg/buildprofiles.xml | 2 +- docs/cfg/include-head.html | 1 + docs/cfg/static/custom.js | 76 ++ .../geoGuide/electionResultsPlotByParty.svg | 42 +- .../electionResultsPlotByParty_dark.svg | 42 +- .../guides/geoGuide/usaStatesAdjusted.svg | 42 +- .../geoGuide/usaStatesAdjusted_dark.svg | 42 +- .../geoGuide/usaStatesFilterContiguous.svg | 42 +- .../usaStatesFilterContiguous_dark.svg | 42 +- .../usaStatesGeoPolygonPlotCustomized.svg | 42 +- ...usaStatesGeoPolygonPlotCustomized_dark.svg | 42 +- .../guides/geoGuide/usaStatesPlotGeoMap.svg | 42 +- .../geoGuide/usaStatesPlotGeoMap_dark.svg | 42 +- .../geoGuide/usaStatesPlotGeoPolygon.svg | 42 +- .../geoGuide/usaStatesPlotGeoPolygon_dark.svg | 42 +- .../geoGuide/usaStatesPlotMergedPolygon.svg | 42 +- .../usaStatesPlotMergedPolygon_dark.svg | 42 +- .../geoGuide/usaStatesPlotWithAlbersCrs.svg | 42 +- .../usaStatesPlotWithAlbersCrs_dark.svg | 42 +- .../geoGuide/usaStatesPlotWithAxisLimits.svg | 42 +- .../usaStatesPlotWithAxisLimits_dark.svg | 42 +- .../geoGuide/usaStatesPlotWithBounds.svg | 44 +- .../geoGuide/usaStatesPlotWithBounds_dark.svg | 44 +- .../geoGuide/usaStatesPlotWithCentroids.svg | 44 +- .../usaStatesPlotWithCentroids_dark.svg | 44 +- .../usaStatesPlotWithDefaultBounds.svg | 44 +- .../usaStatesPlotWithDefaultBounds_dark.svg | 44 +- .../geoGuide/usaStatesPlotWithGreatCircle.svg | 46 +- .../usaStatesPlotWithGreatCircle_dark.svg | 46 +- .../geoGuide/usaStatesPlotWithMercator.svg | 42 +- .../usaStatesPlotWithMercator_dark.svg | 42 +- .../geoGuide/usaStatesPlotWithTopCities.svg | 44 +- .../usaStatesPlotWithTopCities_dark.svg | 44 +- .../geoGuide/usaStatesPlotWithWorldCities.svg | 44 +- .../usaStatesPlotWithWorldCities_dark.svg | 44 +- .../writeGeoJson2usaCitiesPlotFromGeoJson.svg | 42 +- ...eGeoJson2usaCitiesPlotFromGeoJson_dark.svg | 42 +- ...teShapefile2usaStatesPlotFromShapefile.svg | 42 +- ...pefile2usaStatesPlotFromShapefile_dark.svg | 42 +- .../guides/geoms/guideAlgebraicCurvePlot.svg | 42 +- .../geoms/guideAlgebraicCurvePlot_dark.svg | 42 +- .../guideErrorBarsConfiguredPointRanges.svg | 44 +- ...ideErrorBarsConfiguredPointRanges_dark.svg | 44 +- .../guides/geoms/guideErrorBarsCrossbars.svg | 42 +- .../geoms/guideErrorBarsCrossbars_dark.svg | 42 +- .../guides/geoms/guideErrorBarsLineRanges.svg | 44 +- .../geoms/guideErrorBarsLineRanges_dark.svg | 44 +- .../guides/geoms/guideErrorBarsOnBars.svg | 44 +- .../geoms/guideErrorBarsOnBars_dark.svg | 44 +- .../geoms/guideErrorBarsPointRanges.svg | 44 +- .../geoms/guideErrorBarsPointRanges_dark.svg | 44 +- .../guides/geoms/guideErrorBarsWithLines.svg | 46 +- .../guideErrorBarsWithLinesAndPosition.svg | 46 +- ...uideErrorBarsWithLinesAndPosition_dark.svg | 46 +- ...uideErrorBarsWithLinesCustomColorScale.svg | 46 +- ...rrorBarsWithLinesCustomColorScale_dark.svg | 46 +- .../geoms/guideErrorBarsWithLinesGrouped.svg | 46 +- .../guideErrorBarsWithLinesGrouped_dark.svg | 46 +- .../geoms/guideErrorBarsWithLines_dark.svg | 46 +- .../geoms/guideJitterPointsSimplePoints.svg | 42 +- .../guideJitterPointsSimplePoints_dark.svg | 42 +- .../geoms/guideLinesBrokenLinesLinePlot.svg | 42 +- .../guideLinesBrokenLinesLinePlot_dark.svg | 42 +- .../geoms/guideLinesBrokenLinesPathPlot.svg | 42 +- .../guideLinesBrokenLinesPathPlot_dark.svg | 42 +- .../geoms/guideLinesBrokenLinesStepPlot.svg | 42 +- .../guideLinesBrokenLinesStepPlot_dark.svg | 42 +- ...eLinesCompareLinePathSegmentsPlotBunch.svg | 126 +-- ...sCompareLinePathSegmentsPlotBunch_dark.svg | 126 +-- .../guides/geoms/guideLinesSmoothLinear.svg | 48 +- .../geoms/guideLinesSmoothLinear_dark.svg | 48 +- .../guides/geoms/guidePieBasicPieChart.svg | 42 +- .../geoms/guidePieBasicPieChart_dark.svg | 42 +- .../guides/geoms/guidePieChartsInPlotGrid.svg | 86 +- .../geoms/guidePieChartsInPlotGrid_dark.svg | 86 +- .../geoms/guidePieCustomizedPieChart.svg | 42 +- .../geoms/guidePieCustomizedPieChart_dark.svg | 42 +- .../guides/geoms/guidePieExplodePieChart.svg | 42 +- .../geoms/guidePieExplodePieChart_dark.svg | 42 +- docs/images/guides/geoms/guideRibbonPlot.svg | 42 +- .../guides/geoms/guideRibbonPlot_dark.svg | 42 +- .../geoms/guideScatterBasicScatterPlot.svg | 42 +- .../guideScatterBasicScatterPlot_dark.svg | 42 +- .../guideScatterHandlingOverPlotting.svg | 42 +- .../guideScatterHandlingOverPlotting_dark.svg | 42 +- .../guideScatterScatterPlotWithDiffSymbol.svg | 42 +- ...eScatterScatterPlotWithDiffSymbol_dark.svg | 42 +- .../guideScatterScatterPlotWithOpenSymbol.svg | 42 +- ...eScatterScatterPlotWithOpenSymbol_dark.svg | 42 +- .../layout/guideLabelConfigureTooltips.svg | 42 +- .../guideLabelConfigureTooltips_dark.svg | 42 +- .../guides/layout/guideLabelDefaultPlot.svg | 42 +- .../layout/guideLabelDefaultPlot_dark.svg | 42 +- .../layout/guideLabelFormatValueTooltip.svg | 42 +- .../guideLabelFormatValueTooltip_dark.svg | 42 +- .../guideLabelFormattingBreaksManually.svg | 42 +- ...uideLabelFormattingBreaksManually_dark.svg | 42 +- .../layout/guideLabelFormattingXAndY.svg | 42 +- .../layout/guideLabelFormattingXAndY_dark.svg | 42 +- .../guides/layout/guideLabelMeanMarkLine.svg | 46 +- .../layout/guideLabelMeanMarkLine_dark.svg | 46 +- .../layout/guideLegendAxisBottomLegend.svg | 42 +- .../guideLegendAxisBottomLegend_dark.svg | 42 +- .../layout/guideLegendAxisConfigureLegend.svg | 42 +- .../guideLegendAxisConfigureLegend_dark.svg | 42 +- .../guideLegendAxisContinuousLegend.svg | 42 +- .../guideLegendAxisContinuousLegend_dark.svg | 42 +- .../layout/guideLegendAxisDefaultLegend.svg | 42 +- .../guideLegendAxisDefaultLegend_dark.svg | 42 +- .../guideLegendAxisFillingLegendCols.svg | 42 +- .../guideLegendAxisFillingLegendCols_dark.svg | 42 +- ...ideLegendAxisLegendHorizontalDirection.svg | 42 +- ...gendAxisLegendHorizontalDirection_dark.svg | 42 +- .../guideLegendAxisTwoColumnsLegend.svg | 42 +- .../guideLegendAxisTwoColumnsLegend_dark.svg | 42 +- .../layout/guideStylesAllPrepStyles.svg | 254 +++--- .../layout/guideStylesAllPrepStyles_dark.svg | 254 +++--- .../guides/layout/guideStylesAxisTooltip.svg | 86 +- .../layout/guideStylesAxisTooltip_dark.svg | 86 +- .../layout/guideStylesBackgroundPanel.svg | 86 +- .../guideStylesBackgroundPanel_dark.svg | 86 +- .../layout/guideStylesBarPlotWithoutStyle.svg | 42 +- .../guideStylesBarPlotWithoutStyle_dark.svg | 42 +- .../layout/guideStylesBarsFacetGridX.svg | 46 +- .../layout/guideStylesBarsFacetGridX_dark.svg | 46 +- .../guides/layout/guideStylesBlankAxis.svg | 86 +- .../layout/guideStylesBlankAxis_dark.svg | 86 +- .../guideStylesConfigureBackgroundGrid.svg | 86 +- ...uideStylesConfigureBackgroundGrid_dark.svg | 86 +- .../layout/guideStylesConfigureGridLine.svg | 86 +- .../guideStylesConfigureGridLine_dark.svg | 86 +- .../guides/layout/guideStylesCoordFlip.svg | 254 +++--- .../layout/guideStylesCoordFlip_dark.svg | 254 +++--- .../guideStylesCustomStyleForLegend.svg | 42 +- .../guideStylesCustomStyleForLegend_dark.svg | 42 +- .../guides/layout/guideStylesOnTopXAxis.svg | 86 +- .../layout/guideStylesOnTopXAxis_dark.svg | 86 +- .../layout/guideStylesOrangeCustomStyle.svg | 86 +- .../guideStylesOrangeCustomStyle_dark.svg | 86 +- .../guides/layout/guideStylesPanelGrid.svg | 170 ++-- .../layout/guideStylesPanelGrid_dark.svg | 170 ++-- .../guideStylesPointPlotWithoutStyle.svg | 42 +- .../guideStylesPointPlotWithoutStyle_dark.svg | 42 +- .../layout/guideStylesStripBackground.svg | 186 ++--- .../guideStylesStripBackground_dark.svg | 186 ++--- .../layout/guideStylesTextLegendStrip.svg | 186 ++--- .../guideStylesTextLegendStrip_dark.svg | 186 ++--- .../layout/guideStylesTextTitleLegend.svg | 170 ++-- .../guideStylesTextTitleLegend_dark.svg | 170 ++-- .../guideStylesTooltipAndBackground.svg | 86 +- .../guideStylesTooltipAndBackground_dark.svg | 86 +- .../guideTitleChangeColorAndFontFace.svg | 42 +- .../guideTitleChangeColorAndFontFace_dark.svg | 42 +- .../layout/guideTitleChangeTitlesColor.svg | 42 +- .../guideTitleChangeTitlesColor_dark.svg | 42 +- .../layout/guideTitleComplexLegendBottom.svg | 42 +- .../guideTitleComplexLegendBottom_dark.svg | 42 +- .../layout/guideTitleComplexLegendNames.svg | 42 +- .../guideTitleComplexLegendNames_dark.svg | 42 +- .../guides/layout/guideTitleComplexTitles.svg | 42 +- .../layout/guideTitleComplexTitles_dark.svg | 42 +- .../layout/guideTitleDefaultPointPlot.svg | 42 +- .../guideTitleDefaultPointPlot_dark.svg | 42 +- .../guides/layout/guideTitleLegendName.svg | 42 +- .../layout/guideTitleLegendName_dark.svg | 42 +- .../layout/guideTitleLegendPosition.svg | 42 +- .../layout/guideTitleLegendPosition_dark.svg | 42 +- ...eTitleSetColorsForTitleSubtitleCaption.svg | 42 +- ...eSetColorsForTitleSubtitleCaption_dark.svg | 42 +- .../guides/layout/guideTitleSetTitle1.svg | 42 +- .../layout/guideTitleSetTitle1_dark.svg | 42 +- .../guides/layout/guideTitleSetTitle2.svg | 42 +- .../layout/guideTitleSetTitle2_dark.svg | 42 +- .../layout/guideTitleSetTitleAndSubtitle.svg | 42 +- .../guideTitleSetTitleAndSubtitle_dark.svg | 42 +- .../guideTitleSetTitleSubtitleCaption.svg | 42 +- ...guideTitleSetTitleSubtitleCaption_dark.svg | 42 +- .../guides/layout/guideTitleTypeOfLegend.svg | 42 +- .../layout/guideTitleTypeOfLegend_dark.svg | 42 +- .../multiplot/guideAnscombesQuartetPlot.svg | 62 +- .../guideAnscombesQuartetPlot_dark.svg | 62 +- .../multiplot/guideBunchCombineWithStyles.svg | 84 +- .../guideBunchCombineWithStyles_dark.svg | 84 +- .../guideFacetsArrangeVertically.svg | 98 +-- .../guideFacetsArrangeVertically_dark.svg | 98 +-- .../guides/multiplot/guideFacetsGridXPlot.svg | 58 +- .../multiplot/guideFacetsGridXPlot_dark.svg | 58 +- .../guideFacetsScatterPlotByHorsePower.svg | 42 +- ...uideFacetsScatterPlotByHorsePower_dark.svg | 42 +- .../multiplot/guideFacetsTwoPlotsGrid.svg | 98 +-- .../guideFacetsTwoPlotsGrid_dark.svg | 98 +-- .../guideFacetsWithFormattingAndSorting.svg | 98 +-- ...ideFacetsWithFormattingAndSorting_dark.svg | 98 +-- .../multiplot/guideFacetsWrapOnePlot.svg | 58 +- .../multiplot/guideFacetsWrapOnePlot_dark.svg | 58 +- .../multiplot/guideFacetsWrapTwoPlots.svg | 98 +-- .../guideFacetsWrapTwoPlots_dark.svg | 98 +-- .../multiplot/guideFreeFacetGridYFree.svg | 50 +- .../guideFreeFacetGridYFree_dark.svg | 50 +- .../multiplot/guideFreeFacetSimplePlot.svg | 42 +- .../guideFreeFacetSimplePlot_dark.svg | 42 +- .../guideFreeFacetWithFixedScales.svg | 50 +- .../guideFreeFacetWithFixedScales_dark.svg | 50 +- .../guideFreeFacetWrapWithFixedScale.svg | 58 +- .../guideFreeFacetWrapWithFixedScale_dark.svg | 58 +- .../guideFreeFacetWrapWithFreeScale.svg | 58 +- .../guideFreeFacetWrapWithFreeScale_dark.svg | 58 +- .../guides/other/guideExportDensityPlot.svg | 42 +- .../other/guideExportDensityPlot_dark.svg | 42 +- .../other/guideSeriesHackBarOnGatheredDf.svg | 42 +- .../guideSeriesHackBarOnGatheredDf_dark.svg | 42 +- .../other/guideSeriesHackBarsSeries.svg | 46 +- .../other/guideSeriesHackBarsSeries_dark.svg | 46 +- .../other/guideSeriesHackGatheredLines.svg | 42 +- .../guideSeriesHackGatheredLines_dark.svg | 42 +- .../guides/other/guideSeriesHackLinesPlot.svg | 46 +- .../other/guideSeriesHackLinesPlot_dark.svg | 46 +- .../basicsGlobalXYBoxplotWithFreeScale.svg | 42 +- ...asicsGlobalXYBoxplotWithFreeScale_dark.svg | 42 +- .../basicsGlobalXYConfigureAxisScales.svg | 42 +- ...sGlobalXYConfigureAxisScalesWithAltApi.svg | 42 +- ...alXYConfigureAxisScalesWithAltApi_dark.svg | 42 +- ...basicsGlobalXYConfigureAxisScales_dark.svg | 42 +- .../basicsGlobalXYPlotLine.svg | 44 +- .../basicsGlobalXYPlotLine_dark.svg | 44 +- .../basicsLayersCustomizedScales.svg | 42 +- .../basicsLayersCustomizedScales_dark.svg | 42 +- .../basicsLayersPlotWithCustomScales.svg | 42 +- .../basicsLayersPlotWithCustomScales_dark.svg | 42 +- .../basicsPlotCreationHumidityData.svg | 42 +- .../basicsPlotCreationHumidityData_dark.svg | 42 +- .../basicsRawSourceDaysPerMonthBarPlot.svg | 42 +- ...asicsRawSourceDaysPerMonthBarPlot_dark.svg | 42 +- .../basicsScaleParamTimeHumidityGraph.svg | 42 +- ...basicsScaleParamTimeHumidityGraph_dark.svg | 42 +- ...perimentalCustomScalesCategoricalColor.svg | 42 +- ...ntalCustomScalesCategoricalColorBrewer.svg | 42 +- ...ustomScalesCategoricalColorBrewer_dark.svg | 42 +- ...entalCustomScalesCategoricalColor_dark.svg | 42 +- ...alCustomScalesContinuousColorGradient2.svg | 42 +- ...tomScalesContinuousColorGradient2_dark.svg | 42 +- ...alCustomScalesContinuousColorGradientN.svg | 42 +- ...tomScalesContinuousColorGradientN_dark.svg | 42 +- ...imentalCustomScalesContinuousColorGrey.svg | 42 +- ...alCustomScalesContinuousColorGrey_dark.svg | 42 +- .../experimentalExportPlotForExport.svg | 42 +- .../experimentalExportPlotForExport_dark.svg | 42 +- ...experimentalLayoutCustomStyleBlankAxes.svg | 42 +- ...imentalLayoutCustomStyleBlankAxes_dark.svg | 42 +- .../experimentalLayoutPlotAllStyles.svg | 254 +++--- .../experimentalLayoutPlotAllStyles_dark.svg | 254 +++--- .../experimentalLayoutSimpleCustomStyle.svg | 42 +- ...perimentalLayoutSimpleCustomStyle_dark.svg | 42 +- ...experimentalLayoutTitleSubtitleCapSize.svg | 42 +- ...imentalLayoutTitleSubtitleCapSize_dark.svg | 42 +- .../experimentalLayoutWithClassicStyle.svg | 42 +- ...xperimentalLayoutWithClassicStyle_dark.svg | 42 +- .../experimentalMultiplotFacetingGrid.svg | 86 +- .../experimentalMultiplotFacetingGridX.svg | 50 +- ...xperimentalMultiplotFacetingGridX_dark.svg | 50 +- .../experimentalMultiplotFacetingGridY.svg | 54 +- ...xperimentalMultiplotFacetingGridY_dark.svg | 54 +- ...experimentalMultiplotFacetingGrid_dark.svg | 86 +- .../experimentalMultiplotFacetingWrap.svg | 86 +- ...experimentalMultiplotFacetingWrap_dark.svg | 86 +- .../experimentalMultiplotPlotBunch.svg | 126 +-- .../experimentalMultiplotPlotBunch_dark.svg | 126 +-- .../experimentalMultiplotPlotGrid.svg | 128 +-- .../experimentalMultiplotPlotGrid_dark.svg | 128 +-- ...entalStatisticsBinPlotWithBarsAndLines.svg | 44 +- ...StatisticsBinPlotWithBarsAndLines_dark.svg | 44 +- ...erimentalStatisticsConfiguredHistogram.svg | 42 +- ...ntalStatisticsConfiguredHistogram_dark.svg | 42 +- ...xperimentalStatisticsShortcutHistogram.svg | 42 +- ...mentalStatisticsShortcutHistogram_dark.svg | 42 +- ...imentalStatisticsStatBinOnIterableData.svg | 86 +- ...alStatisticsStatBinOnIterableData_dark.svg | 86 +- .../experimentalStatisticsStatBinsAndHist.svg | 86 +- ...rimentalStatisticsStatBinsAndHist_dark.svg | 86 +- .../experimentalTooltipsByColumns.svg | 42 +- .../experimentalTooltipsByColumns_dark.svg | 42 +- ...experimentalTooltipsCustomizedWithLine.svg | 42 +- ...imentalTooltipsCustomizedWithLine_dark.svg | 42 +- .../experimentalTooltipsHideTooltips.svg | 42 +- .../experimentalTooltipsHideTooltips_dark.svg | 42 +- ...imentalTooltipsWithTitleAnchorMinWidth.svg | 42 +- ...alTooltipsWithTitleAnchorMinWidth_dark.svg | 42 +- .../groupingPlotOnDataFrame.svg | 42 +- .../groupingPlotOnDataFrame_dark.svg | 42 +- .../groupingPositionDodgePlot.svg | 42 +- .../groupingPositionDodgePlot_dark.svg | 42 +- .../groupingPositionIdentityPlot.svg | 42 +- .../groupingPositionIdentityPlot_dark.svg | 42 +- .../groupingPositionStackPlot.svg | 42 +- .../groupingPositionStackPlot_dark.svg | 42 +- .../groupingSimpleGrouping.svg | 42 +- .../groupingSimpleGrouping_dark.svg | 42 +- .../groupingWithColorMapping.svg | 42 +- .../groupingWithColorMapping_dark.svg | 42 +- .../implicitGroupingSimplePlot.svg | 42 +- .../implicitGroupingSimplePlot_dark.svg | 42 +- .../kotlinDataframeApiDrvCountPlot.svg | 42 +- .../kotlinDataframeApiDrvCountPlot_dark.svg | 42 +- .../kotlinDataframeApiPlotMpgInfo.svg | 42 +- .../kotlinDataframeApiPlotMpgInfo_dark.svg | 42 +- .../guideBoxplotConfigureGroupedBoxplot.svg | 44 +- ...ideBoxplotConfigureGroupedBoxplot_dark.svg | 44 +- .../guideBoxplotCustomizeGroupedBoxplot.svg | 42 +- ...ideBoxplotCustomizeGroupedBoxplot_dark.svg | 42 +- .../stat/guideBoxplotGroupByBoxplot.svg | 44 +- .../stat/guideBoxplotGroupByBoxplot_dark.svg | 44 +- .../stat/guideBoxplotGroupedBorderLines.svg | 42 +- .../guideBoxplotGroupedBorderLines_dark.svg | 42 +- .../guideBoxplotGroupedStatBoxplotEBPlot.svg | 42 +- ...deBoxplotGroupedStatBoxplotEBPlot_dark.svg | 42 +- .../stat/guideBoxplotSimpleGrBoxplotOnDf.svg | 44 +- .../guideBoxplotSimpleGrBoxplotOnDf_dark.svg | 44 +- .../guideBoxplotSimpleGroupedBoxplotInDf.svg | 44 +- ...deBoxplotSimpleGroupedBoxplotInDf_dark.svg | 44 +- .../stat/guideCandlestickCandlestickPlot.svg | 42 +- ...deCandlestickCandlestickPlotConfigured.svg | 42 +- ...dlestickCandlestickPlotConfigured_dark.svg | 42 +- .../guideCandlestickCandlestickPlot_dark.svg | 42 +- ...deCandlestickCompareBoxesVsCandlestick.svg | 86 +- ...dlestickCompareBoxesVsCandlestick_dark.svg | 86 +- .../guideCandlestickLayerCustomizationDSL.svg | 42 +- ...eCandlestickLayerCustomizationDSL_dark.svg | 42 +- ...deCandlestickLayerCustomizationStatAPI.svg | 42 +- ...dlestickLayerCustomizationStatAPI_dark.svg | 42 +- .../guideCandlestickSimpleCandlestickPlot.svg | 42 +- ...eCandlestickSimpleCandlestickPlot_dark.svg | 42 +- ...ideCandlestickStatCandlestickBoxesPlot.svg | 42 +- ...ndlestickStatCandlestickBoxesPlot_dark.svg | 42 +- ...andlestickStatCandlestickErrorBarsPlot.svg | 42 +- ...stickStatCandlestickErrorBarsPlot_dark.svg | 42 +- .../guides/stat/guideCountBarsVsCountPlot.svg | 86 +- .../stat/guideCountBarsVsCountPlot_dark.svg | 86 +- .../guideCountConfigureGroupedCountPlot.svg | 42 +- ...ideCountConfigureGroupedCountPlot_dark.svg | 42 +- .../guides/stat/guideCountConfigurePlot.svg | 42 +- .../stat/guideCountConfigurePlot_dark.svg | 42 +- ...deCountConfigureSimpleGroupedCountPlot.svg | 42 +- ...ntConfigureSimpleGroupedCountPlot_dark.svg | 42 +- .../stat/guideCountGroupByCountPlot.svg | 42 +- .../stat/guideCountGroupByCountPlot_dark.svg | 42 +- .../stat/guideCountGroupedCountPlot.svg | 42 +- .../stat/guideCountGroupedCountPlot_dark.svg | 42 +- .../guideCountGroupedStatCountBarsPlot.svg | 42 +- ...uideCountGroupedStatCountBarsPlot_dark.svg | 42 +- ...CountGroupedStatCountBarsWithColorPlot.svg | 42 +- ...GroupedStatCountBarsWithColorPlot_dark.svg | 42 +- .../guides/stat/guideCountPlotWithItr.svg | 42 +- .../stat/guideCountPlotWithItr_dark.svg | 42 +- .../guides/stat/guideCountPlotWithWeight.svg | 42 +- .../stat/guideCountPlotWithWeight_dark.svg | 42 +- .../guides/stat/guideCountSimpleCountPlot.svg | 42 +- .../stat/guideCountSimpleCountPlot_dark.svg | 42 +- .../stat/guideCountSimpleGroupedCountPlot.svg | 42 +- .../guideCountSimpleGroupedCountPlot_dark.svg | 42 +- .../guides/stat/guideCountSimplePlot.svg | 42 +- .../guides/stat/guideCountSimplePlot_dark.svg | 42 +- .../stat/guideCountStatCountBarsPlot.svg | 42 +- .../stat/guideCountStatCountBarsPlot_dark.svg | 42 +- .../stat/guideCountStatCountFillColor.svg | 42 +- .../guideCountStatCountFillColor_dark.svg | 42 +- .../stat/guideCountStatCountPointsPlot.svg | 42 +- .../guideCountStatCountPointsPlot_dark.svg | 42 +- .../guides/stat/guideCountWithHLine.svg | 44 +- .../guides/stat/guideCountWithHLine_dark.svg | 44 +- .../stat/guideHeatmapConfigureHeatmap.svg | 42 +- .../guideHeatmapConfigureHeatmap_dark.svg | 42 +- .../guides/stat/guideHeatmapHeatmapInDf.svg | 42 +- .../stat/guideHeatmapHeatmapInDf_dark.svg | 42 +- .../guides/stat/guideHeatmapHeatmapOnDf.svg | 42 +- .../stat/guideHeatmapHeatmapOnDf_dark.svg | 42 +- .../stat/guideHeatmapSimpleHeatmapInDf.svg | 42 +- .../guideHeatmapSimpleHeatmapInDf_dark.svg | 42 +- .../stat/guideHeatmapStatCount2DPlot.svg | 42 +- .../stat/guideHeatmapStatCount2DPlot_dark.svg | 42 +- .../stat/guideHeatmapStatCount2DTile.svg | 42 +- .../stat/guideHeatmapStatCount2DTile_dark.svg | 42 +- .../guides/stat/guideHeatmapTileVsHeatMap.svg | 86 +- .../stat/guideHeatmapTileVsHeatMap_dark.svg | 86 +- .../guides/stat/guideHeatmapWithFillColor.svg | 42 +- .../stat/guideHeatmapWithFillColor_dark.svg | 42 +- .../guides/stat/guideHeatmapWithIterable.svg | 42 +- .../stat/guideHeatmapWithIterable_dark.svg | 42 +- .../guides/stat/guideHeatmapWithWeight.svg | 42 +- .../stat/guideHeatmapWithWeight_dark.svg | 42 +- ...tebook_test_top_12_german_companies_10.svg | 768 ------------------ ...k_test_top_12_german_companies_10_dark.svg | 768 ------------------ ...tebook_test_top_12_german_companies_12.svg | 329 -------- ...k_test_top_12_german_companies_12_dark.svg | 329 -------- ...tebook_test_top_12_german_companies_13.svg | 338 -------- ...k_test_top_12_german_companies_13_dark.svg | 338 -------- ...otebook_test_top_12_german_companies_9.svg | 759 ----------------- ...ok_test_top_12_german_companies_9_dark.svg | 759 ----------------- docs/images/quickstart_sample.svg | 44 +- docs/images/quickstart_sample_dark.svg | 44 +- docs/images/samples/area/area_fixed.svg | 44 +- docs/images/samples/area/area_fixed_dark.svg | 44 +- docs/images/samples/area/area_settings.svg | 42 +- .../samples/area/area_settings_dark.svg | 42 +- .../samples/area/area_with_mark_line.svg | 46 +- .../samples/area/area_with_mark_line_dark.svg | 46 +- .../samples/area/area_with_reversed_axis.svg | 42 +- .../area/area_with_reversed_axis_dark.svg | 42 +- docs/images/samples/area/density_plot.svg | 42 +- .../images/samples/area/density_plot_dark.svg | 42 +- .../samples/area/functional_area_plot.svg | 42 +- .../area/functional_area_plot_dark.svg | 42 +- .../area/preview_area_with_mark_line.svg | 46 +- .../area/preview_area_with_mark_line_dark.svg | 46 +- docs/images/samples/area/several_areas.svg | 42 +- .../samples/area/several_areas_dark.svg | 42 +- docs/images/samples/area/simple_area.svg | 42 +- docs/images/samples/area/simple_area_dark.svg | 42 +- docs/images/samples/area/smoothed_area.svg | 42 +- .../samples/area/smoothed_area_dark.svg | 42 +- .../area/smoothed_area_with_points.svg | 44 +- .../area/smoothed_area_with_points_dark.svg | 44 +- docs/images/samples/bars/bar_gradient.svg | 42 +- .../images/samples/bars/bar_gradient_dark.svg | 42 +- docs/images/samples/bars/bar_settings.svg | 42 +- .../images/samples/bars/bar_settings_dark.svg | 42 +- .../samples/bars/bar_with_reversed_axis.svg | 42 +- .../bars/bar_with_reversed_axis_dark.svg | 42 +- docs/images/samples/bars/fixed_bar.svg | 44 +- docs/images/samples/bars/fixed_bar_dark.svg | 44 +- .../samples/bars/functional_bars_plot.svg | 42 +- .../bars/functional_bars_plot_dark.svg | 42 +- docs/images/samples/bars/grouped_bars.svg | 42 +- .../images/samples/bars/grouped_bars_dark.svg | 42 +- docs/images/samples/bars/histogram_2.svg | 42 +- docs/images/samples/bars/histogram_2_dark.svg | 42 +- docs/images/samples/bars/horizontal_bars.svg | 42 +- .../samples/bars/horizontal_bars_dark.svg | 42 +- docs/images/samples/bars/simple_bar_plot.svg | 42 +- .../samples/bars/simple_bar_plot_dark.svg | 42 +- docs/images/samples/bars/stacked_bars.svg | 42 +- .../images/samples/bars/stacked_bars_dark.svg | 42 +- .../samples/boxplot/boxplot_categories.svg | 44 +- .../boxplot/boxplot_categories_dark.svg | 44 +- docs/images/samples/boxplot/boxplot_expr.svg | 44 +- .../samples/boxplot/boxplot_expr_dark.svg | 44 +- .../samples/boxplot/boxplot_life_exp.svg | 44 +- .../samples/boxplot/boxplot_life_exp_dark.svg | 44 +- .../candlestick/candlestick_settings_dsl.svg | 42 +- .../candlestick_settings_dsl_dark.svg | 42 +- .../candlestick_settings_stat_api.svg | 42 +- .../candlestick_settings_stat_api_dark.svg | 42 +- .../candlestick/candlestick_simple.svg | 42 +- .../candlestick/candlestick_simple_dark.svg | 42 +- .../preview_candlestick_settings_stat_api.svg | 42 +- ...iew_candlestick_settings_stat_api_dark.svg | 42 +- .../samples/countPlot/countPlot_grouped.svg | 42 +- .../countPlot/countPlot_grouped_dark.svg | 42 +- .../countPlot/countPlot_horizontal.svg | 42 +- .../countPlot/countPlot_horizontal_dark.svg | 42 +- .../samples/countPlot/countPlot_settings.svg | 42 +- .../countPlot/countPlot_settings_dark.svg | 42 +- .../samples/countPlot/countPlot_simple.svg | 42 +- .../countPlot/countPlot_simple_dark.svg | 42 +- .../densityPlot/densityPlot_grouped.svg | 42 +- .../densityPlot/densityPlot_grouped_dark.svg | 42 +- .../densityPlot/densityPlot_settings.svg | 42 +- .../densityPlot/densityPlot_settings_dark.svg | 42 +- .../densityPlot/densityPlot_simple.svg | 42 +- .../densityPlot/densityPlot_simple_dark.svg | 42 +- .../densityPlot_with_histogram.svg | 44 +- .../densityPlot_with_histogram_dark.svg | 44 +- .../errorBars/border_line_error_bars.svg | 42 +- .../errorBars/border_line_error_bars_dark.svg | 42 +- .../samples/errorBars/error_bars_settings.svg | 42 +- .../errorBars/error_bars_settings_dark.svg | 42 +- .../errorBars/error_bars_with_boxplot.svg | 42 +- .../error_bars_with_boxplot_dark.svg | 42 +- .../errorBars/error_bars_with_line.svg | 44 +- .../errorBars/error_bars_with_line_dark.svg | 44 +- .../samples/errorBars/fixed_error_bars.svg | 42 +- .../errorBars/fixed_error_bars_dark.svg | 42 +- .../samples/errorBars/grouped_error_bars.svg | 42 +- .../errorBars/grouped_error_bars_dark.svg | 42 +- .../errorBars/simple_error_bar_plot.svg | 42 +- .../errorBars/simple_error_bar_plot_dark.svg | 42 +- .../samples/geo/germany_map_categories.svg | 42 +- .../geo/germany_map_categories_dark.svg | 42 +- .../geo/germany_map_settings_shapefile.svg | 42 +- .../germany_map_settings_shapefile_dark.svg | 42 +- .../geo/preview_germany_map_categories.svg | 42 +- .../preview_germany_map_categories_dark.svg | 42 +- .../preview_usa_election_results_joined.svg | 42 +- ...eview_usa_election_results_joined_dark.svg | 42 +- docs/images/samples/geo/usa_adjusted.svg | 42 +- docs/images/samples/geo/usa_adjusted_dark.svg | 42 +- docs/images/samples/geo/usa_conus_albers.svg | 42 +- .../samples/geo/usa_conus_albers_dark.svg | 42 +- .../geo/usa_election_results_joined.svg | 42 +- .../geo/usa_election_results_joined_dark.svg | 42 +- .../samples/geo/usa_simple_poly_json.svg | 42 +- .../samples/geo/usa_simple_poly_json_dark.svg | 42 +- docs/images/samples/geo/usa_with_cities.svg | 44 +- .../samples/geo/usa_with_cities_dark.svg | 44 +- .../samples/heatmap/heatmap_settings.svg | 42 +- .../samples/heatmap/heatmap_settings_dark.svg | 42 +- .../images/samples/heatmap/heatmap_simple.svg | 42 +- .../samples/heatmap/heatmap_simple_dark.svg | 42 +- .../samples/histogram/histogram_grouped.svg | 42 +- .../histogram/histogram_grouped_dark.svg | 42 +- .../samples/histogram/histogram_settings.svg | 42 +- .../histogram/histogram_settings_dark.svg | 42 +- .../samples/histogram/histogram_simple.svg | 42 +- .../histogram/histogram_simple_dark.svg | 42 +- .../samples/histogram/histogram_with_line.svg | 44 +- .../histogram/histogram_with_line_dark.svg | 44 +- .../layout/axis_and_legend_configuration.svg | 42 +- .../axis_and_legend_configuration_dark.svg | 42 +- .../samples/layout/base_layout_settings.svg | 42 +- .../layout/base_layout_settings_dark.svg | 42 +- .../layout/preview_base_layout_settings.svg | 42 +- .../preview_base_layout_settings_dark.svg | 42 +- .../layout/preview_subtitle_and_caption.svg | 42 +- .../preview_subtitle_and_caption_dark.svg | 42 +- .../samples/layout/subtitle_and_caption.svg | 42 +- .../layout/subtitle_and_caption_dark.svg | 42 +- .../samples/line/line_and_path_comp_2.svg | 86 +- .../line/line_and_path_comp_2_dark.svg | 86 +- docs/images/samples/line/line_by_fun.svg | 44 +- docs/images/samples/line/line_by_fun_dark.svg | 44 +- .../samples/line/line_color_gradient.svg | 42 +- .../samples/line/line_color_gradient_dark.svg | 42 +- docs/images/samples/line/line_fixed_coord.svg | 44 +- .../samples/line/line_fixed_coord_dark.svg | 44 +- docs/images/samples/line/line_mark.svg | 46 +- docs/images/samples/line/line_mark_dark.svg | 46 +- .../samples/line/line_reversed_axis.svg | 42 +- .../samples/line/line_reversed_axis_dark.svg | 42 +- docs/images/samples/line/line_with_points.svg | 44 +- .../samples/line/line_with_points_dark.svg | 44 +- docs/images/samples/line/path_line.svg | 42 +- docs/images/samples/line/path_line_dark.svg | 42 +- .../line/preview_line_and_path_comp_2.svg | 86 +- .../preview_line_and_path_comp_2_dark.svg | 86 +- .../images/samples/line/preview_line_mark.svg | 46 +- .../samples/line/preview_line_mark_dark.svg | 46 +- docs/images/samples/line/several_lines.svg | 42 +- .../samples/line/several_lines_dark.svg | 42 +- docs/images/samples/line/simple_line.svg | 42 +- docs/images/samples/line/simple_line_dark.svg | 42 +- .../samples/line/simple_line_settings.svg | 42 +- .../line/simple_line_settings_dark.svg | 42 +- .../line/smoothed_curve_with_points.svg | 44 +- .../line/smoothed_curve_with_points_dark.svg | 44 +- docs/images/samples/line/smoothed_line.svg | 42 +- .../samples/line/smoothed_line_dark.svg | 42 +- docs/images/samples/line/step_line.svg | 52 +- docs/images/samples/line/step_line_dark.svg | 52 +- docs/images/samples/pie/nightingale_chart.svg | 42 +- .../samples/pie/nightingale_chart_dark.svg | 42 +- docs/images/samples/pie/pie_base.svg | 42 +- docs/images/samples/pie/pie_base_dark.svg | 42 +- docs/images/samples/pie/pie_explode.svg | 42 +- docs/images/samples/pie/pie_explode_dark.svg | 42 +- docs/images/samples/pie/pie_settings.svg | 42 +- docs/images/samples/pie/pie_settings_dark.svg | 42 +- docs/images/samples/pie/pie_with_count.svg | 42 +- .../samples/pie/pie_with_count_dark.svg | 42 +- docs/images/samples/pie/pie_with_void.svg | 42 +- .../images/samples/pie/pie_with_void_dark.svg | 42 +- .../samples/points/basic_points_plot.svg | 42 +- .../samples/points/basic_points_plot_dark.svg | 42 +- docs/images/samples/points/bubble_chart.svg | 42 +- .../samples/points/bubble_chart_dark.svg | 42 +- .../samples/points/complex_bubble_chart.svg | 42 +- .../points/complex_bubble_chart_dark.svg | 42 +- .../points/complex_bubble_chart_part2.svg | 42 +- .../complex_bubble_chart_part2_dark.svg | 42 +- .../points/complex_bubble_chart_part3.svg | 42 +- .../complex_bubble_chart_part3_dark.svg | 42 +- docs/images/samples/points/fixed_points.svg | 42 +- .../samples/points/fixed_points_dark.svg | 42 +- .../points/functional_scatter_plot.svg | 42 +- .../points/functional_scatter_plot_dark.svg | 42 +- .../images/samples/points/points_gradient.svg | 42 +- .../samples/points/points_gradient_dark.svg | 42 +- .../images/samples/points/points_settings.svg | 42 +- .../samples/points/points_settings_dark.svg | 42 +- .../samples/points/points_with_abLine.svg | 44 +- .../points/points_with_abLine_dark.svg | 44 +- .../points/points_with_color_by_category.svg | 42 +- .../points_with_color_by_category_dark.svg | 42 +- .../ribbon/regression_confidence_band.svg | 44 +- .../regression_confidence_band_dark.svg | 44 +- .../samples/ribbon/ribbon_function_plot.svg | 42 +- .../ribbon/ribbon_function_plot_dark.svg | 42 +- docs/images/samples/ribbon/ribbon_grouped.svg | 42 +- .../samples/ribbon/ribbon_grouped_dark.svg | 42 +- .../images/samples/ribbon/ribbon_settings.svg | 42 +- .../samples/ribbon/ribbon_settings_dark.svg | 42 +- docs/images/samples/ribbon/ribbon_simple.svg | 42 +- .../samples/ribbon/ribbon_simple_dark.svg | 42 +- .../samples/ribbon/ribbon_with_line.svg | 44 +- .../samples/ribbon/ribbon_with_line_dark.svg | 44 +- docs/images/samples/tiles/basic_heatmap.svg | 42 +- .../samples/tiles/basic_heatmap_dark.svg | 42 +- docs/images/samples/tiles/basic_tile_plot.svg | 42 +- .../samples/tiles/basic_tile_plot_dark.svg | 42 +- docs/images/samples/tiles/fixed_tile.svg | 42 +- docs/images/samples/tiles/fixed_tile_dark.svg | 42 +- .../samples/tiles/tiles_color_categories.svg | 42 +- .../tiles/tiles_color_categories_dark.svg | 42 +- docs/images/samples/tiles/tiles_gradient.svg | 42 +- .../samples/tiles/tiles_gradient_dark.svg | 42 +- docs/images/samples/tiles/tiles_ktnb_logo.svg | 42 +- .../samples/tiles/tiles_ktnb_logo_dark.svg | 42 +- docs/images/samples/tiles/tiles_settings.svg | 42 +- .../samples/tiles/tiles_settings_dark.svg | 42 +- docs/kd.tree | 2 +- ...ebook_test_top_12_german_companies_11.html | 471 ----------- ...tebook_test_top_12_german_companies_3.html | 477 ----------- ...tebook_test_top_12_german_companies_5.html | 512 ------------ ...tebook_test_top_12_german_companies_6.html | 512 ------------ ...tebook_test_top_12_german_companies_7.html | 473 ----------- docs/topics/_shadow_resources.md | 0 docs/topics/guides/top_12_german_companies.md | 135 --- docs/writerside.cfg | 1 + kandy-geo/build.gradle.kts | 2 +- .../kotlinx/kandy/geo/samples/gallery/geo.kt | 32 +- .../kandy/geo/samples/guides/GeoGuide.kt | 51 +- kandy-lets-plot/build.gradle.kts | 2 +- .../kotlinx/kandy/letsplot/samples/area.kt | 20 +- .../kotlinx/kandy/letsplot/samples/bars.kt | 20 +- .../kotlinx/kandy/letsplot/samples/boxplot.kt | 6 +- .../kandy/letsplot/samples/candlestick.kt | 6 +- .../kandy/letsplot/samples/countPlot.kt | 10 +- .../kandy/letsplot/samples/densityPlot.kt | 10 +- .../kandy/letsplot/samples/errorBars.kt | 14 +- .../letsplot/samples/guides/algebraicCurve.kt | 2 +- .../samples/guides/anscombesQuartet.kt | 2 +- .../kandy/letsplot/samples/guides/boxplot.kt | 15 +- .../letsplot/samples/guides/candlestick.kt | 17 +- .../letsplot/samples/guides/countPlot.kt | 34 +- .../letsplot/samples/guides/errorBars.kt | 18 +- .../letsplot/samples/guides/exportToFile.kt | 2 +- .../kandy/letsplot/samples/guides/facets.kt | 24 +- .../kandy/letsplot/samples/guides/heatmap.kt | 21 +- .../letsplot/samples/guides/jitterPoints.kt | 2 +- .../letsplot/samples/guides/labelFormat.kt | 12 +- .../letsplot/samples/guides/legendAndAxis.kt | 14 +- .../kandy/letsplot/samples/guides/lines.kt | 10 +- .../kandy/letsplot/samples/guides/pie.kt | 8 +- .../letsplot/samples/guides/plotBunch.kt | 2 +- .../samples/guides/quickStartGuide.kt | 88 +- .../kandy/letsplot/samples/guides/ribbon.kt | 2 +- .../letsplot/samples/guides/scatterPlot.kt | 8 +- .../letsplot/samples/guides/seriesHack.kt | 8 +- .../kandy/letsplot/samples/guides/styles.kt | 36 +- .../samples/guides/titleSubtitleCaption.kt | 28 +- .../samples/guides/topGermanCompanies.kt | 51 +- .../kotlinx/kandy/letsplot/samples/heatmap.kt | 4 +- .../kandy/letsplot/samples/histogram.kt | 9 +- .../kotlinx/kandy/letsplot/samples/layout.kt | 6 +- .../kotlinx/kandy/letsplot/samples/lines.kt | 28 +- .../kotlinx/kandy/letsplot/samples/pie.kt | 12 +- .../kotlinx/kandy/letsplot/samples/points.kt | 22 +- .../kandy/letsplot/samples/quickstart.kt | 2 +- .../kotlinx/kandy/letsplot/samples/ribbon.kt | 12 +- .../kotlinx/kandy/letsplot/samples/tiles.kt | 14 +- settings.gradle.kts | 4 +- .../build.gradle.kts | 0 .../kandy/letsplot/samples/SampleHelper.kt | 70 +- .../letsplot/samples/writersideParameters.kt | 88 ++ .../letsplot/samples/writersideParameters.kt | 37 - 674 files changed, 16035 insertions(+), 22851 deletions(-) create mode 100644 docs/cfg/include-head.html create mode 100644 docs/cfg/static/custom.js delete mode 100644 docs/images/guides/top_12_german_companies/notebook_test_top_12_german_companies_10.svg delete mode 100644 docs/images/guides/top_12_german_companies/notebook_test_top_12_german_companies_10_dark.svg delete mode 100644 docs/images/guides/top_12_german_companies/notebook_test_top_12_german_companies_12.svg delete mode 100644 docs/images/guides/top_12_german_companies/notebook_test_top_12_german_companies_12_dark.svg delete mode 100644 docs/images/guides/top_12_german_companies/notebook_test_top_12_german_companies_13.svg delete mode 100644 docs/images/guides/top_12_german_companies/notebook_test_top_12_german_companies_13_dark.svg delete mode 100644 docs/images/guides/top_12_german_companies/notebook_test_top_12_german_companies_9.svg delete mode 100644 docs/images/guides/top_12_german_companies/notebook_test_top_12_german_companies_9_dark.svg delete mode 100644 docs/resources/notebook_test_top_12_german_companies_11.html delete mode 100644 docs/resources/notebook_test_top_12_german_companies_3.html delete mode 100644 docs/resources/notebook_test_top_12_german_companies_5.html delete mode 100644 docs/resources/notebook_test_top_12_german_companies_6.html delete mode 100644 docs/resources/notebook_test_top_12_german_companies_7.html create mode 100644 docs/topics/_shadow_resources.md delete mode 100644 docs/topics/guides/top_12_german_companies.md rename util/{samples-utils => kandy-samples-utils}/build.gradle.kts (100%) rename util/{samples-utils => kandy-samples-utils}/src/main/kotlin/org/jetbrains/kotlinx/kandy/letsplot/samples/SampleHelper.kt (74%) create mode 100644 util/kandy-samples-utils/src/main/kotlin/org/jetbrains/kotlinx/kandy/letsplot/samples/writersideParameters.kt delete mode 100644 util/samples-utils/src/main/kotlin/org/jetbrains/kotlinx/kandy/letsplot/samples/writersideParameters.kt diff --git a/build.gradle.kts b/build.gradle.kts index c0284dc04..0b3bcd26f 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -38,7 +38,8 @@ val published = listOf( "kandy-echarts", "kandy-lets-plot", "kandy-geo", - "kandy-util" + "kandy-util", + "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..13a7f90fe --- /dev/null +++ b/docs/cfg/static/custom.js @@ -0,0 +1,76 @@ +window.addEventListener('load', function () { + function sendTheme(theme, iframe) { + const maxAttempts = 10; + const interval = 200; // 200ms + let attempts = 0; + + function attemptSend() { + if (attempts >= maxAttempts) return; + iframe.contentWindow.postMessage({ type: 'setTheme', theme }, '*'); + attempts++; + } + + attemptSend(); + const intervalId = setInterval(() => { + attemptSend(); + if (attempts >= maxAttempts) clearInterval(intervalId); + }, interval); + } + + function setIframeHeight(iframe, height) { + iframe.style.height = height + 'px'; + } + + const htmlElement = document.documentElement; + + function getCurrentTheme() { + return htmlElement.classList.contains('theme-light') ? 'light' : 'dark'; + } + + window.addEventListener('message', (event) => { + if (event.data.type === 'iframeHeight') { + document.querySelectorAll('iframe').forEach((iframe) => { + if (iframe.contentWindow === event.source) { + setIframeHeight(iframe, event.data.height); + } + }); + } + }); + + function updateAllIframeThemes() { + const theme = getCurrentTheme(); + document.querySelectorAll('iframe').forEach((iframe) => { + if (iframe.contentWindow) { + sendTheme(theme, iframe); + } + }); + } + + const observer = new MutationObserver(() => { + updateAllIframeThemes(); + }); + + observer.observe(htmlElement, { attributes: true }); + + function observeIframeLoad(iframe) { + iframe.addEventListener('load', () => sendTheme(getCurrentTheme(), iframe)); + if (iframe.contentDocument && iframe.contentDocument.readyState === 'complete') { + sendTheme(getCurrentTheme(), iframe); + } + } + + document.querySelectorAll('iframe').forEach(observeIframeLoad); + + const bodyObserver = new MutationObserver((mutations) => { + mutations.forEach((mutation) => { + mutation.addedNodes.forEach((node) => { + if (node.tagName === 'IFRAME') observeIframeLoad(node); + else if (node.querySelectorAll) node.querySelectorAll('iframe').forEach(observeIframeLoad); + }); + }); + }); + + bodyObserver.observe(document.body, { childList: true, subtree: true }); + + updateAllIframeThemes(); +}); diff --git a/docs/images/guides/geoGuide/electionResultsPlotByParty.svg b/docs/images/guides/geoGuide/electionResultsPlotByParty.svg index 0377ac94a..7ff23bf98 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: Lucida Grande, sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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 009cb501f..fbbe3d562 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: Lucida Grande, sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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 e5aa13666..34c767471 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: Lucida Grande, sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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 92fae2132..cd7f047ee 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: Lucida Grande, sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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 6d20e7b24..ca77d4021 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: Lucida Grande, sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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 0f27c8370..f0cb96b41 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: Lucida Grande, sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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 0a67238ee..164176032 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: Lucida Grande, sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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 40a803690..24ee5acf3 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: Lucida Grande, sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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 277e7c4fb..66f7f585e 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: Lucida Grande, sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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 4c7b362a6..a016c9e5d 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: Lucida Grande, sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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 00d877ded..809017f3b 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: Lucida Grande, sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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 4985ce476..aca75ed83 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: Lucida Grande, sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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 0976d1915..e17de33a1 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: Lucida Grande, sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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 84ddec048..4d0477a77 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: Lucida Grande, sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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 9a09dad68..adb73cde6 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: Lucida Grande, sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, sans-serif; @@ -129,7 +129,7 @@ font-size: 13.0px; } - + @@ -165,7 +165,7 @@ font-size: 13.0px; - + @@ -369,7 +369,7 @@ font-size: 13.0px; - + @@ -484,6 +484,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 ece165500..a3c204ae9 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: Lucida Grande, sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, sans-serif; @@ -129,7 +129,7 @@ font-size: 13.0px; } - + @@ -258,7 +258,7 @@ font-size: 13.0px; - + @@ -462,7 +462,7 @@ font-size: 13.0px; - + @@ -484,6 +484,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 f9626bb9a..7f676efbc 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: Lucida Grande, sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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 ecf12550a..49c86e28a 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: Lucida Grande, sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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 721cbc3f2..61776a5b2 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: Lucida Grande, sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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 f53056a17..132295054 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: Lucida Grande, sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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 d86bd3ffa..6c6e17547 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: Lucida Grande, sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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 e173f1113..836086933 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: Lucida Grande, sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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 7a86efc68..b33c26e63 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: Lucida Grande, sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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 d6b24a439..047399dcc 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: Lucida Grande, sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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 2a4d844f8..9dfbba5d0 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: Lucida Grande, sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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 d1e52bf32..b0b013799 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: Lucida Grande, sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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 277e7c4fb..66f7f585e 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: Lucida Grande, sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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 4c7b362a6..a016c9e5d 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: Lucida Grande, sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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 748dc4002..42adfdd9a 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: Lucida Grande, sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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 4e8f3c6b9..c7c4fd521 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: Lucida Grande, sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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 0f425e4ad..651c7b874 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: Lucida Grande, sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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 2593bdf92..2e114623e 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: Lucida Grande, sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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 b0fd2a088..4fb69b296 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: Lucida Grande, sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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 dca77f735..40e5047e0 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: Lucida Grande, sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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 6d20e7b24..ca77d4021 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: Lucida Grande, sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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 0f27c8370..f0cb96b41 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: Lucida Grande, sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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 ab755f52c..7fb346f52 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: Lucida Grande, sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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 52b79477e..d6386751a 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: Lucida Grande, sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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 7cfe3d89c..9dcc47a9d 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: Lucida Grande, sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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 afeb1dabe..9c6603a75 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: Lucida Grande, sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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 12f74f008..7284e0fc8 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: Lucida Grande, sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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 7eeb174b1..dce203c68 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: Lucida Grande, sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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 6705d8175..301c886c9 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: Lucida Grande, sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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 b3d548fe6..e2e58e706 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: Lucida Grande, sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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 e925da416..064f82be9 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: Lucida Grande, sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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 c76296544..498f69fff 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: Lucida Grande, sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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 0e775766c..99d73276c 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: Lucida Grande, sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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 6a0a1f51e..2fdc27cd5 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: Lucida Grande, sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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 e70837d18..8fb0de2a7 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: Lucida Grande, sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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 701aff0cb..13484b091 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: Lucida Grande, sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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 3b87e7feb..f6b2604ed 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: Lucida Grande, sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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 91c512642..32dae5343 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: Lucida Grande, sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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 941bd1915..27e66d295 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: Lucida Grande, sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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 9127527b0..80c052db9 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: Lucida Grande, sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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 fa8d2b4b7..f525f2bb6 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: Lucida Grande, sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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 290dfdef2..531fada9f 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: Lucida Grande, sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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 8b8349ce3..1239f429e 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: Lucida Grande, sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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 7a80d5c31..329cf730e 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: Lucida Grande, sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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 8a1fb2770..1eb27c57c 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: Lucida Grande, sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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 15c1b4f3e..da41bad1d 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: Lucida Grande, sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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 8a1fb2770..1eb27c57c 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: Lucida Grande, sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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 15c1b4f3e..da41bad1d 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: Lucida Grande, sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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 030c71d07..e2ec73b37 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: Lucida Grande, sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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 4ff5b8e73..21e13ee8e 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: Lucida Grande, sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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 d11a16bf4..833315fdc 100644 --- a/docs/images/guides/geoms/guideLinesCompareLinePathSegmentsPlotBunch.svg +++ b/docs/images/guides/geoms/guideLinesCompareLinePathSegmentsPlotBunch.svg @@ -11,117 +11,117 @@ text { text-rendering: optimizeLegibility; } -#xXxprefixXx0 .plot-title { +#_sample_helper_static_id_prefix_0 .plot-title { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, sans-serif; @@ -141,117 +141,117 @@ font-size: 13.0px; text { text-rendering: optimizeLegibility; } -#xXxprefixXx3 .plot-title { +#_sample_helper_static_id_prefix_3 .plot-title { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 16.0px; } -#xXxprefixXx3 .plot-subtitle { +#_sample_helper_static_id_prefix_3 .plot-subtitle { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx3 .plot-caption { +#_sample_helper_static_id_prefix_3 .plot-caption { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx3 .hyperlink-element { +#_sample_helper_static_id_prefix_3 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx3 .legend-title { +#_sample_helper_static_id_prefix_3 .legend-title { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx3 .legend-item { +#_sample_helper_static_id_prefix_3 .legend-item { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx3 .axis-title-x { +#_sample_helper_static_id_prefix_3 .axis-title-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx3 .axis-text-x { +#_sample_helper_static_id_prefix_3 .axis-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx3 .axis-title-y { +#_sample_helper_static_id_prefix_3 .axis-title-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx3 .axis-text-y { +#_sample_helper_static_id_prefix_3 .axis-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx3 .facet-strip-text-x { +#_sample_helper_static_id_prefix_3 .facet-strip-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx3 .facet-strip-text-y { +#_sample_helper_static_id_prefix_3 .facet-strip-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, sans-serif; @@ -271,117 +271,117 @@ font-size: 13.0px; text { text-rendering: optimizeLegibility; } -#xXxprefixXx6 .plot-title { +#_sample_helper_static_id_prefix_6 .plot-title { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 16.0px; } -#xXxprefixXx6 .plot-subtitle { +#_sample_helper_static_id_prefix_6 .plot-subtitle { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx6 .plot-caption { +#_sample_helper_static_id_prefix_6 .plot-caption { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx6 .hyperlink-element { +#_sample_helper_static_id_prefix_6 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx6 .legend-title { +#_sample_helper_static_id_prefix_6 .legend-title { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx6 .legend-item { +#_sample_helper_static_id_prefix_6 .legend-item { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx6 .axis-title-x { +#_sample_helper_static_id_prefix_6 .axis-title-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx6 .axis-text-x { +#_sample_helper_static_id_prefix_6 .axis-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx6 .axis-title-y { +#_sample_helper_static_id_prefix_6 .axis-title-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx6 .axis-text-y { +#_sample_helper_static_id_prefix_6 .axis-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx6 .facet-strip-text-x { +#_sample_helper_static_id_prefix_6 .facet-strip-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx6 .facet-strip-text-y { +#_sample_helper_static_id_prefix_6 .facet-strip-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, sans-serif; @@ -391,7 +391,7 @@ font-size: 13.0px; - + @@ -425,7 +425,7 @@ font-size: 13.0px; - + @@ -437,7 +437,7 @@ font-size: 13.0px; - + @@ -548,10 +548,10 @@ font-size: 13.0px; - + - + @@ -585,7 +585,7 @@ font-size: 13.0px; - + @@ -597,7 +597,7 @@ font-size: 13.0px; - + @@ -708,10 +708,10 @@ font-size: 13.0px; - + - + @@ -753,7 +753,7 @@ font-size: 13.0px; - + @@ -861,7 +861,7 @@ font-size: 13.0px; - + @@ -1003,7 +1003,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 5f4713149..6211b8cbf 100644 --- a/docs/images/guides/geoms/guideLinesCompareLinePathSegmentsPlotBunch_dark.svg +++ b/docs/images/guides/geoms/guideLinesCompareLinePathSegmentsPlotBunch_dark.svg @@ -11,117 +11,117 @@ text { text-rendering: optimizeLegibility; } -#xXxprefixXx0 .plot-title { +#_sample_helper_static_id_prefix_0 .plot-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, sans-serif; @@ -141,117 +141,117 @@ font-size: 13.0px; text { text-rendering: optimizeLegibility; } -#xXxprefixXx3 .plot-title { +#_sample_helper_static_id_prefix_3 .plot-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 16.0px; } -#xXxprefixXx3 .plot-subtitle { +#_sample_helper_static_id_prefix_3 .plot-subtitle { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx3 .plot-caption { +#_sample_helper_static_id_prefix_3 .plot-caption { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx3 .hyperlink-element { +#_sample_helper_static_id_prefix_3 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx3 .legend-title { +#_sample_helper_static_id_prefix_3 .legend-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx3 .legend-item { +#_sample_helper_static_id_prefix_3 .legend-item { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx3 .axis-title-x { +#_sample_helper_static_id_prefix_3 .axis-title-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx3 .axis-text-x { +#_sample_helper_static_id_prefix_3 .axis-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx3 .axis-title-y { +#_sample_helper_static_id_prefix_3 .axis-title-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx3 .axis-text-y { +#_sample_helper_static_id_prefix_3 .axis-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx3 .facet-strip-text-x { +#_sample_helper_static_id_prefix_3 .facet-strip-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx3 .facet-strip-text-y { +#_sample_helper_static_id_prefix_3 .facet-strip-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, sans-serif; @@ -271,117 +271,117 @@ font-size: 13.0px; text { text-rendering: optimizeLegibility; } -#xXxprefixXx6 .plot-title { +#_sample_helper_static_id_prefix_6 .plot-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 16.0px; } -#xXxprefixXx6 .plot-subtitle { +#_sample_helper_static_id_prefix_6 .plot-subtitle { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx6 .plot-caption { +#_sample_helper_static_id_prefix_6 .plot-caption { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx6 .hyperlink-element { +#_sample_helper_static_id_prefix_6 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx6 .legend-title { +#_sample_helper_static_id_prefix_6 .legend-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx6 .legend-item { +#_sample_helper_static_id_prefix_6 .legend-item { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx6 .axis-title-x { +#_sample_helper_static_id_prefix_6 .axis-title-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx6 .axis-text-x { +#_sample_helper_static_id_prefix_6 .axis-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx6 .axis-title-y { +#_sample_helper_static_id_prefix_6 .axis-title-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx6 .axis-text-y { +#_sample_helper_static_id_prefix_6 .axis-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx6 .facet-strip-text-x { +#_sample_helper_static_id_prefix_6 .facet-strip-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx6 .facet-strip-text-y { +#_sample_helper_static_id_prefix_6 .facet-strip-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, sans-serif; @@ -391,7 +391,7 @@ font-size: 13.0px; - + @@ -509,7 +509,7 @@ font-size: 13.0px; - + @@ -521,7 +521,7 @@ font-size: 13.0px; - + @@ -548,10 +548,10 @@ font-size: 13.0px; - + - + @@ -669,7 +669,7 @@ font-size: 13.0px; - + @@ -681,7 +681,7 @@ font-size: 13.0px; - + @@ -708,10 +708,10 @@ font-size: 13.0px; - + - + @@ -873,7 +873,7 @@ font-size: 13.0px; - + @@ -981,7 +981,7 @@ font-size: 13.0px; - + @@ -1003,7 +1003,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 9929ea9eb..43d18afe4 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: Lucida Grande, sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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 b9a93b78c..008a3d0f7 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: Lucida Grande, sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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 85072e9c2..184de0e34 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: Lucida Grande, sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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 2d9022c5a..06d954024 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: Lucida Grande, sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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 4c0d0d7ed..d4d95565e 100644 --- a/docs/images/guides/geoms/guidePieChartsInPlotGrid.svg +++ b/docs/images/guides/geoms/guidePieChartsInPlotGrid.svg @@ -1,5 +1,5 @@ - + @@ -15,117 +15,117 @@ 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, sans-serif; @@ -134,7 +134,7 @@ font-size: 13.0px; } - + @@ -152,7 +152,7 @@ font-size: 13.0px; - + @@ -208,7 +208,7 @@ font-size: 13.0px; - + @@ -293,7 +293,7 @@ font-size: 13.0px; - + @@ -308,117 +308,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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, sans-serif; @@ -427,7 +427,7 @@ font-size: 13.0px; } - + @@ -445,7 +445,7 @@ font-size: 13.0px; - + @@ -501,7 +501,7 @@ font-size: 13.0px; - + @@ -586,7 +586,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 79c4765dc..eb019789c 100644 --- a/docs/images/guides/geoms/guidePieChartsInPlotGrid_dark.svg +++ b/docs/images/guides/geoms/guidePieChartsInPlotGrid_dark.svg @@ -1,5 +1,5 @@ - + @@ -15,117 +15,117 @@ 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, sans-serif; @@ -134,7 +134,7 @@ font-size: 13.0px; } - + @@ -152,7 +152,7 @@ font-size: 13.0px; - + @@ -208,7 +208,7 @@ font-size: 13.0px; - + @@ -293,7 +293,7 @@ font-size: 13.0px; - + @@ -308,117 +308,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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, sans-serif; @@ -427,7 +427,7 @@ font-size: 13.0px; } - + @@ -445,7 +445,7 @@ font-size: 13.0px; - + @@ -501,7 +501,7 @@ font-size: 13.0px; - + @@ -586,7 +586,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 d248a0123..8d6720c24 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: Lucida Grande, sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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 cdeecad31..2466d1b94 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: Lucida Grande, sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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 cb1e730fe..2a7dc7f8b 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: Lucida Grande, sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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 2e8aff13e..f55278c5e 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: Lucida Grande, sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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 15cf4faac..5a70e1b85 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: Lucida Grande, sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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 84010d93c..00105a7a7 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: Lucida Grande, sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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 e2d9ac331..34fb4db15 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: Lucida Grande, sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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 ed9a1f784..323ff4020 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: Lucida Grande, sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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 0e72aeab3..a9ff9ec02 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: Lucida Grande, sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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 bc69ecbc5..f31dc7f97 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: Lucida Grande, sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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 9d2a4aa15..538f75e61 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: Lucida Grande, sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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 845980323..fbef5f88f 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: Lucida Grande, sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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 01911ed4b..35de1abb9 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: Lucida Grande, sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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 61da6ae62..f5b3f1b3f 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: Lucida Grande, sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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 6060179b6..ea3881c42 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: Lucida Grande, sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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 736393734..f0ec3f44b 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: Lucida Grande, sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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 e0f4f4de9..aa04d2cfc 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: Lucida Grande, sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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 da00a2f2a..3e1fd04f1 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: Lucida Grande, sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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 e0f4f4de9..aa04d2cfc 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: Lucida Grande, sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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 da00a2f2a..3e1fd04f1 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: Lucida Grande, sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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 ee9e4787c..bf26ea62b 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: Lucida Grande, sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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 fde63909c..49fc4e203 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: Lucida Grande, sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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 6060179b6..ea3881c42 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: Lucida Grande, sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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 736393734..f0ec3f44b 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: Lucida Grande, sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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 73f834dd8..23bd4a341 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: Lucida Grande, sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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 ca1af2330..20a92156e 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: Lucida Grande, sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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 eb628a29f..9a3f8ee9f 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: Lucida Grande, sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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 4e3f0922c..59aaa584e 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: Lucida Grande, sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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 f53e19ea2..f6b985f3d 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: Lucida Grande, sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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 cec68e498..edeb14f1d 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: Lucida Grande, sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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 7ac7f3043..2a6ec663f 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: Lucida Grande, sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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 d038bfcd1..372077afb 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: Lucida Grande, sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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 8baab3897..1726d429c 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: Lucida Grande, sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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 f62b7ab8d..9aa43d33c 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: Lucida Grande, sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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 d292439c2..62e639311 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: Lucida Grande, sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, sans-serif; @@ -129,7 +129,7 @@ font-size: 13.0px; } - + @@ -161,7 +161,7 @@ font-size: 13.0px; - + @@ -407,7 +407,7 @@ font-size: 13.0px; - + @@ -768,6 +768,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 87a754ef0..d3e2384a9 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: Lucida Grande, sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, sans-serif; @@ -129,7 +129,7 @@ font-size: 13.0px; } - + @@ -242,7 +242,7 @@ font-size: 13.0px; - + @@ -488,7 +488,7 @@ font-size: 13.0px; - + @@ -768,6 +768,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 e979787c9..b92479cca 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: Lucida Grande, sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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 94bacf564..acda606e8 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: Lucida Grande, sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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 c0962b18c..26d5111b6 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: Lucida Grande, sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, sans-serif; @@ -129,7 +129,7 @@ font-size: 13.0px; } - + @@ -161,7 +161,7 @@ font-size: 13.0px; - + @@ -407,7 +407,7 @@ font-size: 13.0px; - + @@ -768,6 +768,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 c98208bcf..42305691e 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: Lucida Grande, sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, sans-serif; @@ -129,7 +129,7 @@ font-size: 13.0px; } - + @@ -242,7 +242,7 @@ font-size: 13.0px; - + @@ -488,7 +488,7 @@ font-size: 13.0px; - + @@ -768,6 +768,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 73be328ef..a8557dee5 100644 --- a/docs/images/guides/layout/guideStylesAllPrepStyles.svg +++ b/docs/images/guides/layout/guideStylesAllPrepStyles.svg @@ -1,5 +1,5 @@ - + @@ -15,117 +15,117 @@ 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, sans-serif; @@ -134,7 +134,7 @@ font-size: 13.0px; } - + @@ -247,7 +247,7 @@ font-size: 13.0px; - + @@ -493,7 +493,7 @@ font-size: 13.0px; - + @@ -520,7 +520,7 @@ font-size: 13.0px; - + @@ -535,117 +535,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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, sans-serif; @@ -654,7 +654,7 @@ font-size: 13.0px; } - + @@ -791,7 +791,7 @@ font-size: 13.0px; - + @@ -1037,7 +1037,7 @@ font-size: 13.0px; - + @@ -1066,7 +1066,7 @@ font-size: 13.0px; - + @@ -1081,117 +1081,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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, sans-serif; @@ -1200,7 +1200,7 @@ font-size: 13.0px; } - + @@ -1303,7 +1303,7 @@ font-size: 13.0px; - + @@ -1549,7 +1549,7 @@ font-size: 13.0px; - + @@ -1576,7 +1576,7 @@ font-size: 13.0px; - + @@ -1591,117 +1591,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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, sans-serif; @@ -1710,7 +1710,7 @@ font-size: 13.0px; } - + @@ -1847,7 +1847,7 @@ font-size: 13.0px; - + @@ -2093,7 +2093,7 @@ font-size: 13.0px; - + @@ -2122,7 +2122,7 @@ font-size: 13.0px; - + @@ -2137,117 +2137,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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, sans-serif; @@ -2256,7 +2256,7 @@ font-size: 13.0px; } - + @@ -2373,7 +2373,7 @@ font-size: 13.0px; - + @@ -2619,7 +2619,7 @@ font-size: 13.0px; - + @@ -2646,7 +2646,7 @@ font-size: 13.0px; - + @@ -2661,117 +2661,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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, sans-serif; @@ -2780,7 +2780,7 @@ font-size: 13.0px; } - + @@ -2921,7 +2921,7 @@ font-size: 13.0px; - + @@ -3167,7 +3167,7 @@ font-size: 13.0px; - + @@ -3196,7 +3196,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 0df87728f..4f9e382b9 100644 --- a/docs/images/guides/layout/guideStylesAllPrepStyles_dark.svg +++ b/docs/images/guides/layout/guideStylesAllPrepStyles_dark.svg @@ -1,5 +1,5 @@ - + @@ -15,117 +15,117 @@ 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, sans-serif; @@ -134,7 +134,7 @@ font-size: 13.0px; } - + @@ -247,7 +247,7 @@ font-size: 13.0px; - + @@ -493,7 +493,7 @@ font-size: 13.0px; - + @@ -520,7 +520,7 @@ font-size: 13.0px; - + @@ -535,117 +535,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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, sans-serif; @@ -654,7 +654,7 @@ font-size: 13.0px; } - + @@ -791,7 +791,7 @@ font-size: 13.0px; - + @@ -1037,7 +1037,7 @@ font-size: 13.0px; - + @@ -1066,7 +1066,7 @@ font-size: 13.0px; - + @@ -1081,117 +1081,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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, sans-serif; @@ -1200,7 +1200,7 @@ font-size: 13.0px; } - + @@ -1303,7 +1303,7 @@ font-size: 13.0px; - + @@ -1549,7 +1549,7 @@ font-size: 13.0px; - + @@ -1576,7 +1576,7 @@ font-size: 13.0px; - + @@ -1591,117 +1591,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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, sans-serif; @@ -1710,7 +1710,7 @@ font-size: 13.0px; } - + @@ -1847,7 +1847,7 @@ font-size: 13.0px; - + @@ -2093,7 +2093,7 @@ font-size: 13.0px; - + @@ -2122,7 +2122,7 @@ font-size: 13.0px; - + @@ -2137,117 +2137,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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, sans-serif; @@ -2256,7 +2256,7 @@ font-size: 13.0px; } - + @@ -2373,7 +2373,7 @@ font-size: 13.0px; - + @@ -2619,7 +2619,7 @@ font-size: 13.0px; - + @@ -2646,7 +2646,7 @@ font-size: 13.0px; - + @@ -2661,117 +2661,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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, sans-serif; @@ -2780,7 +2780,7 @@ font-size: 13.0px; } - + @@ -2921,7 +2921,7 @@ font-size: 13.0px; - + @@ -3167,7 +3167,7 @@ font-size: 13.0px; - + @@ -3196,7 +3196,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 b70431e5a..581f777af 100644 --- a/docs/images/guides/layout/guideStylesAxisTooltip.svg +++ b/docs/images/guides/layout/guideStylesAxisTooltip.svg @@ -1,5 +1,5 @@ - + @@ -15,117 +15,117 @@ 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, sans-serif; @@ -134,7 +134,7 @@ font-size: 13.0px; } - + @@ -283,7 +283,7 @@ font-size: 13.0px; - + @@ -529,7 +529,7 @@ font-size: 13.0px; - + @@ -556,7 +556,7 @@ font-size: 13.0px; - + @@ -571,117 +571,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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, sans-serif; @@ -690,7 +690,7 @@ font-size: 13.0px; } - + @@ -839,7 +839,7 @@ font-size: 13.0px; - + @@ -1085,7 +1085,7 @@ font-size: 13.0px; - + @@ -1112,7 +1112,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 c3ddbe1fc..8d0d0f018 100644 --- a/docs/images/guides/layout/guideStylesAxisTooltip_dark.svg +++ b/docs/images/guides/layout/guideStylesAxisTooltip_dark.svg @@ -1,5 +1,5 @@ - + @@ -15,117 +15,117 @@ 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, sans-serif; @@ -134,7 +134,7 @@ font-size: 13.0px; } - + @@ -283,7 +283,7 @@ font-size: 13.0px; - + @@ -529,7 +529,7 @@ font-size: 13.0px; - + @@ -556,7 +556,7 @@ font-size: 13.0px; - + @@ -571,117 +571,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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, sans-serif; @@ -690,7 +690,7 @@ font-size: 13.0px; } - + @@ -839,7 +839,7 @@ font-size: 13.0px; - + @@ -1085,7 +1085,7 @@ font-size: 13.0px; - + @@ -1112,7 +1112,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 6376a2686..fda3813f0 100644 --- a/docs/images/guides/layout/guideStylesBackgroundPanel.svg +++ b/docs/images/guides/layout/guideStylesBackgroundPanel.svg @@ -1,5 +1,5 @@ - + @@ -15,117 +15,117 @@ 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, sans-serif; @@ -134,7 +134,7 @@ font-size: 13.0px; } - + @@ -283,7 +283,7 @@ font-size: 13.0px; - + @@ -529,7 +529,7 @@ font-size: 13.0px; - + @@ -556,7 +556,7 @@ font-size: 13.0px; - + @@ -571,117 +571,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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, sans-serif; @@ -690,7 +690,7 @@ font-size: 13.0px; } - + @@ -841,7 +841,7 @@ font-size: 13.0px; - + @@ -1087,7 +1087,7 @@ font-size: 13.0px; - + @@ -1116,7 +1116,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 d209eb422..7bd4a7ea8 100644 --- a/docs/images/guides/layout/guideStylesBackgroundPanel_dark.svg +++ b/docs/images/guides/layout/guideStylesBackgroundPanel_dark.svg @@ -1,5 +1,5 @@ - + @@ -15,117 +15,117 @@ 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, sans-serif; @@ -134,7 +134,7 @@ font-size: 13.0px; } - + @@ -283,7 +283,7 @@ font-size: 13.0px; - + @@ -529,7 +529,7 @@ font-size: 13.0px; - + @@ -556,7 +556,7 @@ font-size: 13.0px; - + @@ -571,117 +571,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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, sans-serif; @@ -690,7 +690,7 @@ font-size: 13.0px; } - + @@ -841,7 +841,7 @@ font-size: 13.0px; - + @@ -1087,7 +1087,7 @@ font-size: 13.0px; - + @@ -1116,7 +1116,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 2c3c17951..8c1351548 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: Lucida Grande, sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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 e7b87297b..5f6c45598 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: Lucida Grande, sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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 004eeacd2..6be7de2c5 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: Lucida Grande, sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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 397b07aa1..886d795c3 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: Lucida Grande, sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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 d381d8647..e4a05792d 100644 --- a/docs/images/guides/layout/guideStylesBlankAxis.svg +++ b/docs/images/guides/layout/guideStylesBlankAxis.svg @@ -1,5 +1,5 @@ - + @@ -15,117 +15,117 @@ 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, sans-serif; @@ -134,7 +134,7 @@ font-size: 13.0px; } - + @@ -283,7 +283,7 @@ font-size: 13.0px; - + @@ -529,7 +529,7 @@ font-size: 13.0px; - + @@ -556,7 +556,7 @@ font-size: 13.0px; - + @@ -571,117 +571,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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, sans-serif; @@ -690,7 +690,7 @@ font-size: 13.0px; } - + @@ -837,7 +837,7 @@ font-size: 13.0px; - + @@ -1083,7 +1083,7 @@ font-size: 13.0px; - + @@ -1110,7 +1110,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 a3cc4d2df..ddf68915b 100644 --- a/docs/images/guides/layout/guideStylesBlankAxis_dark.svg +++ b/docs/images/guides/layout/guideStylesBlankAxis_dark.svg @@ -1,5 +1,5 @@ - + @@ -15,117 +15,117 @@ 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, sans-serif; @@ -134,7 +134,7 @@ font-size: 13.0px; } - + @@ -283,7 +283,7 @@ font-size: 13.0px; - + @@ -529,7 +529,7 @@ font-size: 13.0px; - + @@ -556,7 +556,7 @@ font-size: 13.0px; - + @@ -571,117 +571,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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, sans-serif; @@ -690,7 +690,7 @@ font-size: 13.0px; } - + @@ -837,7 +837,7 @@ font-size: 13.0px; - + @@ -1083,7 +1083,7 @@ font-size: 13.0px; - + @@ -1110,7 +1110,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 21eafbce8..cc10b6752 100644 --- a/docs/images/guides/layout/guideStylesConfigureBackgroundGrid.svg +++ b/docs/images/guides/layout/guideStylesConfigureBackgroundGrid.svg @@ -1,5 +1,5 @@ - + @@ -15,117 +15,117 @@ 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, sans-serif; @@ -134,7 +134,7 @@ font-size: 13.0px; } - + @@ -340,7 +340,7 @@ font-size: 13.0px; - + @@ -358,7 +358,7 @@ font-size: 13.0px; - + @@ -485,7 +485,7 @@ font-size: 13.0px; - + @@ -500,117 +500,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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx6 .axis-tooltip-text-y { +#_sample_helper_static_id_prefix_6 .axis-tooltip-text-y { fill: #2c7fb8; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, sans-serif; @@ -619,7 +619,7 @@ font-size: 13.0px; } - + @@ -825,7 +825,7 @@ font-size: 13.0px; - + @@ -843,7 +843,7 @@ font-size: 13.0px; - + @@ -970,7 +970,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 dbfe3c59b..2642d411e 100644 --- a/docs/images/guides/layout/guideStylesConfigureBackgroundGrid_dark.svg +++ b/docs/images/guides/layout/guideStylesConfigureBackgroundGrid_dark.svg @@ -1,5 +1,5 @@ - + @@ -15,117 +15,117 @@ 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, sans-serif; @@ -134,7 +134,7 @@ font-size: 13.0px; } - + @@ -340,7 +340,7 @@ font-size: 13.0px; - + @@ -358,7 +358,7 @@ font-size: 13.0px; - + @@ -485,7 +485,7 @@ font-size: 13.0px; - + @@ -500,117 +500,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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx6 .axis-tooltip-text-y { +#_sample_helper_static_id_prefix_6 .axis-tooltip-text-y { fill: #2c7fb8; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, sans-serif; @@ -619,7 +619,7 @@ font-size: 13.0px; } - + @@ -825,7 +825,7 @@ font-size: 13.0px; - + @@ -843,7 +843,7 @@ font-size: 13.0px; - + @@ -970,7 +970,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 6dc39f183..95ea3bbec 100644 --- a/docs/images/guides/layout/guideStylesConfigureGridLine.svg +++ b/docs/images/guides/layout/guideStylesConfigureGridLine.svg @@ -1,5 +1,5 @@ - + @@ -15,117 +15,117 @@ 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, sans-serif; @@ -134,7 +134,7 @@ font-size: 13.0px; } - + @@ -283,7 +283,7 @@ font-size: 13.0px; - + @@ -529,7 +529,7 @@ font-size: 13.0px; - + @@ -556,7 +556,7 @@ font-size: 13.0px; - + @@ -571,117 +571,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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, sans-serif; @@ -690,7 +690,7 @@ font-size: 13.0px; } - + @@ -839,7 +839,7 @@ font-size: 13.0px; - + @@ -1085,7 +1085,7 @@ font-size: 13.0px; - + @@ -1112,7 +1112,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 ee27096f2..f143be1eb 100644 --- a/docs/images/guides/layout/guideStylesConfigureGridLine_dark.svg +++ b/docs/images/guides/layout/guideStylesConfigureGridLine_dark.svg @@ -1,5 +1,5 @@ - + @@ -15,117 +15,117 @@ 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, sans-serif; @@ -134,7 +134,7 @@ font-size: 13.0px; } - + @@ -283,7 +283,7 @@ font-size: 13.0px; - + @@ -529,7 +529,7 @@ font-size: 13.0px; - + @@ -556,7 +556,7 @@ font-size: 13.0px; - + @@ -571,117 +571,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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, sans-serif; @@ -690,7 +690,7 @@ font-size: 13.0px; } - + @@ -839,7 +839,7 @@ font-size: 13.0px; - + @@ -1085,7 +1085,7 @@ font-size: 13.0px; - + @@ -1112,7 +1112,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 f89d9c088..5b02d3584 100644 --- a/docs/images/guides/layout/guideStylesCoordFlip.svg +++ b/docs/images/guides/layout/guideStylesCoordFlip.svg @@ -1,5 +1,5 @@ - + @@ -15,117 +15,117 @@ 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, sans-serif; @@ -134,7 +134,7 @@ font-size: 13.0px; } - + @@ -168,7 +168,7 @@ font-size: 13.0px; - + @@ -192,7 +192,7 @@ font-size: 13.0px; - + @@ -393,7 +393,7 @@ font-size: 13.0px; - + @@ -408,117 +408,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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, sans-serif; @@ -527,7 +527,7 @@ font-size: 13.0px; } - + @@ -647,7 +647,7 @@ font-size: 13.0px; - + @@ -671,7 +671,7 @@ font-size: 13.0px; - + @@ -786,7 +786,7 @@ font-size: 13.0px; - + @@ -801,117 +801,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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, sans-serif; @@ -920,7 +920,7 @@ font-size: 13.0px; } - + @@ -1040,7 +1040,7 @@ font-size: 13.0px; - + @@ -1064,7 +1064,7 @@ font-size: 13.0px; - + @@ -1179,7 +1179,7 @@ font-size: 13.0px; - + @@ -1194,117 +1194,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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, sans-serif; @@ -1313,7 +1313,7 @@ font-size: 13.0px; } - + @@ -1433,7 +1433,7 @@ font-size: 13.0px; - + @@ -1457,7 +1457,7 @@ font-size: 13.0px; - + @@ -1584,7 +1584,7 @@ font-size: 13.0px; - + @@ -1599,117 +1599,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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, sans-serif; @@ -1718,7 +1718,7 @@ font-size: 13.0px; } - + @@ -1838,7 +1838,7 @@ font-size: 13.0px; - + @@ -1862,7 +1862,7 @@ font-size: 13.0px; - + @@ -1977,7 +1977,7 @@ font-size: 13.0px; - + @@ -1992,117 +1992,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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, sans-serif; @@ -2111,7 +2111,7 @@ font-size: 13.0px; } - + @@ -2231,7 +2231,7 @@ font-size: 13.0px; - + @@ -2255,7 +2255,7 @@ font-size: 13.0px; - + @@ -2370,7 +2370,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 30e9bce07..f4b8d3e3f 100644 --- a/docs/images/guides/layout/guideStylesCoordFlip_dark.svg +++ b/docs/images/guides/layout/guideStylesCoordFlip_dark.svg @@ -1,5 +1,5 @@ - + @@ -15,117 +15,117 @@ 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, sans-serif; @@ -134,7 +134,7 @@ font-size: 13.0px; } - + @@ -254,7 +254,7 @@ font-size: 13.0px; - + @@ -278,7 +278,7 @@ font-size: 13.0px; - + @@ -393,7 +393,7 @@ font-size: 13.0px; - + @@ -408,117 +408,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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, sans-serif; @@ -527,7 +527,7 @@ font-size: 13.0px; } - + @@ -647,7 +647,7 @@ font-size: 13.0px; - + @@ -671,7 +671,7 @@ font-size: 13.0px; - + @@ -786,7 +786,7 @@ font-size: 13.0px; - + @@ -801,117 +801,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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, sans-serif; @@ -920,7 +920,7 @@ font-size: 13.0px; } - + @@ -1040,7 +1040,7 @@ font-size: 13.0px; - + @@ -1064,7 +1064,7 @@ font-size: 13.0px; - + @@ -1179,7 +1179,7 @@ font-size: 13.0px; - + @@ -1194,117 +1194,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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, sans-serif; @@ -1313,7 +1313,7 @@ font-size: 13.0px; } - + @@ -1433,7 +1433,7 @@ font-size: 13.0px; - + @@ -1457,7 +1457,7 @@ font-size: 13.0px; - + @@ -1584,7 +1584,7 @@ font-size: 13.0px; - + @@ -1599,117 +1599,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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, sans-serif; @@ -1718,7 +1718,7 @@ font-size: 13.0px; } - + @@ -1838,7 +1838,7 @@ font-size: 13.0px; - + @@ -1862,7 +1862,7 @@ font-size: 13.0px; - + @@ -1977,7 +1977,7 @@ font-size: 13.0px; - + @@ -1992,117 +1992,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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, sans-serif; @@ -2111,7 +2111,7 @@ font-size: 13.0px; } - + @@ -2231,7 +2231,7 @@ font-size: 13.0px; - + @@ -2255,7 +2255,7 @@ font-size: 13.0px; - + @@ -2370,7 +2370,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 ecce49be9..9eda34663 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: Lucida Grande, sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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 9ebd005b8..0258e40ba 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: Lucida Grande, sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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 1b65a7bb5..5616bdd5a 100644 --- a/docs/images/guides/layout/guideStylesOnTopXAxis.svg +++ b/docs/images/guides/layout/guideStylesOnTopXAxis.svg @@ -1,5 +1,5 @@ - + @@ -15,117 +15,117 @@ 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, sans-serif; @@ -134,7 +134,7 @@ font-size: 13.0px; } - + @@ -290,7 +290,7 @@ font-size: 13.0px; - + @@ -308,7 +308,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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, sans-serif; @@ -557,7 +557,7 @@ font-size: 13.0px; } - + @@ -664,7 +664,7 @@ font-size: 13.0px; - + @@ -682,7 +682,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/layout/guideStylesOnTopXAxis_dark.svg b/docs/images/guides/layout/guideStylesOnTopXAxis_dark.svg index 67658eb09..cba7ffb66 100644 --- a/docs/images/guides/layout/guideStylesOnTopXAxis_dark.svg +++ b/docs/images/guides/layout/guideStylesOnTopXAxis_dark.svg @@ -1,5 +1,5 @@ - + @@ -15,117 +15,117 @@ 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, sans-serif; @@ -134,7 +134,7 @@ font-size: 13.0px; } - + @@ -290,7 +290,7 @@ font-size: 13.0px; - + @@ -308,7 +308,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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, sans-serif; @@ -557,7 +557,7 @@ font-size: 13.0px; } - + @@ -664,7 +664,7 @@ font-size: 13.0px; - + @@ -682,7 +682,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/layout/guideStylesOrangeCustomStyle.svg b/docs/images/guides/layout/guideStylesOrangeCustomStyle.svg index 116b073c2..d2b02e72e 100644 --- a/docs/images/guides/layout/guideStylesOrangeCustomStyle.svg +++ b/docs/images/guides/layout/guideStylesOrangeCustomStyle.svg @@ -1,5 +1,5 @@ - + @@ -15,117 +15,117 @@ 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, sans-serif; @@ -134,7 +134,7 @@ font-size: 13.0px; } - + @@ -301,7 +301,7 @@ font-size: 13.0px; - + @@ -547,7 +547,7 @@ font-size: 13.0px; - + @@ -576,7 +576,7 @@ font-size: 13.0px; - + @@ -591,117 +591,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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, sans-serif; @@ -710,7 +710,7 @@ font-size: 13.0px; } - + @@ -831,7 +831,7 @@ font-size: 13.0px; - + @@ -849,7 +849,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_dark.svg b/docs/images/guides/layout/guideStylesOrangeCustomStyle_dark.svg index 6a0b065df..e0221502b 100644 --- a/docs/images/guides/layout/guideStylesOrangeCustomStyle_dark.svg +++ b/docs/images/guides/layout/guideStylesOrangeCustomStyle_dark.svg @@ -1,5 +1,5 @@ - + @@ -15,117 +15,117 @@ 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, sans-serif; @@ -134,7 +134,7 @@ font-size: 13.0px; } - + @@ -301,7 +301,7 @@ font-size: 13.0px; - + @@ -547,7 +547,7 @@ font-size: 13.0px; - + @@ -576,7 +576,7 @@ font-size: 13.0px; - + @@ -591,117 +591,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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, sans-serif; @@ -710,7 +710,7 @@ font-size: 13.0px; } - + @@ -831,7 +831,7 @@ font-size: 13.0px; - + @@ -849,7 +849,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/guideStylesPanelGrid.svg b/docs/images/guides/layout/guideStylesPanelGrid.svg index 6b6b55b35..85fb01bc4 100644 --- a/docs/images/guides/layout/guideStylesPanelGrid.svg +++ b/docs/images/guides/layout/guideStylesPanelGrid.svg @@ -1,5 +1,5 @@ - + @@ -15,117 +15,117 @@ 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, sans-serif; @@ -134,7 +134,7 @@ font-size: 13.0px; } - + @@ -227,7 +227,7 @@ font-size: 13.0px; - + @@ -245,7 +245,7 @@ font-size: 13.0px; - + @@ -360,7 +360,7 @@ font-size: 13.0px; - + @@ -375,117 +375,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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, sans-serif; @@ -494,7 +494,7 @@ font-size: 13.0px; } - + @@ -607,7 +607,7 @@ font-size: 13.0px; - + @@ -853,7 +853,7 @@ font-size: 13.0px; - + @@ -880,7 +880,7 @@ font-size: 13.0px; - + @@ -895,117 +895,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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, sans-serif; @@ -1014,7 +1014,7 @@ font-size: 13.0px; } - + @@ -1145,7 +1145,7 @@ font-size: 13.0px; - + @@ -1391,7 +1391,7 @@ font-size: 13.0px; - + @@ -1421,7 +1421,7 @@ font-size: 13.0px; - + @@ -1436,117 +1436,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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, sans-serif; @@ -1555,7 +1555,7 @@ font-size: 13.0px; } - + @@ -1664,7 +1664,7 @@ font-size: 13.0px; - + @@ -1682,7 +1682,7 @@ font-size: 13.0px; - + @@ -1803,7 +1803,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 ee0e1ba8b..82012b727 100644 --- a/docs/images/guides/layout/guideStylesPanelGrid_dark.svg +++ b/docs/images/guides/layout/guideStylesPanelGrid_dark.svg @@ -1,5 +1,5 @@ - + @@ -15,117 +15,117 @@ 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, sans-serif; @@ -134,7 +134,7 @@ font-size: 13.0px; } - + @@ -227,7 +227,7 @@ font-size: 13.0px; - + @@ -245,7 +245,7 @@ font-size: 13.0px; - + @@ -360,7 +360,7 @@ font-size: 13.0px; - + @@ -375,117 +375,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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, sans-serif; @@ -494,7 +494,7 @@ font-size: 13.0px; } - + @@ -607,7 +607,7 @@ font-size: 13.0px; - + @@ -853,7 +853,7 @@ font-size: 13.0px; - + @@ -880,7 +880,7 @@ font-size: 13.0px; - + @@ -895,117 +895,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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, sans-serif; @@ -1014,7 +1014,7 @@ font-size: 13.0px; } - + @@ -1145,7 +1145,7 @@ font-size: 13.0px; - + @@ -1391,7 +1391,7 @@ font-size: 13.0px; - + @@ -1421,7 +1421,7 @@ font-size: 13.0px; - + @@ -1436,117 +1436,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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, sans-serif; @@ -1555,7 +1555,7 @@ font-size: 13.0px; } - + @@ -1664,7 +1664,7 @@ font-size: 13.0px; - + @@ -1682,7 +1682,7 @@ font-size: 13.0px; - + @@ -1803,7 +1803,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 56e154599..af1e75174 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: Lucida Grande, sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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 de2bd3d8b..bf1f0d46f 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: Lucida Grande, sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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 f4bee77a3..4c7a28c4a 100644 --- a/docs/images/guides/layout/guideStylesStripBackground.svg +++ b/docs/images/guides/layout/guideStylesStripBackground.svg @@ -1,5 +1,5 @@ - + @@ -15,117 +15,117 @@ 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, sans-serif; @@ -134,7 +134,7 @@ font-size: 13.0px; } - + @@ -284,7 +284,7 @@ font-size: 13.0px; - + @@ -298,7 +298,7 @@ font-size: 13.0px; - + @@ -418,7 +418,7 @@ font-size: 13.0px; - + @@ -436,7 +436,7 @@ font-size: 13.0px; - + @@ -570,7 +570,7 @@ font-size: 13.0px; - + @@ -585,117 +585,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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, sans-serif; @@ -704,7 +704,7 @@ font-size: 13.0px; } - + @@ -824,7 +824,7 @@ font-size: 13.0px; - + @@ -838,7 +838,7 @@ font-size: 13.0px; - + @@ -936,7 +936,7 @@ font-size: 13.0px; - + @@ -954,7 +954,7 @@ font-size: 13.0px; - + @@ -1076,7 +1076,7 @@ font-size: 13.0px; - + @@ -1091,117 +1091,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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, sans-serif; @@ -1210,7 +1210,7 @@ font-size: 13.0px; } - + @@ -1330,7 +1330,7 @@ font-size: 13.0px; - + @@ -1344,7 +1344,7 @@ font-size: 13.0px; - + @@ -1440,7 +1440,7 @@ font-size: 13.0px; - + @@ -1458,7 +1458,7 @@ font-size: 13.0px; - + @@ -1578,7 +1578,7 @@ font-size: 13.0px; - + @@ -1593,117 +1593,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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, sans-serif; @@ -1712,7 +1712,7 @@ font-size: 13.0px; } - + @@ -1832,7 +1832,7 @@ font-size: 13.0px; - + @@ -1846,7 +1846,7 @@ font-size: 13.0px; - + @@ -1937,7 +1937,7 @@ font-size: 13.0px; - + @@ -1955,7 +1955,7 @@ font-size: 13.0px; - + @@ -2070,7 +2070,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 75ea0eccf..052b5d367 100644 --- a/docs/images/guides/layout/guideStylesStripBackground_dark.svg +++ b/docs/images/guides/layout/guideStylesStripBackground_dark.svg @@ -1,5 +1,5 @@ - + @@ -15,117 +15,117 @@ 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, sans-serif; @@ -134,7 +134,7 @@ font-size: 13.0px; } - + @@ -284,7 +284,7 @@ font-size: 13.0px; - + @@ -298,7 +298,7 @@ font-size: 13.0px; - + @@ -418,7 +418,7 @@ font-size: 13.0px; - + @@ -436,7 +436,7 @@ font-size: 13.0px; - + @@ -570,7 +570,7 @@ font-size: 13.0px; - + @@ -585,117 +585,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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, sans-serif; @@ -704,7 +704,7 @@ font-size: 13.0px; } - + @@ -824,7 +824,7 @@ font-size: 13.0px; - + @@ -838,7 +838,7 @@ font-size: 13.0px; - + @@ -936,7 +936,7 @@ font-size: 13.0px; - + @@ -954,7 +954,7 @@ font-size: 13.0px; - + @@ -1076,7 +1076,7 @@ font-size: 13.0px; - + @@ -1091,117 +1091,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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, sans-serif; @@ -1210,7 +1210,7 @@ font-size: 13.0px; } - + @@ -1330,7 +1330,7 @@ font-size: 13.0px; - + @@ -1344,7 +1344,7 @@ font-size: 13.0px; - + @@ -1440,7 +1440,7 @@ font-size: 13.0px; - + @@ -1458,7 +1458,7 @@ font-size: 13.0px; - + @@ -1578,7 +1578,7 @@ font-size: 13.0px; - + @@ -1593,117 +1593,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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, sans-serif; @@ -1712,7 +1712,7 @@ font-size: 13.0px; } - + @@ -1832,7 +1832,7 @@ font-size: 13.0px; - + @@ -1846,7 +1846,7 @@ font-size: 13.0px; - + @@ -1937,7 +1937,7 @@ font-size: 13.0px; - + @@ -1955,7 +1955,7 @@ font-size: 13.0px; - + @@ -2070,7 +2070,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 53582c717..e0ff2d33c 100644 --- a/docs/images/guides/layout/guideStylesTextLegendStrip.svg +++ b/docs/images/guides/layout/guideStylesTextLegendStrip.svg @@ -1,5 +1,5 @@ - + @@ -15,117 +15,117 @@ 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, sans-serif; @@ -134,7 +134,7 @@ font-size: 13.0px; } - + @@ -254,7 +254,7 @@ font-size: 13.0px; - + @@ -268,7 +268,7 @@ font-size: 13.0px; - + @@ -364,7 +364,7 @@ font-size: 13.0px; - + @@ -382,7 +382,7 @@ font-size: 13.0px; - + @@ -502,7 +502,7 @@ font-size: 13.0px; - + @@ -517,117 +517,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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, sans-serif; @@ -636,7 +636,7 @@ font-size: 13.0px; } - + @@ -756,7 +756,7 @@ font-size: 13.0px; - + @@ -770,7 +770,7 @@ font-size: 13.0px; - + @@ -866,7 +866,7 @@ font-size: 13.0px; - + @@ -884,7 +884,7 @@ font-size: 13.0px; - + @@ -1004,7 +1004,7 @@ font-size: 13.0px; - + @@ -1019,117 +1019,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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, sans-serif; @@ -1138,7 +1138,7 @@ font-size: 13.0px; } - + @@ -1258,7 +1258,7 @@ font-size: 13.0px; - + @@ -1272,7 +1272,7 @@ font-size: 13.0px; - + @@ -1368,7 +1368,7 @@ font-size: 13.0px; - + @@ -1386,7 +1386,7 @@ font-size: 13.0px; - + @@ -1506,7 +1506,7 @@ font-size: 13.0px; - + @@ -1521,117 +1521,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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, sans-serif; @@ -1640,7 +1640,7 @@ font-size: 13.0px; } - + @@ -1760,7 +1760,7 @@ font-size: 13.0px; - + @@ -1774,7 +1774,7 @@ font-size: 13.0px; - + @@ -1870,7 +1870,7 @@ font-size: 13.0px; - + @@ -1888,7 +1888,7 @@ font-size: 13.0px; - + @@ -2008,7 +2008,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 c40bb93b8..efb8e151e 100644 --- a/docs/images/guides/layout/guideStylesTextLegendStrip_dark.svg +++ b/docs/images/guides/layout/guideStylesTextLegendStrip_dark.svg @@ -1,5 +1,5 @@ - + @@ -15,117 +15,117 @@ 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, sans-serif; @@ -134,7 +134,7 @@ font-size: 13.0px; } - + @@ -254,7 +254,7 @@ font-size: 13.0px; - + @@ -268,7 +268,7 @@ font-size: 13.0px; - + @@ -364,7 +364,7 @@ font-size: 13.0px; - + @@ -382,7 +382,7 @@ font-size: 13.0px; - + @@ -502,7 +502,7 @@ font-size: 13.0px; - + @@ -517,117 +517,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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, sans-serif; @@ -636,7 +636,7 @@ font-size: 13.0px; } - + @@ -756,7 +756,7 @@ font-size: 13.0px; - + @@ -770,7 +770,7 @@ font-size: 13.0px; - + @@ -866,7 +866,7 @@ font-size: 13.0px; - + @@ -884,7 +884,7 @@ font-size: 13.0px; - + @@ -1004,7 +1004,7 @@ font-size: 13.0px; - + @@ -1019,117 +1019,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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, sans-serif; @@ -1138,7 +1138,7 @@ font-size: 13.0px; } - + @@ -1258,7 +1258,7 @@ font-size: 13.0px; - + @@ -1272,7 +1272,7 @@ font-size: 13.0px; - + @@ -1368,7 +1368,7 @@ font-size: 13.0px; - + @@ -1386,7 +1386,7 @@ font-size: 13.0px; - + @@ -1506,7 +1506,7 @@ font-size: 13.0px; - + @@ -1521,117 +1521,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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, sans-serif; @@ -1640,7 +1640,7 @@ font-size: 13.0px; } - + @@ -1760,7 +1760,7 @@ font-size: 13.0px; - + @@ -1774,7 +1774,7 @@ font-size: 13.0px; - + @@ -1870,7 +1870,7 @@ font-size: 13.0px; - + @@ -1888,7 +1888,7 @@ font-size: 13.0px; - + @@ -2008,7 +2008,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 873fcbb2c..fee1bd961 100644 --- a/docs/images/guides/layout/guideStylesTextTitleLegend.svg +++ b/docs/images/guides/layout/guideStylesTextTitleLegend.svg @@ -1,5 +1,5 @@ - + @@ -15,117 +15,117 @@ 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, sans-serif; @@ -134,7 +134,7 @@ font-size: 13.0px; } - + @@ -245,7 +245,7 @@ font-size: 13.0px; - + @@ -263,7 +263,7 @@ font-size: 13.0px; - + @@ -378,7 +378,7 @@ font-size: 13.0px; - + @@ -393,117 +393,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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, sans-serif; @@ -512,7 +512,7 @@ font-size: 13.0px; } - + @@ -623,7 +623,7 @@ font-size: 13.0px; - + @@ -641,7 +641,7 @@ font-size: 13.0px; - + @@ -756,7 +756,7 @@ font-size: 13.0px; - + @@ -771,117 +771,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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, sans-serif; @@ -890,7 +890,7 @@ font-size: 13.0px; } - + @@ -1001,7 +1001,7 @@ font-size: 13.0px; - + @@ -1019,7 +1019,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; } -#xXxprefixXx10 .plot-title { +#_sample_helper_static_id_prefix_10 .plot-title { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, sans-serif; @@ -1268,7 +1268,7 @@ font-size: 13.0px; } - + @@ -1379,7 +1379,7 @@ font-size: 13.0px; - + @@ -1397,7 +1397,7 @@ font-size: 13.0px; - + @@ -1512,7 +1512,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 4dc5bfaa8..ba0f5ab6c 100644 --- a/docs/images/guides/layout/guideStylesTextTitleLegend_dark.svg +++ b/docs/images/guides/layout/guideStylesTextTitleLegend_dark.svg @@ -1,5 +1,5 @@ - + @@ -15,117 +15,117 @@ 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, sans-serif; @@ -134,7 +134,7 @@ font-size: 13.0px; } - + @@ -245,7 +245,7 @@ font-size: 13.0px; - + @@ -263,7 +263,7 @@ font-size: 13.0px; - + @@ -378,7 +378,7 @@ font-size: 13.0px; - + @@ -393,117 +393,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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, sans-serif; @@ -512,7 +512,7 @@ font-size: 13.0px; } - + @@ -623,7 +623,7 @@ font-size: 13.0px; - + @@ -641,7 +641,7 @@ font-size: 13.0px; - + @@ -756,7 +756,7 @@ font-size: 13.0px; - + @@ -771,117 +771,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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, sans-serif; @@ -890,7 +890,7 @@ font-size: 13.0px; } - + @@ -1001,7 +1001,7 @@ font-size: 13.0px; - + @@ -1019,7 +1019,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; } -#xXxprefixXx10 .plot-title { +#_sample_helper_static_id_prefix_10 .plot-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, sans-serif; @@ -1268,7 +1268,7 @@ font-size: 13.0px; } - + @@ -1379,7 +1379,7 @@ font-size: 13.0px; - + @@ -1397,7 +1397,7 @@ font-size: 13.0px; - + @@ -1512,7 +1512,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 86fd4781f..05731fd5b 100644 --- a/docs/images/guides/layout/guideStylesTooltipAndBackground.svg +++ b/docs/images/guides/layout/guideStylesTooltipAndBackground.svg @@ -1,5 +1,5 @@ - + @@ -15,117 +15,117 @@ 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, sans-serif; @@ -134,7 +134,7 @@ font-size: 13.0px; } - + @@ -174,7 +174,7 @@ font-size: 13.0px; - + @@ -420,7 +420,7 @@ font-size: 13.0px; - + @@ -649,7 +649,7 @@ font-size: 13.0px; - + @@ -664,117 +664,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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, sans-serif; @@ -783,7 +783,7 @@ font-size: 13.0px; } - + @@ -934,7 +934,7 @@ font-size: 13.0px; - + @@ -1180,7 +1180,7 @@ font-size: 13.0px; - + @@ -1312,7 +1312,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 5017e6b63..baa536a9d 100644 --- a/docs/images/guides/layout/guideStylesTooltipAndBackground_dark.svg +++ b/docs/images/guides/layout/guideStylesTooltipAndBackground_dark.svg @@ -1,5 +1,5 @@ - + @@ -15,117 +15,117 @@ 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, sans-serif; @@ -134,7 +134,7 @@ font-size: 13.0px; } - + @@ -283,7 +283,7 @@ font-size: 13.0px; - + @@ -529,7 +529,7 @@ font-size: 13.0px; - + @@ -649,7 +649,7 @@ font-size: 13.0px; - + @@ -664,117 +664,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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, sans-serif; @@ -783,7 +783,7 @@ font-size: 13.0px; } - + @@ -934,7 +934,7 @@ font-size: 13.0px; - + @@ -1180,7 +1180,7 @@ font-size: 13.0px; - + @@ -1312,7 +1312,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 e9221394a..03b1681a8 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; 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: Lucida Grande, 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: Lucida Grande, sans-serif; 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: Lucida Grande, sans-serif; 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: Lucida Grande, 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: Lucida Grande, sans-serif; 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: Lucida Grande, sans-serif; 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: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 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: Lucida Grande, sans-serif; font-size: 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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 84e6ad0b0..51eafc157 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; 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: Lucida Grande, 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: Lucida Grande, sans-serif; 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: Lucida Grande, sans-serif; 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: Lucida Grande, 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: Lucida Grande, sans-serif; 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: Lucida Grande, sans-serif; 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: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 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: Lucida Grande, sans-serif; font-size: 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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 b5e4c4490..f47d92cf7 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_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: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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 86b3dc320..24926628f 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_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: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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 02740eeda..31a2413b0 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: Lucida Grande, sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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 a2e64c724..83d12f81c 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: Lucida Grande, sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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 3a8f01aad..f6905443f 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: Lucida Grande, sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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 ee818ef9d..bd9cdc2b1 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: Lucida Grande, sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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 442fe299f..1df04c3f1 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: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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 0e186c099..01c05cf99 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: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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 31a1dc7f4..88668992b 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: Lucida Grande, sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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 e1cc67585..30fc7579d 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: Lucida Grande, sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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 842e66f73..9ff1b29e3 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: Lucida Grande, sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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 2ffdf409c..532f16bda 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: Lucida Grande, sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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 56f407ee8..b20d41a8c 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: Lucida Grande, sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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 8db6d4225..32bd76f7f 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: Lucida Grande, sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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 49359db9f..f69139cae 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: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #008000; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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 01d9f1121..5b732f2e8 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: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #008000; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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 e8867498f..76dfcfb2d 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: Lucida Grande, sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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 1361fd467..dbcc0264d 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: Lucida Grande, sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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 f1a38d3bd..31f7d0068 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: Lucida Grande, sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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 7887cf29e..4aacae9de 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: Lucida Grande, sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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 2468f37a8..926dd024e 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: Lucida Grande, sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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 94a3bdd7f..2fd22e4b4 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: Lucida Grande, sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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 52d577a40..ed6caa885 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: Lucida Grande, sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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 903c11946..04c19c088 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: Lucida Grande, sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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 72ff99c0e..336950109 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: Lucida Grande, sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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 7f3d9ea1f..ae4f89a6c 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: Lucida Grande, sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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 dad92b71d..26353ee65 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: Lucida Grande, sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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 a79e70f54..e322e25e5 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: Lucida Grande, sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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 6bf812cee..fa2ec1b4e 100644 --- a/docs/images/guides/multiplot/guideBunchCombineWithStyles.svg +++ b/docs/images/guides/multiplot/guideBunchCombineWithStyles.svg @@ -11,117 +11,117 @@ text { text-rendering: optimizeLegibility; } -#xXxprefixXx0 .plot-title { +#_sample_helper_static_id_prefix_0 .plot-title { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, sans-serif; @@ -141,117 +141,117 @@ font-size: 13.0px; text { text-rendering: optimizeLegibility; } -#xXxprefixXx3 .plot-title { +#_sample_helper_static_id_prefix_3 .plot-title { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 16.0px; } -#xXxprefixXx3 .plot-subtitle { +#_sample_helper_static_id_prefix_3 .plot-subtitle { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx3 .plot-caption { +#_sample_helper_static_id_prefix_3 .plot-caption { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx3 .hyperlink-element { +#_sample_helper_static_id_prefix_3 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx3 .legend-title { +#_sample_helper_static_id_prefix_3 .legend-title { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx3 .legend-item { +#_sample_helper_static_id_prefix_3 .legend-item { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx3 .axis-title-x { +#_sample_helper_static_id_prefix_3 .axis-title-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx3 .axis-text-x { +#_sample_helper_static_id_prefix_3 .axis-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx3 .axis-title-y { +#_sample_helper_static_id_prefix_3 .axis-title-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx3 .axis-text-y { +#_sample_helper_static_id_prefix_3 .axis-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx3 .facet-strip-text-x { +#_sample_helper_static_id_prefix_3 .facet-strip-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx3 .facet-strip-text-y { +#_sample_helper_static_id_prefix_3 .facet-strip-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, sans-serif; @@ -261,7 +261,7 @@ font-size: 13.0px; - + @@ -354,7 +354,7 @@ font-size: 13.0px; - + @@ -402,7 +402,7 @@ font-size: 13.0px; - + @@ -419,10 +419,10 @@ font-size: 13.0px; - + - + @@ -481,7 +481,7 @@ font-size: 13.0px; - + @@ -893,7 +893,7 @@ font-size: 13.0px; - + @@ -915,7 +915,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 9e3c5b632..cb9e29772 100644 --- a/docs/images/guides/multiplot/guideBunchCombineWithStyles_dark.svg +++ b/docs/images/guides/multiplot/guideBunchCombineWithStyles_dark.svg @@ -11,117 +11,117 @@ text { text-rendering: optimizeLegibility; } -#xXxprefixXx0 .plot-title { +#_sample_helper_static_id_prefix_0 .plot-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, sans-serif; @@ -141,117 +141,117 @@ font-size: 13.0px; text { text-rendering: optimizeLegibility; } -#xXxprefixXx3 .plot-title { +#_sample_helper_static_id_prefix_3 .plot-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 16.0px; } -#xXxprefixXx3 .plot-subtitle { +#_sample_helper_static_id_prefix_3 .plot-subtitle { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx3 .plot-caption { +#_sample_helper_static_id_prefix_3 .plot-caption { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx3 .hyperlink-element { +#_sample_helper_static_id_prefix_3 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx3 .legend-title { +#_sample_helper_static_id_prefix_3 .legend-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx3 .legend-item { +#_sample_helper_static_id_prefix_3 .legend-item { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx3 .axis-title-x { +#_sample_helper_static_id_prefix_3 .axis-title-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx3 .axis-text-x { +#_sample_helper_static_id_prefix_3 .axis-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx3 .axis-title-y { +#_sample_helper_static_id_prefix_3 .axis-title-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx3 .axis-text-y { +#_sample_helper_static_id_prefix_3 .axis-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx3 .facet-strip-text-x { +#_sample_helper_static_id_prefix_3 .facet-strip-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx3 .facet-strip-text-y { +#_sample_helper_static_id_prefix_3 .facet-strip-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, sans-serif; @@ -261,7 +261,7 @@ font-size: 13.0px; - + @@ -354,7 +354,7 @@ font-size: 13.0px; - + @@ -402,7 +402,7 @@ font-size: 13.0px; - + @@ -419,10 +419,10 @@ font-size: 13.0px; - + - + @@ -481,7 +481,7 @@ font-size: 13.0px; - + @@ -893,7 +893,7 @@ font-size: 13.0px; - + @@ -915,7 +915,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 b7415b100..c519dc132 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: Lucida Grande, sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, sans-serif; @@ -129,7 +129,7 @@ font-size: 13.0px; } - + @@ -166,7 +166,7 @@ font-size: 13.0px; - + @@ -178,7 +178,7 @@ font-size: 13.0px; - + @@ -228,7 +228,7 @@ font-size: 13.0px; - + @@ -240,7 +240,7 @@ font-size: 13.0px; - + @@ -290,7 +290,7 @@ font-size: 13.0px; - + @@ -405,7 +405,7 @@ font-size: 13.0px; - + @@ -464,7 +464,7 @@ font-size: 13.0px; - + @@ -482,7 +482,7 @@ font-size: 13.0px; - + @@ -532,7 +532,7 @@ font-size: 13.0px; - + @@ -548,7 +548,7 @@ font-size: 13.0px; - + @@ -598,7 +598,7 @@ font-size: 13.0px; - + @@ -683,7 +683,7 @@ font-size: 13.0px; - + @@ -742,7 +742,7 @@ font-size: 13.0px; - + @@ -754,7 +754,7 @@ font-size: 13.0px; - + @@ -804,7 +804,7 @@ font-size: 13.0px; - + @@ -819,7 +819,7 @@ font-size: 13.0px; - + @@ -869,7 +869,7 @@ font-size: 13.0px; - + @@ -881,7 +881,7 @@ font-size: 13.0px; - + @@ -940,7 +940,7 @@ font-size: 13.0px; - + @@ -1021,7 +1021,7 @@ font-size: 13.0px; - + @@ -1071,7 +1071,7 @@ font-size: 13.0px; - + @@ -1144,7 +1144,7 @@ font-size: 13.0px; - + @@ -1194,7 +1194,7 @@ font-size: 13.0px; - + @@ -1275,7 +1275,7 @@ font-size: 13.0px; - + @@ -1352,7 +1352,7 @@ font-size: 13.0px; - + @@ -1368,7 +1368,7 @@ font-size: 13.0px; - + @@ -1436,7 +1436,7 @@ font-size: 13.0px; - + @@ -1448,7 +1448,7 @@ font-size: 13.0px; - + @@ -1516,7 +1516,7 @@ font-size: 13.0px; - + @@ -1528,7 +1528,7 @@ font-size: 13.0px; - + @@ -1633,6 +1633,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 38eb4ede0..9bcf2aa1e 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: Lucida Grande, sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, sans-serif; @@ -129,7 +129,7 @@ font-size: 13.0px; } - + @@ -166,7 +166,7 @@ font-size: 13.0px; - + @@ -178,7 +178,7 @@ font-size: 13.0px; - + @@ -228,7 +228,7 @@ font-size: 13.0px; - + @@ -240,7 +240,7 @@ font-size: 13.0px; - + @@ -290,7 +290,7 @@ font-size: 13.0px; - + @@ -405,7 +405,7 @@ font-size: 13.0px; - + @@ -464,7 +464,7 @@ font-size: 13.0px; - + @@ -482,7 +482,7 @@ font-size: 13.0px; - + @@ -532,7 +532,7 @@ font-size: 13.0px; - + @@ -548,7 +548,7 @@ font-size: 13.0px; - + @@ -598,7 +598,7 @@ font-size: 13.0px; - + @@ -683,7 +683,7 @@ font-size: 13.0px; - + @@ -742,7 +742,7 @@ font-size: 13.0px; - + @@ -754,7 +754,7 @@ font-size: 13.0px; - + @@ -804,7 +804,7 @@ font-size: 13.0px; - + @@ -819,7 +819,7 @@ font-size: 13.0px; - + @@ -869,7 +869,7 @@ font-size: 13.0px; - + @@ -881,7 +881,7 @@ font-size: 13.0px; - + @@ -940,7 +940,7 @@ font-size: 13.0px; - + @@ -1021,7 +1021,7 @@ font-size: 13.0px; - + @@ -1071,7 +1071,7 @@ font-size: 13.0px; - + @@ -1144,7 +1144,7 @@ font-size: 13.0px; - + @@ -1194,7 +1194,7 @@ font-size: 13.0px; - + @@ -1275,7 +1275,7 @@ font-size: 13.0px; - + @@ -1352,7 +1352,7 @@ font-size: 13.0px; - + @@ -1368,7 +1368,7 @@ font-size: 13.0px; - + @@ -1436,7 +1436,7 @@ font-size: 13.0px; - + @@ -1448,7 +1448,7 @@ font-size: 13.0px; - + @@ -1516,7 +1516,7 @@ font-size: 13.0px; - + @@ -1528,7 +1528,7 @@ font-size: 13.0px; - + @@ -1633,6 +1633,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 b51fe0159..afb0ee004 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: Lucida Grande, sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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 914f7929d..4237c92c5 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: Lucida Grande, sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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 b35c51fe7..1bbc44a90 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: Lucida Grande, sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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 72163bd83..3e8f35485 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: Lucida Grande, sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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 58b984f6a..a7e444e93 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: Lucida Grande, sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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 b71fb9999..8fddcff6a 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: Lucida Grande, sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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 daf5291a5..13efb3a1c 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: Lucida Grande, sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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 689391dd9..4a09ec434 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: Lucida Grande, sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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 650226632..cb736ee79 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: Lucida Grande, sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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 5f0e9be86..9c8f51857 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: Lucida Grande, sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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 585b2e931..5ba7dda43 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: Lucida Grande, sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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; - + @@ -245,7 +245,7 @@ font-size: 13.0px; - + @@ -326,7 +326,7 @@ font-size: 13.0px; - + @@ -378,7 +378,7 @@ font-size: 13.0px; - + @@ -390,7 +390,7 @@ font-size: 13.0px; - + @@ -442,7 +442,7 @@ font-size: 13.0px; - + @@ -460,7 +460,7 @@ font-size: 13.0px; - + @@ -512,7 +512,7 @@ font-size: 13.0px; - + @@ -524,7 +524,7 @@ font-size: 13.0px; - + @@ -594,7 +594,7 @@ font-size: 13.0px; - + @@ -606,7 +606,7 @@ font-size: 13.0px; - + @@ -658,7 +658,7 @@ font-size: 13.0px; - + @@ -731,7 +731,7 @@ font-size: 13.0px; - + @@ -783,7 +783,7 @@ font-size: 13.0px; - + @@ -798,7 +798,7 @@ font-size: 13.0px; - + @@ -850,7 +850,7 @@ font-size: 13.0px; - + @@ -866,7 +866,7 @@ font-size: 13.0px; - + @@ -918,7 +918,7 @@ font-size: 13.0px; - + @@ -930,7 +930,7 @@ font-size: 13.0px; - + @@ -1009,7 +1009,7 @@ font-size: 13.0px; - + @@ -1021,7 +1021,7 @@ font-size: 13.0px; - + @@ -1082,7 +1082,7 @@ font-size: 13.0px; - + @@ -1163,7 +1163,7 @@ font-size: 13.0px; - + @@ -1224,7 +1224,7 @@ font-size: 13.0px; - + @@ -1236,7 +1236,7 @@ font-size: 13.0px; - + @@ -1297,7 +1297,7 @@ font-size: 13.0px; - + @@ -1382,7 +1382,7 @@ font-size: 13.0px; - + @@ -1443,7 +1443,7 @@ font-size: 13.0px; - + @@ -1558,7 +1558,7 @@ font-size: 13.0px; - + @@ -1663,6 +1663,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 da97e5b77..cc4588136 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: Lucida Grande, sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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; - + @@ -245,7 +245,7 @@ font-size: 13.0px; - + @@ -326,7 +326,7 @@ font-size: 13.0px; - + @@ -378,7 +378,7 @@ font-size: 13.0px; - + @@ -390,7 +390,7 @@ font-size: 13.0px; - + @@ -442,7 +442,7 @@ font-size: 13.0px; - + @@ -460,7 +460,7 @@ font-size: 13.0px; - + @@ -512,7 +512,7 @@ font-size: 13.0px; - + @@ -524,7 +524,7 @@ font-size: 13.0px; - + @@ -594,7 +594,7 @@ font-size: 13.0px; - + @@ -606,7 +606,7 @@ font-size: 13.0px; - + @@ -658,7 +658,7 @@ font-size: 13.0px; - + @@ -731,7 +731,7 @@ font-size: 13.0px; - + @@ -783,7 +783,7 @@ font-size: 13.0px; - + @@ -798,7 +798,7 @@ font-size: 13.0px; - + @@ -850,7 +850,7 @@ font-size: 13.0px; - + @@ -866,7 +866,7 @@ font-size: 13.0px; - + @@ -918,7 +918,7 @@ font-size: 13.0px; - + @@ -930,7 +930,7 @@ font-size: 13.0px; - + @@ -1009,7 +1009,7 @@ font-size: 13.0px; - + @@ -1021,7 +1021,7 @@ font-size: 13.0px; - + @@ -1082,7 +1082,7 @@ font-size: 13.0px; - + @@ -1163,7 +1163,7 @@ font-size: 13.0px; - + @@ -1224,7 +1224,7 @@ font-size: 13.0px; - + @@ -1236,7 +1236,7 @@ font-size: 13.0px; - + @@ -1297,7 +1297,7 @@ font-size: 13.0px; - + @@ -1382,7 +1382,7 @@ font-size: 13.0px; - + @@ -1443,7 +1443,7 @@ font-size: 13.0px; - + @@ -1558,7 +1558,7 @@ font-size: 13.0px; - + @@ -1663,6 +1663,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 54b0c3614..784059904 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: Lucida Grande, sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, sans-serif; @@ -129,7 +129,7 @@ font-size: 13.0px; } - + @@ -191,7 +191,7 @@ font-size: 13.0px; - + @@ -282,7 +282,7 @@ font-size: 13.0px; - + @@ -361,7 +361,7 @@ font-size: 13.0px; - + @@ -441,7 +441,7 @@ font-size: 13.0px; - + @@ -554,7 +554,7 @@ font-size: 13.0px; - + @@ -811,7 +811,7 @@ font-size: 13.0px; - + @@ -909,6 +909,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 61e22ea8b..2f713f910 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: Lucida Grande, sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, sans-serif; @@ -129,7 +129,7 @@ font-size: 13.0px; } - + @@ -191,7 +191,7 @@ font-size: 13.0px; - + @@ -282,7 +282,7 @@ font-size: 13.0px; - + @@ -361,7 +361,7 @@ font-size: 13.0px; - + @@ -441,7 +441,7 @@ font-size: 13.0px; - + @@ -554,7 +554,7 @@ font-size: 13.0px; - + @@ -811,7 +811,7 @@ font-size: 13.0px; - + @@ -909,6 +909,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 d026deac8..1a69c254f 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: Lucida Grande, sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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 a6f2b6377..7e243e228 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: Lucida Grande, sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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 55a0fd4e0..0de8d4765 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: Lucida Grande, sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, sans-serif; @@ -129,7 +129,7 @@ font-size: 13.0px; } - + @@ -191,7 +191,7 @@ font-size: 13.0px; - + @@ -282,7 +282,7 @@ font-size: 13.0px; - + @@ -359,7 +359,7 @@ font-size: 13.0px; - + @@ -439,7 +439,7 @@ font-size: 13.0px; - + @@ -552,7 +552,7 @@ font-size: 13.0px; - + @@ -809,7 +809,7 @@ font-size: 13.0px; - + @@ -907,6 +907,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 dfc3cc526..abfea41f6 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: Lucida Grande, sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, sans-serif; @@ -129,7 +129,7 @@ font-size: 13.0px; } - + @@ -191,7 +191,7 @@ font-size: 13.0px; - + @@ -282,7 +282,7 @@ font-size: 13.0px; - + @@ -359,7 +359,7 @@ font-size: 13.0px; - + @@ -439,7 +439,7 @@ font-size: 13.0px; - + @@ -552,7 +552,7 @@ font-size: 13.0px; - + @@ -809,7 +809,7 @@ font-size: 13.0px; - + @@ -907,6 +907,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 6eae1d020..74bb1f3e8 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: Lucida Grande, sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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 a896fd6d7..3f7ce47a6 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: Lucida Grande, sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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 14b0dfc59..3082368c1 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: Lucida Grande, sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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 a5e1e463d..43c826c9c 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: Lucida Grande, sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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 ad6e4670f..6eab043ad 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: Lucida Grande, sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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 859786751..c83e5f999 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: Lucida Grande, sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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 453f740b3..588a95b5d 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: Lucida Grande, sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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 40fc0fd64..8eb26d584 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: Lucida Grande, sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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 4c5f514a1..c97d49c68 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: Lucida Grande, sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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 32eb5ccb9..90ad01ada 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: Lucida Grande, sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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 efc561eea..dbf20a83b 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: Lucida Grande, sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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 c9332f865..e612e9396 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: Lucida Grande, sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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 4194efe1b..2de9ab234 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: Lucida Grande, sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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 a308176aa..3fbfffe89 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: Lucida Grande, sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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 2f867f457..db5308ab4 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: Lucida Grande, sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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 c126eb926..e94e4cd0d 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: Lucida Grande, sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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 e6df4c5e8..e11858201 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: Lucida Grande, sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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 eaed20fa6..c3f68c094 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: Lucida Grande, sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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 c81657867..570bc6d61 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: Lucida Grande, sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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 4731a200f..3d466f515 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: Lucida Grande, sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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 3ccab0848..966a4841b 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: Lucida Grande, sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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 40aa70483..b025f149c 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: Lucida Grande, sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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 938e043f9..0bdb87e98 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: Lucida Grande, sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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 d35e39570..34565ccf2 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: Lucida Grande, sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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 cbdaf6dcc..17a977447 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: Lucida Grande, sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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 10d732cbf..f682443e3 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: Lucida Grande, sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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 b4346eadb..a948b037e 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: Lucida Grande, sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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 b7f4907ab..8000bfd68 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: Lucida Grande, sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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 1162858db..fda7dcca0 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: Lucida Grande, sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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 220444fa7..34dda072e 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: Lucida Grande, sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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 558cbfe31..4da73721f 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: Lucida Grande, sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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 36275a0dd..48fa16bff 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: Lucida Grande, sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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 ae3a1c32a..916280691 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: Lucida Grande, sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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 c9f28dd04..82ee328aa 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: Lucida Grande, sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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 7fd373ef6..cc7131ce0 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: Lucida Grande, sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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 412c22347..fcae6b04a 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: Lucida Grande, sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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 73645ecc3..2b9f6a8da 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: Lucida Grande, sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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 c0b2a0224..ad17b9a58 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: Lucida Grande, sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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 b675def66..39fa3023f 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: Lucida Grande, sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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 6c06010d6..1bcb565ac 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: Lucida Grande, sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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 a47002501..36620d242 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: Lucida Grande, sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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 de5cf137b..0015d2f56 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: Lucida Grande, sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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 b5e599f3a..708e983c4 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: Lucida Grande, sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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 daca5f224..a3b9860ac 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: Lucida Grande, sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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 46a86a882..4e5ed1eee 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: Lucida Grande, sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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 210c1e653..b30e0fa37 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: Lucida Grande, sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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 d81ab814a..fb012b4be 100644 --- a/docs/images/guides/quickStartGuide/experimentalLayoutPlotAllStyles.svg +++ b/docs/images/guides/quickStartGuide/experimentalLayoutPlotAllStyles.svg @@ -1,5 +1,5 @@ - + @@ -15,117 +15,117 @@ 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, sans-serif; @@ -134,7 +134,7 @@ font-size: 13.0px; } - + @@ -237,7 +237,7 @@ font-size: 13.0px; - + @@ -483,7 +483,7 @@ font-size: 13.0px; - + @@ -510,7 +510,7 @@ font-size: 13.0px; - + @@ -525,117 +525,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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, sans-serif; @@ -644,7 +644,7 @@ font-size: 13.0px; } - + @@ -781,7 +781,7 @@ font-size: 13.0px; - + @@ -1027,7 +1027,7 @@ font-size: 13.0px; - + @@ -1056,7 +1056,7 @@ font-size: 13.0px; - + @@ -1071,117 +1071,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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, sans-serif; @@ -1190,7 +1190,7 @@ font-size: 13.0px; } - + @@ -1327,7 +1327,7 @@ font-size: 13.0px; - + @@ -1573,7 +1573,7 @@ font-size: 13.0px; - + @@ -1602,7 +1602,7 @@ font-size: 13.0px; - + @@ -1617,117 +1617,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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, sans-serif; @@ -1736,7 +1736,7 @@ font-size: 13.0px; } - + @@ -1853,7 +1853,7 @@ font-size: 13.0px; - + @@ -2099,7 +2099,7 @@ font-size: 13.0px; - + @@ -2126,7 +2126,7 @@ font-size: 13.0px; - + @@ -2141,117 +2141,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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, sans-serif; @@ -2260,7 +2260,7 @@ font-size: 13.0px; } - + @@ -2373,7 +2373,7 @@ font-size: 13.0px; - + @@ -2619,7 +2619,7 @@ font-size: 13.0px; - + @@ -2646,7 +2646,7 @@ font-size: 13.0px; - + @@ -2661,117 +2661,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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, sans-serif; @@ -2780,7 +2780,7 @@ font-size: 13.0px; } - + @@ -2921,7 +2921,7 @@ font-size: 13.0px; - + @@ -3167,7 +3167,7 @@ font-size: 13.0px; - + @@ -3196,7 +3196,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 a8ac80a81..57d96a722 100644 --- a/docs/images/guides/quickStartGuide/experimentalLayoutPlotAllStyles_dark.svg +++ b/docs/images/guides/quickStartGuide/experimentalLayoutPlotAllStyles_dark.svg @@ -1,5 +1,5 @@ - + @@ -15,117 +15,117 @@ 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, sans-serif; @@ -134,7 +134,7 @@ font-size: 13.0px; } - + @@ -237,7 +237,7 @@ font-size: 13.0px; - + @@ -483,7 +483,7 @@ font-size: 13.0px; - + @@ -510,7 +510,7 @@ font-size: 13.0px; - + @@ -525,117 +525,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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, sans-serif; @@ -644,7 +644,7 @@ font-size: 13.0px; } - + @@ -781,7 +781,7 @@ font-size: 13.0px; - + @@ -1027,7 +1027,7 @@ font-size: 13.0px; - + @@ -1056,7 +1056,7 @@ font-size: 13.0px; - + @@ -1071,117 +1071,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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, sans-serif; @@ -1190,7 +1190,7 @@ font-size: 13.0px; } - + @@ -1327,7 +1327,7 @@ font-size: 13.0px; - + @@ -1573,7 +1573,7 @@ font-size: 13.0px; - + @@ -1602,7 +1602,7 @@ font-size: 13.0px; - + @@ -1617,117 +1617,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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, sans-serif; @@ -1736,7 +1736,7 @@ font-size: 13.0px; } - + @@ -1853,7 +1853,7 @@ font-size: 13.0px; - + @@ -2099,7 +2099,7 @@ font-size: 13.0px; - + @@ -2126,7 +2126,7 @@ font-size: 13.0px; - + @@ -2141,117 +2141,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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, sans-serif; @@ -2260,7 +2260,7 @@ font-size: 13.0px; } - + @@ -2373,7 +2373,7 @@ font-size: 13.0px; - + @@ -2619,7 +2619,7 @@ font-size: 13.0px; - + @@ -2646,7 +2646,7 @@ font-size: 13.0px; - + @@ -2661,117 +2661,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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, sans-serif; @@ -2780,7 +2780,7 @@ font-size: 13.0px; } - + @@ -2921,7 +2921,7 @@ font-size: 13.0px; - + @@ -3167,7 +3167,7 @@ font-size: 13.0px; - + @@ -3196,7 +3196,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 d59dca20d..0bcf895da 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: Lucida Grande, sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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 99bd150e0..eec4abcfc 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: Lucida Grande, sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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 f4f75921e..129c0081c 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: Lucida Grande, sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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 c4a2e2404..daef0f281 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: Lucida Grande, sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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 9234eb5cd..c791e4c19 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: Lucida Grande, sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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 3a9a1328a..d89da7a2b 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: Lucida Grande, sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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 d45687559..08e861ef0 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: Lucida Grande, sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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 d15da92cc..db695f14e 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: Lucida Grande, sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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 1ffd69155..7397d9da8 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: Lucida Grande, sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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 6fb3c3f84..7a2b6fa9b 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: Lucida Grande, sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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 07da7fcf6..2d5445612 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: Lucida Grande, sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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 a17483892..4cfd2051f 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: Lucida Grande, sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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 f8b02efb6..b16846275 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: Lucida Grande, sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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; - + @@ -411,7 +411,7 @@ font-size: 13.0px; - + @@ -423,7 +423,7 @@ font-size: 13.0px; - + @@ -499,7 +499,7 @@ font-size: 13.0px; - + @@ -534,7 +534,7 @@ font-size: 13.0px; - + @@ -601,7 +601,7 @@ font-size: 13.0px; - + @@ -614,7 +614,7 @@ font-size: 13.0px; - + @@ -681,7 +681,7 @@ font-size: 13.0px; - + @@ -736,7 +736,7 @@ font-size: 13.0px; - + @@ -805,7 +805,7 @@ font-size: 13.0px; - + @@ -821,7 +821,7 @@ font-size: 13.0px; - + @@ -897,7 +897,7 @@ font-size: 13.0px; - + @@ -966,7 +966,7 @@ font-size: 13.0px; - + @@ -1035,7 +1035,7 @@ font-size: 13.0px; - + @@ -1068,7 +1068,7 @@ font-size: 13.0px; - + @@ -1146,7 +1146,7 @@ font-size: 13.0px; - + @@ -1162,7 +1162,7 @@ font-size: 13.0px; - + @@ -1240,7 +1240,7 @@ font-size: 13.0px; - + @@ -1252,7 +1252,7 @@ font-size: 13.0px; - + @@ -1330,7 +1330,7 @@ font-size: 13.0px; - + @@ -1342,7 +1342,7 @@ font-size: 13.0px; - + @@ -1584,6 +1584,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 b7aae638b..fded29c58 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: Lucida Grande, sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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; - + @@ -451,7 +451,7 @@ font-size: 13.0px; - + @@ -463,7 +463,7 @@ font-size: 13.0px; - + @@ -530,7 +530,7 @@ font-size: 13.0px; - + @@ -565,7 +565,7 @@ font-size: 13.0px; - + @@ -632,7 +632,7 @@ font-size: 13.0px; - + @@ -645,7 +645,7 @@ font-size: 13.0px; - + @@ -712,7 +712,7 @@ font-size: 13.0px; - + @@ -767,7 +767,7 @@ font-size: 13.0px; - + @@ -845,7 +845,7 @@ font-size: 13.0px; - + @@ -861,7 +861,7 @@ font-size: 13.0px; - + @@ -928,7 +928,7 @@ font-size: 13.0px; - + @@ -997,7 +997,7 @@ font-size: 13.0px; - + @@ -1075,7 +1075,7 @@ font-size: 13.0px; - + @@ -1108,7 +1108,7 @@ font-size: 13.0px; - + @@ -1186,7 +1186,7 @@ font-size: 13.0px; - + @@ -1202,7 +1202,7 @@ font-size: 13.0px; - + @@ -1280,7 +1280,7 @@ font-size: 13.0px; - + @@ -1292,7 +1292,7 @@ font-size: 13.0px; - + @@ -1370,7 +1370,7 @@ font-size: 13.0px; - + @@ -1382,7 +1382,7 @@ font-size: 13.0px; - + @@ -1584,6 +1584,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 04428f527..63a62dac6 100644 --- a/docs/images/guides/quickStartGuide/experimentalMultiplotPlotBunch.svg +++ b/docs/images/guides/quickStartGuide/experimentalMultiplotPlotBunch.svg @@ -11,117 +11,117 @@ text { text-rendering: optimizeLegibility; } -#xXxprefixXx0 .plot-title { +#_sample_helper_static_id_prefix_0 .plot-title { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, sans-serif; @@ -141,117 +141,117 @@ font-size: 13.0px; text { text-rendering: optimizeLegibility; } -#xXxprefixXx3 .plot-title { +#_sample_helper_static_id_prefix_3 .plot-title { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 16.0px; } -#xXxprefixXx3 .plot-subtitle { +#_sample_helper_static_id_prefix_3 .plot-subtitle { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx3 .plot-caption { +#_sample_helper_static_id_prefix_3 .plot-caption { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx3 .hyperlink-element { +#_sample_helper_static_id_prefix_3 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx3 .legend-title { +#_sample_helper_static_id_prefix_3 .legend-title { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx3 .legend-item { +#_sample_helper_static_id_prefix_3 .legend-item { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx3 .axis-title-x { +#_sample_helper_static_id_prefix_3 .axis-title-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx3 .axis-text-x { +#_sample_helper_static_id_prefix_3 .axis-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx3 .axis-title-y { +#_sample_helper_static_id_prefix_3 .axis-title-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx3 .axis-text-y { +#_sample_helper_static_id_prefix_3 .axis-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx3 .facet-strip-text-x { +#_sample_helper_static_id_prefix_3 .facet-strip-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx3 .facet-strip-text-y { +#_sample_helper_static_id_prefix_3 .facet-strip-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, sans-serif; @@ -271,117 +271,117 @@ font-size: 13.0px; text { text-rendering: optimizeLegibility; } -#xXxprefixXx6 .plot-title { +#_sample_helper_static_id_prefix_6 .plot-title { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 16.0px; } -#xXxprefixXx6 .plot-subtitle { +#_sample_helper_static_id_prefix_6 .plot-subtitle { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx6 .plot-caption { +#_sample_helper_static_id_prefix_6 .plot-caption { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx6 .hyperlink-element { +#_sample_helper_static_id_prefix_6 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx6 .legend-title { +#_sample_helper_static_id_prefix_6 .legend-title { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx6 .legend-item { +#_sample_helper_static_id_prefix_6 .legend-item { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx6 .axis-title-x { +#_sample_helper_static_id_prefix_6 .axis-title-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx6 .axis-text-x { +#_sample_helper_static_id_prefix_6 .axis-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx6 .axis-title-y { +#_sample_helper_static_id_prefix_6 .axis-title-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx6 .axis-text-y { +#_sample_helper_static_id_prefix_6 .axis-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx6 .facet-strip-text-x { +#_sample_helper_static_id_prefix_6 .facet-strip-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx6 .facet-strip-text-y { +#_sample_helper_static_id_prefix_6 .facet-strip-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, sans-serif; @@ -391,7 +391,7 @@ font-size: 13.0px; - + @@ -417,7 +417,7 @@ font-size: 13.0px; - + @@ -431,7 +431,7 @@ font-size: 13.0px; - + @@ -507,10 +507,10 @@ font-size: 13.0px; - + - + @@ -536,7 +536,7 @@ font-size: 13.0px; - + @@ -562,7 +562,7 @@ font-size: 13.0px; - + @@ -711,10 +711,10 @@ font-size: 13.0px; - + - + @@ -752,7 +752,7 @@ font-size: 13.0px; - + @@ -997,7 +997,7 @@ font-size: 13.0px; - + @@ -1243,7 +1243,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 6fb64f4ff..0db077692 100644 --- a/docs/images/guides/quickStartGuide/experimentalMultiplotPlotBunch_dark.svg +++ b/docs/images/guides/quickStartGuide/experimentalMultiplotPlotBunch_dark.svg @@ -11,117 +11,117 @@ text { text-rendering: optimizeLegibility; } -#xXxprefixXx0 .plot-title { +#_sample_helper_static_id_prefix_0 .plot-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, sans-serif; @@ -141,117 +141,117 @@ font-size: 13.0px; text { text-rendering: optimizeLegibility; } -#xXxprefixXx3 .plot-title { +#_sample_helper_static_id_prefix_3 .plot-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 16.0px; } -#xXxprefixXx3 .plot-subtitle { +#_sample_helper_static_id_prefix_3 .plot-subtitle { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx3 .plot-caption { +#_sample_helper_static_id_prefix_3 .plot-caption { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx3 .hyperlink-element { +#_sample_helper_static_id_prefix_3 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx3 .legend-title { +#_sample_helper_static_id_prefix_3 .legend-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx3 .legend-item { +#_sample_helper_static_id_prefix_3 .legend-item { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx3 .axis-title-x { +#_sample_helper_static_id_prefix_3 .axis-title-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx3 .axis-text-x { +#_sample_helper_static_id_prefix_3 .axis-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx3 .axis-title-y { +#_sample_helper_static_id_prefix_3 .axis-title-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx3 .axis-text-y { +#_sample_helper_static_id_prefix_3 .axis-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx3 .facet-strip-text-x { +#_sample_helper_static_id_prefix_3 .facet-strip-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx3 .facet-strip-text-y { +#_sample_helper_static_id_prefix_3 .facet-strip-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, sans-serif; @@ -271,117 +271,117 @@ font-size: 13.0px; text { text-rendering: optimizeLegibility; } -#xXxprefixXx6 .plot-title { +#_sample_helper_static_id_prefix_6 .plot-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 16.0px; } -#xXxprefixXx6 .plot-subtitle { +#_sample_helper_static_id_prefix_6 .plot-subtitle { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx6 .plot-caption { +#_sample_helper_static_id_prefix_6 .plot-caption { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx6 .hyperlink-element { +#_sample_helper_static_id_prefix_6 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx6 .legend-title { +#_sample_helper_static_id_prefix_6 .legend-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx6 .legend-item { +#_sample_helper_static_id_prefix_6 .legend-item { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx6 .axis-title-x { +#_sample_helper_static_id_prefix_6 .axis-title-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx6 .axis-text-x { +#_sample_helper_static_id_prefix_6 .axis-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx6 .axis-title-y { +#_sample_helper_static_id_prefix_6 .axis-title-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx6 .axis-text-y { +#_sample_helper_static_id_prefix_6 .axis-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx6 .facet-strip-text-x { +#_sample_helper_static_id_prefix_6 .facet-strip-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx6 .facet-strip-text-y { +#_sample_helper_static_id_prefix_6 .facet-strip-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, sans-serif; @@ -391,7 +391,7 @@ font-size: 13.0px; - + @@ -471,7 +471,7 @@ font-size: 13.0px; - + @@ -485,7 +485,7 @@ font-size: 13.0px; - + @@ -507,10 +507,10 @@ font-size: 13.0px; - + - + @@ -590,7 +590,7 @@ font-size: 13.0px; - + @@ -616,7 +616,7 @@ font-size: 13.0px; - + @@ -711,10 +711,10 @@ font-size: 13.0px; - + - + @@ -854,7 +854,7 @@ font-size: 13.0px; - + @@ -1099,7 +1099,7 @@ font-size: 13.0px; - + @@ -1243,7 +1243,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 2c751e507..ba08c30fb 100644 --- a/docs/images/guides/quickStartGuide/experimentalMultiplotPlotGrid.svg +++ b/docs/images/guides/quickStartGuide/experimentalMultiplotPlotGrid.svg @@ -1,5 +1,5 @@ - + @@ -15,117 +15,117 @@ 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, sans-serif; @@ -134,7 +134,7 @@ font-size: 13.0px; } - + @@ -166,7 +166,7 @@ font-size: 13.0px; - + @@ -411,7 +411,7 @@ font-size: 13.0px; - + @@ -630,7 +630,7 @@ font-size: 13.0px; - + @@ -645,117 +645,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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, sans-serif; @@ -764,7 +764,7 @@ font-size: 13.0px; } - + @@ -796,7 +796,7 @@ font-size: 13.0px; - + @@ -810,7 +810,7 @@ font-size: 13.0px; - + @@ -907,7 +907,7 @@ font-size: 13.0px; - + @@ -922,117 +922,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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, sans-serif; @@ -1041,7 +1041,7 @@ font-size: 13.0px; } - + @@ -1071,7 +1071,7 @@ font-size: 13.0px; - + @@ -1097,7 +1097,7 @@ font-size: 13.0px; - + @@ -1260,7 +1260,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 16588963c..6d22bec91 100644 --- a/docs/images/guides/quickStartGuide/experimentalMultiplotPlotGrid_dark.svg +++ b/docs/images/guides/quickStartGuide/experimentalMultiplotPlotGrid_dark.svg @@ -1,5 +1,5 @@ - + @@ -15,117 +15,117 @@ 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, sans-serif; @@ -134,7 +134,7 @@ font-size: 13.0px; } - + @@ -241,7 +241,7 @@ font-size: 13.0px; - + @@ -486,7 +486,7 @@ font-size: 13.0px; - + @@ -630,7 +630,7 @@ font-size: 13.0px; - + @@ -645,117 +645,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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, sans-serif; @@ -764,7 +764,7 @@ font-size: 13.0px; } - + @@ -871,7 +871,7 @@ font-size: 13.0px; - + @@ -885,7 +885,7 @@ font-size: 13.0px; - + @@ -907,7 +907,7 @@ font-size: 13.0px; - + @@ -922,117 +922,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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, sans-serif; @@ -1041,7 +1041,7 @@ font-size: 13.0px; } - + @@ -1139,7 +1139,7 @@ font-size: 13.0px; - + @@ -1165,7 +1165,7 @@ font-size: 13.0px; - + @@ -1260,7 +1260,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 589fab8ab..eaea445f8 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: Lucida Grande, sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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 c95d432dc..7a54a9c29 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: Lucida Grande, sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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 5d19e17a6..fbd082178 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: Lucida Grande, sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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 a76142529..13db74b71 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: Lucida Grande, sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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 984038dfd..0bcd6b5e1 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: Lucida Grande, sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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 e560f52a2..9fe9b336a 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: Lucida Grande, sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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 17bc60497..cae2b8f8d 100644 --- a/docs/images/guides/quickStartGuide/experimentalStatisticsStatBinOnIterableData.svg +++ b/docs/images/guides/quickStartGuide/experimentalStatisticsStatBinOnIterableData.svg @@ -1,5 +1,5 @@ - + @@ -15,117 +15,117 @@ 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, sans-serif; @@ -134,7 +134,7 @@ font-size: 13.0px; } - + @@ -172,7 +172,7 @@ font-size: 13.0px; - + @@ -204,7 +204,7 @@ font-size: 13.0px; - + @@ -328,7 +328,7 @@ font-size: 13.0px; - + @@ -343,117 +343,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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, sans-serif; @@ -462,7 +462,7 @@ font-size: 13.0px; } - + @@ -502,7 +502,7 @@ font-size: 13.0px; - + @@ -550,7 +550,7 @@ font-size: 13.0px; - + @@ -681,7 +681,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 84fe17ff1..444fda73a 100644 --- a/docs/images/guides/quickStartGuide/experimentalStatisticsStatBinOnIterableData_dark.svg +++ b/docs/images/guides/quickStartGuide/experimentalStatisticsStatBinOnIterableData_dark.svg @@ -1,5 +1,5 @@ - + @@ -15,117 +15,117 @@ 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, sans-serif; @@ -134,7 +134,7 @@ font-size: 13.0px; } - + @@ -274,7 +274,7 @@ font-size: 13.0px; - + @@ -306,7 +306,7 @@ font-size: 13.0px; - + @@ -328,7 +328,7 @@ font-size: 13.0px; - + @@ -343,117 +343,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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, sans-serif; @@ -462,7 +462,7 @@ font-size: 13.0px; } - + @@ -611,7 +611,7 @@ font-size: 13.0px; - + @@ -659,7 +659,7 @@ font-size: 13.0px; - + @@ -681,7 +681,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 af9fcd788..81a8fc590 100644 --- a/docs/images/guides/quickStartGuide/experimentalStatisticsStatBinsAndHist.svg +++ b/docs/images/guides/quickStartGuide/experimentalStatisticsStatBinsAndHist.svg @@ -1,5 +1,5 @@ - + @@ -15,117 +15,117 @@ 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, sans-serif; @@ -134,7 +134,7 @@ font-size: 13.0px; } - + @@ -174,7 +174,7 @@ font-size: 13.0px; - + @@ -222,7 +222,7 @@ font-size: 13.0px; - + @@ -358,7 +358,7 @@ font-size: 13.0px; - + @@ -373,117 +373,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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, sans-serif; @@ -492,7 +492,7 @@ font-size: 13.0px; } - + @@ -532,7 +532,7 @@ font-size: 13.0px; - + @@ -580,7 +580,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/quickStartGuide/experimentalStatisticsStatBinsAndHist_dark.svg b/docs/images/guides/quickStartGuide/experimentalStatisticsStatBinsAndHist_dark.svg index f47dbdd5c..08ecdf6ef 100644 --- a/docs/images/guides/quickStartGuide/experimentalStatisticsStatBinsAndHist_dark.svg +++ b/docs/images/guides/quickStartGuide/experimentalStatisticsStatBinsAndHist_dark.svg @@ -1,5 +1,5 @@ - + @@ -15,117 +15,117 @@ 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, sans-serif; @@ -134,7 +134,7 @@ font-size: 13.0px; } - + @@ -283,7 +283,7 @@ font-size: 13.0px; - + @@ -331,7 +331,7 @@ font-size: 13.0px; - + @@ -358,7 +358,7 @@ font-size: 13.0px; - + @@ -373,117 +373,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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, sans-serif; @@ -492,7 +492,7 @@ font-size: 13.0px; } - + @@ -641,7 +641,7 @@ font-size: 13.0px; - + @@ -689,7 +689,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/quickStartGuide/experimentalTooltipsByColumns.svg b/docs/images/guides/quickStartGuide/experimentalTooltipsByColumns.svg index b014465bb..7f824825e 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: Lucida Grande, sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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 87a1d4565..17a3efa5f 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: Lucida Grande, sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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 b014465bb..7f824825e 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: Lucida Grande, sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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 87a1d4565..17a3efa5f 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: Lucida Grande, sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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 b014465bb..7f824825e 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: Lucida Grande, sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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 87a1d4565..17a3efa5f 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: Lucida Grande, sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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 b014465bb..7f824825e 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: Lucida Grande, sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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 87a1d4565..17a3efa5f 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: Lucida Grande, sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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 7d66f280c..6eca3c488 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: Lucida Grande, sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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 93ec719b5..1ee78f86c 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: Lucida Grande, sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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 aa16f9e0b..56309dd34 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: Lucida Grande, sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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 356cf28ff..4200d2b73 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: Lucida Grande, sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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 b4515abff..c4e34c13e 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: Lucida Grande, sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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 b137e2836..2e717b49f 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: Lucida Grande, sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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 1a7638d27..24b66acfc 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: Lucida Grande, sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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 9dbea5b4d..abae8606c 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: Lucida Grande, sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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 7d66f280c..6eca3c488 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: Lucida Grande, sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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 93ec719b5..1ee78f86c 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: Lucida Grande, sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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 a89bf2615..c0b0ecef5 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: Lucida Grande, sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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 f9d5a8f84..94f29b7f9 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: Lucida Grande, sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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 a89bf2615..c0b0ecef5 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: Lucida Grande, sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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 f9d5a8f84..94f29b7f9 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: Lucida Grande, sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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 c0d361289..702c05123 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: Lucida Grande, sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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 d89350395..fb5e7b5ae 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: Lucida Grande, sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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 1e787a44e..73b1e2f15 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: Lucida Grande, sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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 8664b9994..1cdacb4ab 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: Lucida Grande, sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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 651c62c3a..186cb8c39 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: Lucida Grande, sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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 89ad0a882..3a6e8175d 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: Lucida Grande, sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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 b16221bdc..1f711eef5 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: Lucida Grande, sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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 6d67d5bf1..da5404402 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: Lucida Grande, sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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 90318132e..6cd942a43 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: Lucida Grande, sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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 88896e846..6232176af 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: Lucida Grande, sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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 7525f5a0c..b132544ba 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: Lucida Grande, sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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 e4a1f95b4..9b3290180 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: Lucida Grande, sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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 065c16058..224ca15cf 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: Lucida Grande, sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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 5f5516ce4..d568905b2 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: Lucida Grande, sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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 90318132e..6cd942a43 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: Lucida Grande, sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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 88896e846..6232176af 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: Lucida Grande, sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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 90318132e..6cd942a43 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: Lucida Grande, sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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 88896e846..6232176af 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: Lucida Grande, sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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 ad53e26e8..865f103a1 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: Lucida Grande, sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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.svg b/docs/images/guides/stat/guideCandlestickCandlestickPlotConfigured.svg index 60c422ab1..567b7d23c 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: Lucida Grande, sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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 7973b3f6f..b2f36b895 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: Lucida Grande, sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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 29e830c31..25432a0e7 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: Lucida Grande, sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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/guideCandlestickCompareBoxesVsCandlestick.svg b/docs/images/guides/stat/guideCandlestickCompareBoxesVsCandlestick.svg index ae13f2c7d..d435fd60d 100644 --- a/docs/images/guides/stat/guideCandlestickCompareBoxesVsCandlestick.svg +++ b/docs/images/guides/stat/guideCandlestickCompareBoxesVsCandlestick.svg @@ -1,5 +1,5 @@ - + @@ -15,117 +15,117 @@ 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, sans-serif; @@ -134,7 +134,7 @@ font-size: 13.0px; } - + @@ -164,7 +164,7 @@ font-size: 13.0px; - + @@ -222,7 +222,7 @@ font-size: 13.0px; - + @@ -321,7 +321,7 @@ font-size: 13.0px; - + @@ -336,117 +336,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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, sans-serif; @@ -455,7 +455,7 @@ font-size: 13.0px; } - + @@ -485,7 +485,7 @@ font-size: 13.0px; - + @@ -543,7 +543,7 @@ font-size: 13.0px; - + @@ -642,7 +642,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 0166da265..d928b43a2 100644 --- a/docs/images/guides/stat/guideCandlestickCompareBoxesVsCandlestick_dark.svg +++ b/docs/images/guides/stat/guideCandlestickCompareBoxesVsCandlestick_dark.svg @@ -1,5 +1,5 @@ - + @@ -15,117 +15,117 @@ 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, sans-serif; @@ -134,7 +134,7 @@ font-size: 13.0px; } - + @@ -236,7 +236,7 @@ font-size: 13.0px; - + @@ -294,7 +294,7 @@ font-size: 13.0px; - + @@ -321,7 +321,7 @@ font-size: 13.0px; - + @@ -336,117 +336,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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, sans-serif; @@ -455,7 +455,7 @@ font-size: 13.0px; } - + @@ -557,7 +557,7 @@ font-size: 13.0px; - + @@ -615,7 +615,7 @@ font-size: 13.0px; - + @@ -642,7 +642,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 c08b96600..42660e5df 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: Lucida Grande, sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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/guideCandlestickLayerCustomizationDSL_dark.svg b/docs/images/guides/stat/guideCandlestickLayerCustomizationDSL_dark.svg index 40dc86ef9..2b8135490 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: Lucida Grande, sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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/guideCandlestickLayerCustomizationStatAPI.svg b/docs/images/guides/stat/guideCandlestickLayerCustomizationStatAPI.svg index a5a6e6c22..281283d09 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: Lucida Grande, sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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; - + @@ -397,6 +397,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 f52b3dbdd..7f37ad0e1 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: Lucida Grande, sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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; - + @@ -397,6 +397,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 26969b793..854af94e4 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: Lucida Grande, sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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 3a30b2660..357686f9a 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: Lucida Grande, sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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 afbb6e25d..0cd1ef816 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: Lucida Grande, sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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 4b6615b88..0d091b00e 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: Lucida Grande, sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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 1e1a019e3..3de254d6e 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: Lucida Grande, sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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 51c51f3a1..91addf142 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: Lucida Grande, sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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 0472938d7..02b2a1ab3 100644 --- a/docs/images/guides/stat/guideCountBarsVsCountPlot.svg +++ b/docs/images/guides/stat/guideCountBarsVsCountPlot.svg @@ -1,5 +1,5 @@ - + @@ -15,117 +15,117 @@ 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, sans-serif; @@ -134,7 +134,7 @@ font-size: 13.0px; } - + @@ -166,7 +166,7 @@ font-size: 13.0px; - + @@ -188,7 +188,7 @@ font-size: 13.0px; - + @@ -298,7 +298,7 @@ font-size: 13.0px; - + @@ -313,117 +313,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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, sans-serif; @@ -432,7 +432,7 @@ font-size: 13.0px; } - + @@ -464,7 +464,7 @@ font-size: 13.0px; - + @@ -486,7 +486,7 @@ font-size: 13.0px; - + @@ -596,7 +596,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 39899045c..24164eb48 100644 --- a/docs/images/guides/stat/guideCountBarsVsCountPlot_dark.svg +++ b/docs/images/guides/stat/guideCountBarsVsCountPlot_dark.svg @@ -1,5 +1,5 @@ - + @@ -15,117 +15,117 @@ 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, sans-serif; @@ -134,7 +134,7 @@ font-size: 13.0px; } - + @@ -249,7 +249,7 @@ font-size: 13.0px; - + @@ -271,7 +271,7 @@ font-size: 13.0px; - + @@ -298,7 +298,7 @@ font-size: 13.0px; - + @@ -313,117 +313,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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, sans-serif; @@ -432,7 +432,7 @@ font-size: 13.0px; } - + @@ -547,7 +547,7 @@ font-size: 13.0px; - + @@ -569,7 +569,7 @@ font-size: 13.0px; - + @@ -596,7 +596,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 6cfb115ae..5ea2d0d42 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: Lucida Grande, sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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 2e5943d56..003f9330f 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: Lucida Grande, sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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 73a4bd2ad..79b60df43 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: Lucida Grande, sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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 27a9e0be2..83c85f8bd 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: Lucida Grande, sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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 71b142e82..c6ce0afbd 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: Lucida Grande, sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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 98c2e680c..6e5ed0e6d 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: Lucida Grande, sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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 8e0c0fe49..4ceab2bf5 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: Lucida Grande, sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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 94a388612..f33940458 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: Lucida Grande, sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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 8e0c0fe49..4ceab2bf5 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: Lucida Grande, sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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 94a388612..f33940458 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: Lucida Grande, sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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 b0a469247..316417e56 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: Lucida Grande, sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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 aec0b07c8..46f55ed92 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: Lucida Grande, sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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 cf960403d..0f8df5810 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: Lucida Grande, sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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 7f0e132ef..451a23145 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: Lucida Grande, sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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 ad4e46ee0..a10545702 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: Lucida Grande, sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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 5d9765760..7f9df3f76 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: Lucida Grande, sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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 056e4da94..4c8d62695 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: Lucida Grande, sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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 37944e187..a118ecc90 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: Lucida Grande, sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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 66fb0fc61..3750b927c 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: Lucida Grande, sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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 3286d513c..53a1c916d 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: Lucida Grande, sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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 8e0c0fe49..4ceab2bf5 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: Lucida Grande, sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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 94a388612..f33940458 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: Lucida Grande, sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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 3a21eb92c..b089fe396 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: Lucida Grande, sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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 71a27e8ca..9056d1d5c 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: Lucida Grande, sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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 1f0e446b8..c5bfeff1c 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: Lucida Grande, sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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 ba1994e8e..6c6aaf30a 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: Lucida Grande, sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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 ff4ec9dde..da089f893 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: Lucida Grande, sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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 561d504cc..0f6c63b9e 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: Lucida Grande, sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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 5de84e3bd..374bcadcc 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: Lucida Grande, sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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 bfa85e96c..98cef87cd 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: Lucida Grande, sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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 234b39083..5d9bcd6c3 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: Lucida Grande, sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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 183df3f64..03e928fc9 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: Lucida Grande, sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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 3462aa364..cebfeb71e 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: Lucida Grande, sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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 b726c4a6b..314513b7a 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: Lucida Grande, sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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 54721c84a..7af63768b 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: Lucida Grande, sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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 0528e863e..8cf9bc252 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: Lucida Grande, sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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 8bffb4183..ce3bbd3df 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: Lucida Grande, sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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 9a71afafc..86e42bd4b 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: Lucida Grande, sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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 ba3dd9385..6a9cb8a50 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: Lucida Grande, sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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 82e6fe8ec..98799e578 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: Lucida Grande, sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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 d7c7e44d2..2947d47b2 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: Lucida Grande, sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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 7fbf57345..c1a2b4f71 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: Lucida Grande, sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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 0a604f3da..df75f692e 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: Lucida Grande, sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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 e670b9723..b0e1709ea 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: Lucida Grande, sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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 994cd5e4a..e9ae9e0e8 100644 --- a/docs/images/guides/stat/guideHeatmapTileVsHeatMap.svg +++ b/docs/images/guides/stat/guideHeatmapTileVsHeatMap.svg @@ -1,5 +1,5 @@ - + @@ -15,117 +15,117 @@ 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, sans-serif; @@ -134,7 +134,7 @@ font-size: 13.0px; } - + @@ -168,7 +168,7 @@ font-size: 13.0px; - + @@ -192,7 +192,7 @@ font-size: 13.0px; - + @@ -409,7 +409,7 @@ font-size: 13.0px; - + @@ -424,117 +424,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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, sans-serif; @@ -543,7 +543,7 @@ font-size: 13.0px; } - + @@ -577,7 +577,7 @@ font-size: 13.0px; - + @@ -601,7 +601,7 @@ font-size: 13.0px; - + @@ -818,7 +818,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 b113676d7..92bd8309f 100644 --- a/docs/images/guides/stat/guideHeatmapTileVsHeatMap_dark.svg +++ b/docs/images/guides/stat/guideHeatmapTileVsHeatMap_dark.svg @@ -1,5 +1,5 @@ - + @@ -15,117 +15,117 @@ 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, sans-serif; @@ -134,7 +134,7 @@ font-size: 13.0px; } - + @@ -258,7 +258,7 @@ font-size: 13.0px; - + @@ -282,7 +282,7 @@ font-size: 13.0px; - + @@ -409,7 +409,7 @@ font-size: 13.0px; - + @@ -424,117 +424,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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, sans-serif; @@ -543,7 +543,7 @@ font-size: 13.0px; } - + @@ -667,7 +667,7 @@ font-size: 13.0px; - + @@ -691,7 +691,7 @@ font-size: 13.0px; - + @@ -818,7 +818,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 b0d27fea4..e7259aa35 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: Lucida Grande, sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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 45e091843..2f26ce80f 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: Lucida Grande, sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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 8dd10a1a0..7b8f3584c 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: Lucida Grande, sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, sans-serif; @@ -129,7 +129,7 @@ font-size: 13.0px; } - + @@ -159,7 +159,7 @@ font-size: 13.0px; - + @@ -175,7 +175,7 @@ font-size: 13.0px; - + @@ -365,6 +365,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 e9d83241a..91c40c766 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: Lucida Grande, sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, sans-serif; @@ -129,7 +129,7 @@ font-size: 13.0px; } - + @@ -227,7 +227,7 @@ font-size: 13.0px; - + @@ -243,7 +243,7 @@ font-size: 13.0px; - + @@ -365,6 +365,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 ba3dd9385..6a9cb8a50 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: Lucida Grande, sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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 82e6fe8ec..98799e578 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: Lucida Grande, sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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/top_12_german_companies/notebook_test_top_12_german_companies_10.svg b/docs/images/guides/top_12_german_companies/notebook_test_top_12_german_companies_10.svg deleted file mode 100644 index e9e32a754..000000000 --- a/docs/images/guides/top_12_german_companies/notebook_test_top_12_german_companies_10.svg +++ /dev/null @@ -1,768 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - 2017 - - - - - - - - - 2018 - - - - - - - - - 2019 - - - - - - - - - 2020 - - - - - - - - - 2021 - - - - - - - - - 2022 - - - - - - - - - 2023 - - - - - - - - - 2024 - - - - - - - - - 2025 - - - - - - - - - - - 1G - - - - - - - 2G - - - - - - - 3G - - - - - - - 4G - - - - - - - 5G - - - - - - - 6G - - - - - - - 7G - - - - - - - - - Net Income by Sector - - - - - Net Income - - - - - Date - - - - - - - - - Sector - - - - - - - - - - - - - - - - - - - - Automotive - - - - - - - - - - - - - - - - - - - - Banking - - - - - - - - - - - - - - - - - - - - Insurance - - - - - - - - - - - - - - - - - - - - Industrial - - - - - - - - - - - - - - - - - - - - Telecom - - - - - - - - - - - - - - - - - - - - IT - - - - - - - - - - - - - - - - - - - - Pharma - - - - - - - - - - - - \ No newline at end of file diff --git a/docs/images/guides/top_12_german_companies/notebook_test_top_12_german_companies_10_dark.svg b/docs/images/guides/top_12_german_companies/notebook_test_top_12_german_companies_10_dark.svg deleted file mode 100644 index 2b7eb1f27..000000000 --- a/docs/images/guides/top_12_german_companies/notebook_test_top_12_german_companies_10_dark.svg +++ /dev/null @@ -1,768 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - 2017 - - - - - - - - - 2018 - - - - - - - - - 2019 - - - - - - - - - 2020 - - - - - - - - - 2021 - - - - - - - - - 2022 - - - - - - - - - 2023 - - - - - - - - - 2024 - - - - - - - - - 2025 - - - - - - - - - - - 1G - - - - - - - 2G - - - - - - - 3G - - - - - - - 4G - - - - - - - 5G - - - - - - - 6G - - - - - - - 7G - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Net Income by Sector - - - - - Net Income - - - - - Date - - - - - - - - - Sector - - - - - - - - - - - - - - - - - - - - Automotive - - - - - - - - - - - - - - - - - - - - Banking - - - - - - - - - - - - - - - - - - - - Insurance - - - - - - - - - - - - - - - - - - - - Industrial - - - - - - - - - - - - - - - - - - - - Telecom - - - - - - - - - - - - - - - - - - - - IT - - - - - - - - - - - - - - - - - - - - Pharma - - - - - - - - - - - - \ No newline at end of file diff --git a/docs/images/guides/top_12_german_companies/notebook_test_top_12_german_companies_12.svg b/docs/images/guides/top_12_german_companies/notebook_test_top_12_german_companies_12.svg deleted file mode 100644 index 3a5c31699..000000000 --- a/docs/images/guides/top_12_german_companies/notebook_test_top_12_german_companies_12.svg +++ /dev/null @@ -1,329 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - INSURANCE_FINANCE - - - - - - - - - INDUSTRIAL_TECH - - - - - - - - - AUTOMOTIVE - - - - - - - - - PHARMA_CHEMICAL - - - - - - - - - BANKING - - - - - - - - - TELECOMMUNICATIONS - - - - - - - - - IT_SOFTWARE - - - - - - - - - - - 0 - - - - - - - 2G - - - - - - - 4G - - - - - - - - - Average ROA By Sector With Standard Deviation - - - - - Avg ROA - - - - - Sector of Business - - - - - - - - \ No newline at end of file diff --git a/docs/images/guides/top_12_german_companies/notebook_test_top_12_german_companies_12_dark.svg b/docs/images/guides/top_12_german_companies/notebook_test_top_12_german_companies_12_dark.svg deleted file mode 100644 index e13ea7fca..000000000 --- a/docs/images/guides/top_12_german_companies/notebook_test_top_12_german_companies_12_dark.svg +++ /dev/null @@ -1,329 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - INSURANCE_FINANCE - - - - - - - - - INDUSTRIAL_TECH - - - - - - - - - AUTOMOTIVE - - - - - - - - - PHARMA_CHEMICAL - - - - - - - - - BANKING - - - - - - - - - TELECOMMUNICATIONS - - - - - - - - - IT_SOFTWARE - - - - - - - - - - - 0 - - - - - - - 2G - - - - - - - 4G - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Average ROA By Sector With Standard Deviation - - - - - Avg ROA - - - - - Sector of Business - - - - - - - - \ No newline at end of file diff --git a/docs/images/guides/top_12_german_companies/notebook_test_top_12_german_companies_13.svg b/docs/images/guides/top_12_german_companies/notebook_test_top_12_german_companies_13.svg deleted file mode 100644 index da79116e6..000000000 --- a/docs/images/guides/top_12_german_companies/notebook_test_top_12_german_companies_13.svg +++ /dev/null @@ -1,338 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - INSURANCE_FINANCE - - - - - - - - - INDUSTRIAL_TECH - - - - - - - - - AUTOMOTIVE - - - - - - - - - PHARMA_CHEMICAL - - - - - - - - - BANKING - - - - - - - - - TELECOMMUNICATIONS - - - - - - - - - IT_SOFTWARE - - - - - - - - - - - 0 - - - - - - - 2G - - - - - - - 4G - - - - - - - 6G - - - - - - - - - Average ROE By Sector With Standard Deviation - - - - - Avg ROE - - - - - Sector of Business - - - - - - - - \ No newline at end of file diff --git a/docs/images/guides/top_12_german_companies/notebook_test_top_12_german_companies_13_dark.svg b/docs/images/guides/top_12_german_companies/notebook_test_top_12_german_companies_13_dark.svg deleted file mode 100644 index 5e7479610..000000000 --- a/docs/images/guides/top_12_german_companies/notebook_test_top_12_german_companies_13_dark.svg +++ /dev/null @@ -1,338 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - INSURANCE_FINANCE - - - - - - - - - INDUSTRIAL_TECH - - - - - - - - - AUTOMOTIVE - - - - - - - - - PHARMA_CHEMICAL - - - - - - - - - BANKING - - - - - - - - - TELECOMMUNICATIONS - - - - - - - - - IT_SOFTWARE - - - - - - - - - - - 0 - - - - - - - 2G - - - - - - - 4G - - - - - - - 6G - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Average ROE By Sector With Standard Deviation - - - - - Avg ROE - - - - - Sector of Business - - - - - - - - \ No newline at end of file diff --git a/docs/images/guides/top_12_german_companies/notebook_test_top_12_german_companies_9.svg b/docs/images/guides/top_12_german_companies/notebook_test_top_12_german_companies_9.svg deleted file mode 100644 index a364484ff..000000000 --- a/docs/images/guides/top_12_german_companies/notebook_test_top_12_german_companies_9.svg +++ /dev/null @@ -1,759 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - 2017 - - - - - - - - - 2018 - - - - - - - - - 2019 - - - - - - - - - 2020 - - - - - - - - - 2021 - - - - - - - - - 2022 - - - - - - - - - 2023 - - - - - - - - - 2024 - - - - - - - - - 2025 - - - - - - - - - - - 10G - - - - - - - 20G - - - - - - - 30G - - - - - - - 40G - - - - - - - 50G - - - - - - - 60G - - - - - - - - - Revenue by Sector - - - - - Revenue - - - - - Date - - - - - - - - - Sector - - - - - - - - - - - - - - - - - - - - Automotive - - - - - - - - - - - - - - - - - - - - Banking - - - - - - - - - - - - - - - - - - - - Insurance - - - - - - - - - - - - - - - - - - - - Industrial - - - - - - - - - - - - - - - - - - - - Telecom - - - - - - - - - - - - - - - - - - - - IT - - - - - - - - - - - - - - - - - - - - Pharma - - - - - - - - - - - - \ No newline at end of file diff --git a/docs/images/guides/top_12_german_companies/notebook_test_top_12_german_companies_9_dark.svg b/docs/images/guides/top_12_german_companies/notebook_test_top_12_german_companies_9_dark.svg deleted file mode 100644 index 46331fbc9..000000000 --- a/docs/images/guides/top_12_german_companies/notebook_test_top_12_german_companies_9_dark.svg +++ /dev/null @@ -1,759 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - 2017 - - - - - - - - - 2018 - - - - - - - - - 2019 - - - - - - - - - 2020 - - - - - - - - - 2021 - - - - - - - - - 2022 - - - - - - - - - 2023 - - - - - - - - - 2024 - - - - - - - - - 2025 - - - - - - - - - - - 10G - - - - - - - 20G - - - - - - - 30G - - - - - - - 40G - - - - - - - 50G - - - - - - - 60G - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Revenue by Sector - - - - - Revenue - - - - - Date - - - - - - - - - Sector - - - - - - - - - - - - - - - - - - - - Automotive - - - - - - - - - - - - - - - - - - - - Banking - - - - - - - - - - - - - - - - - - - - Insurance - - - - - - - - - - - - - - - - - - - - Industrial - - - - - - - - - - - - - - - - - - - - Telecom - - - - - - - - - - - - - - - - - - - - IT - - - - - - - - - - - - - - - - - - - - Pharma - - - - - - - - - - - - \ No newline at end of file diff --git a/docs/images/quickstart_sample.svg b/docs/images/quickstart_sample.svg index 9515eb3fe..3a8714d90 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: Lucida Grande, sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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 1867c943a..54d03589c 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: Lucida Grande, sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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 7bea7c73f..9626df56e 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: Lucida Grande, sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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 14ee6ddef..f6d3b27bf 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: Lucida Grande, sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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 55a4133dd..ca7d31df0 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: Lucida Grande, sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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 f5f5f1ac9..5e878a50b 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: Lucida Grande, sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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 57c37f25a..d3ac5a196 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: Lucida Grande, sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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 089bc128b..86f237892 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: Lucida Grande, sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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 70630560e..66bb02205 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: Lucida Grande, sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, sans-serif; @@ -129,7 +129,7 @@ font-size: 13.0px; } - + @@ -179,7 +179,7 @@ font-size: 13.0px; - + @@ -195,7 +195,7 @@ font-size: 13.0px; - + @@ -373,6 +373,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 a5a2af786..6a318faca 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: Lucida Grande, sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, sans-serif; @@ -129,7 +129,7 @@ font-size: 13.0px; } - + @@ -325,7 +325,7 @@ font-size: 13.0px; - + @@ -341,7 +341,7 @@ font-size: 13.0px; - + @@ -373,6 +373,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 ac2772931..6f792e161 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: Lucida Grande, sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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 d0b215121..05ee7996d 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: Lucida Grande, sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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 aa5461b5d..a389e8df4 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: Lucida Grande, sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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 b4cf5d304..cb32b3f36 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: Lucida Grande, sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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 09068d5c7..6ca911944 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: Lucida Grande, sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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 40e0d3ec8..bde2338d2 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: Lucida Grande, sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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 e1ccb98eb..d548e624c 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: Lucida Grande, sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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 1b45ef4c6..ddb2734f4 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: Lucida Grande, sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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 2b985ccc7..d3f364158 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: Lucida Grande, sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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 8d0a32f5d..2d1730f1a 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: Lucida Grande, sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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 d1243c08b..90593a6c4 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: Lucida Grande, sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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 db1945bbf..cb03f8669 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: Lucida Grande, sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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 ec5f4d357..2bb00a485 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: Lucida Grande, sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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 7c3a7b3f4..73919c858 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: Lucida Grande, sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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 014c52bef..d51ed0668 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: Lucida Grande, sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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 3fcd8e72e..2ac47716f 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: Lucida Grande, sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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 c86626b0e..103b2575b 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: Lucida Grande, sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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 d95b60063..8c1927409 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: Lucida Grande, sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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 b2c3c2445..57f4db34b 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: Lucida Grande, sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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; - + @@ -307,6 +307,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 d5e612379..44e2b7af4 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: Lucida Grande, sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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; - + @@ -307,6 +307,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 8b122094a..be6bf5b59 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: Lucida Grande, sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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 379c36bee..3674913b3 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: Lucida Grande, sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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 40034fdd2..e3754dbd2 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: Lucida Grande, sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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 e2c9bd78c..10c8b0189 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: Lucida Grande, sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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 49ff321cf..304d50eae 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: Lucida Grande, sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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 50b3420dc..9253dcebf 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: Lucida Grande, sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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 37f7ba086..3762d692b 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: Lucida Grande, sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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 f9a0d1a87..e105d7c09 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: Lucida Grande, sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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 af75fa9d8..4bc88eb5b 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: Lucida Grande, sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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 cbac1f0b7..4299988b9 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: Lucida Grande, sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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 adefc4aac..26816200d 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: Lucida Grande, sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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 e3c8d254f..27d7f4d27 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: Lucida Grande, sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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 1349684e1..40f2e5136 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: Lucida Grande, sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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 f3751e491..6c80b5d3a 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: Lucida Grande, sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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 0953a2412..a68847fb4 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: Lucida Grande, sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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 550548276..a835d3ccd 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: Lucida Grande, sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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 e31b3774f..f8561aa1a 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: Lucida Grande, sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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 28c09da80..fc1ab1531 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: Lucida Grande, sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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 c7c4abda7..bf580ce18 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: Lucida Grande, sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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 76662963c..c59ca2792 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: Lucida Grande, sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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 ca6e1d575..2569dd81a 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: Lucida Grande, sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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 0b87b81a8..960a2e6bf 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: Lucida Grande, sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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 60cb828a3..328a6d60e 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: Lucida Grande, sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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; - + @@ -427,6 +427,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 53d7a94a5..32e5d317c 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: Lucida Grande, sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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; - + @@ -427,6 +427,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 2d4391f89..a1c952e15 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: Lucida Grande, sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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/samples/candlestick/candlestick_simple_dark.svg b/docs/images/samples/candlestick/candlestick_simple_dark.svg index 2415efe3c..cb7df1a80 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: Lucida Grande, sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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/samples/candlestick/preview_candlestick_settings_stat_api.svg b/docs/images/samples/candlestick/preview_candlestick_settings_stat_api.svg index ce71499ec..20cb53eca 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: Lucida Grande, sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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; - + @@ -427,6 +427,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 ea985a9ba..3d576c53a 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: Lucida Grande, sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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; - + @@ -427,6 +427,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 75d39a4ab..3e0613b91 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: Lucida Grande, sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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 6deb8917c..deda00150 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: Lucida Grande, sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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 e1eccdf7f..01cd078fc 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: Lucida Grande, sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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 0c740e3a3..b47bc78b9 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: Lucida Grande, sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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 a8e7e7e48..571fcf128 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: Lucida Grande, sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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 c13d4b6cf..87fb7b2c9 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: Lucida Grande, sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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 19d6bd8a7..cc9bf7987 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: Lucida Grande, sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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 4a7759fad..cdf8b3932 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: Lucida Grande, sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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 040e6f73b..4a545d31b 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: Lucida Grande, sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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 8352520a1..df498c571 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: Lucida Grande, sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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 eee1993af..ce4b4c1e3 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: Lucida Grande, sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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 9dad78c3c..9f65e32ed 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: Lucida Grande, sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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 78afa1a67..eb7bbf0ee 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: Lucida Grande, sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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 e806e75e6..83b3852ed 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: Lucida Grande, sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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 6a949818b..6fbd0f342 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: Lucida Grande, sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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 bcfd82c0a..5df244ab8 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: Lucida Grande, sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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 bc18e026e..f45e183df 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: Lucida Grande, sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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 e2b131b00..f88bc30d8 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: Lucida Grande, sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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 baea79615..51ab69344 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: Lucida Grande, sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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 be4bc73ec..f1dc9e123 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: Lucida Grande, sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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 1eab00d46..d3fbbafff 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: Lucida Grande, sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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 d72ea0395..6041d267c 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: Lucida Grande, sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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 e801812af..bca08bd83 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: Lucida Grande, sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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 b49b25124..c0cb931fb 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: Lucida Grande, sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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 3395d5a7c..dad2742ff 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: Lucida Grande, sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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 87095aa02..6ad23343e 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: Lucida Grande, sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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 c083373c6..9ae7ceb08 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: Lucida Grande, sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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 16cc62d14..5fd610cf1 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: Lucida Grande, sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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 6868e74c7..bd25bbb2e 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: Lucida Grande, sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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 20f0b6c58..fa6562cb3 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: Lucida Grande, sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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 232ab4e14..607e7aedd 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: Lucida Grande, sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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 939d5bcc8..a225b8c1e 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: Lucida Grande, sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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 f1aa21ac0..8876993e6 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: Lucida Grande, sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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 2d866a25a..7bea9799c 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: Lucida Grande, sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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 8b212837b..613a31ee7 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: Lucida Grande, sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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 05847bccc..f145a3748 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: Lucida Grande, sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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 3b7c6efbf..142d60a97 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: Lucida Grande, sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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 11dadbfee..e9050cc85 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: Lucida Grande, sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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 e5aa13666..34c767471 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: Lucida Grande, sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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 92fae2132..cd7f047ee 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: Lucida Grande, sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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 25ddc3598..34f3bf6f1 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: Lucida Grande, sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, sans-serif; @@ -129,7 +129,7 @@ font-size: 13.0px; } - + @@ -165,7 +165,7 @@ font-size: 13.0px; - + @@ -369,7 +369,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/usa_conus_albers_dark.svg b/docs/images/samples/geo/usa_conus_albers_dark.svg index 588c70e21..3ce1c574b 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: Lucida Grande, sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, sans-serif; @@ -129,7 +129,7 @@ font-size: 13.0px; } - + @@ -258,7 +258,7 @@ font-size: 13.0px; - + @@ -462,7 +462,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/usa_election_results_joined.svg b/docs/images/samples/geo/usa_election_results_joined.svg index 0377ac94a..7ff23bf98 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: Lucida Grande, sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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 009cb501f..fbbe3d562 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: Lucida Grande, sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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 00d877ded..809017f3b 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: Lucida Grande, sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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 4985ce476..aca75ed83 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: Lucida Grande, sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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 ae81c0283..3dbf41f08 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: Lucida Grande, sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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 0bd74b301..c8b07cf89 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: Lucida Grande, sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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 4efdad396..8df1d2c36 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: Lucida Grande, sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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 99dc5b042..a30068934 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: Lucida Grande, sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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 1a0ccc26b..d00490915 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: Lucida Grande, sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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 587e74ac1..07e3db5c6 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: Lucida Grande, sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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 2f26faa2b..b477f2964 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: Lucida Grande, sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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 edfe639df..36e2b48e6 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: Lucida Grande, sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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 b764b283e..f77442963 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: Lucida Grande, sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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 38a57b69d..73a70ce45 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: Lucida Grande, sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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 715557813..1ed922939 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: Lucida Grande, sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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 79ead93b6..4b8442cd3 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: Lucida Grande, sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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 15369799a..f9372cefd 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: Lucida Grande, sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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 521a13365..f62895c7a 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: Lucida Grande, sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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 1a2796187..21865f047 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: Lucida Grande, sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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 951258a16..53f15a3b8 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: Lucida Grande, sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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 35c1bbe8e..2c643c212 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: Lucida Grande, sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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 7f708af09..5d0f04b7c 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: Lucida Grande, sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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 13dfcb90e..f44296765 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: Lucida Grande, sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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 a20938474..61b5c30f9 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: Lucida Grande, sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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 621e4611a..2bfd7fb6d 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: Lucida Grande, sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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 aeeede12b..ff46cff44 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: Lucida Grande, sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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 b83b1cc91..23af55e60 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: Lucida Grande, sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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 ce84636ed..283decae4 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: Lucida Grande, sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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 66df67a16..f86ea60da 100644 --- a/docs/images/samples/line/line_and_path_comp_2.svg +++ b/docs/images/samples/line/line_and_path_comp_2.svg @@ -1,5 +1,5 @@ - + @@ -15,117 +15,117 @@ 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, sans-serif; @@ -134,7 +134,7 @@ font-size: 13.0px; } - + @@ -162,7 +162,7 @@ font-size: 13.0px; - + @@ -174,7 +174,7 @@ font-size: 13.0px; - + @@ -264,7 +264,7 @@ font-size: 13.0px; - + @@ -279,117 +279,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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, sans-serif; @@ -398,7 +398,7 @@ font-size: 13.0px; } - + @@ -426,7 +426,7 @@ font-size: 13.0px; - + @@ -438,7 +438,7 @@ font-size: 13.0px; - + @@ -528,7 +528,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 ec9f1c696..e26e2248f 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 @@ -1,5 +1,5 @@ - + @@ -15,117 +15,117 @@ 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, sans-serif; @@ -134,7 +134,7 @@ font-size: 13.0px; } - + @@ -225,7 +225,7 @@ font-size: 13.0px; - + @@ -237,7 +237,7 @@ font-size: 13.0px; - + @@ -264,7 +264,7 @@ font-size: 13.0px; - + @@ -279,117 +279,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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, sans-serif; @@ -398,7 +398,7 @@ font-size: 13.0px; } - + @@ -489,7 +489,7 @@ font-size: 13.0px; - + @@ -501,7 +501,7 @@ font-size: 13.0px; - + @@ -528,7 +528,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 203adfcd4..ebf92e120 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: Lucida Grande, sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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 e391215a5..a539d2352 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: Lucida Grande, sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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 5b3b3fde1..a0431eb7f 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: Lucida Grande, sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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 6a50d48d1..e872bfb07 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: Lucida Grande, sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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 fc8c4b356..7060ceab2 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: Lucida Grande, sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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 3c2e570f0..d3423b101 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: Lucida Grande, sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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 0dd5498d4..33c9a5b54 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: Lucida Grande, sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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 686e81f47..2ba90992f 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: Lucida Grande, sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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 4ae5cdd42..45f081696 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: Lucida Grande, sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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 03075d0db..f8b76877b 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: Lucida Grande, sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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 6f0f4f9aa..4b48d8f44 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: Lucida Grande, sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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 d66cae3f1..525514a25 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: Lucida Grande, sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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 def56eeb0..4b8e91f52 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: Lucida Grande, sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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; - + @@ -388,6 +388,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 8ba239ff5..341723c73 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: Lucida Grande, sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, sans-serif; @@ -129,7 +129,7 @@ font-size: 13.0px; } - + @@ -344,7 +344,7 @@ font-size: 13.0px; - + @@ -356,7 +356,7 @@ font-size: 13.0px; - + @@ -388,6 +388,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 a47d8d9ba..f4d5d6de6 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 @@ -1,5 +1,5 @@ - + @@ -15,117 +15,117 @@ 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, sans-serif; @@ -134,7 +134,7 @@ font-size: 13.0px; } - + @@ -168,7 +168,7 @@ font-size: 13.0px; - + @@ -180,7 +180,7 @@ font-size: 13.0px; - + @@ -291,7 +291,7 @@ font-size: 13.0px; - + @@ -306,117 +306,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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, sans-serif; @@ -425,7 +425,7 @@ font-size: 13.0px; } - + @@ -459,7 +459,7 @@ font-size: 13.0px; - + @@ -471,7 +471,7 @@ font-size: 13.0px; - + @@ -582,7 +582,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 513a9623c..520389955 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 @@ -1,5 +1,5 @@ - + @@ -15,117 +15,117 @@ 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, sans-serif; @@ -134,7 +134,7 @@ font-size: 13.0px; } - + @@ -252,7 +252,7 @@ font-size: 13.0px; - + @@ -264,7 +264,7 @@ font-size: 13.0px; - + @@ -291,7 +291,7 @@ font-size: 13.0px; - + @@ -306,117 +306,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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, sans-serif; @@ -425,7 +425,7 @@ font-size: 13.0px; } - + @@ -543,7 +543,7 @@ font-size: 13.0px; - + @@ -555,7 +555,7 @@ font-size: 13.0px; - + @@ -582,7 +582,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 8f30a8fd0..47844620a 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: Lucida Grande, sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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 831fe89f1..92d267a2b 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: Lucida Grande, sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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 ecd7d70db..951b237c2 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: Lucida Grande, sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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 4f9853150..5f04014c6 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: Lucida Grande, sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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 267832fb3..057f02643 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: Lucida Grande, sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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 d4970923a..d486238ee 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: Lucida Grande, sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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 1f1c9a42a..806236cc0 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: Lucida Grande, sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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 835a65221..85824441d 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: Lucida Grande, sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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 17b51396d..46dcfa29c 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: Lucida Grande, sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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 5a2e32432..1f0902423 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: Lucida Grande, sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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 0cf0f028a..2124c4706 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: Lucida Grande, sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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 eba7ce542..aeb523e84 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: Lucida Grande, sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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 7cc418368..a148ab042 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: Lucida Grande, sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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 810137b25..e56e61cd9 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: Lucida Grande, sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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 f4a5e1c05..1d72890db 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: Lucida Grande, sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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 63c071b27..4d3df5d9e 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: Lucida Grande, sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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 5ee5765f5..f4908c054 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: Lucida Grande, sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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 ff0697bdc..b0d5614ab 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: Lucida Grande, sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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 bc25db1f4..121818770 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: Lucida Grande, sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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 5f7bb25c8..92c294778 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: Lucida Grande, sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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 2ea09f2d3..63f7b5d7b 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: Lucida Grande, sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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 731da99c8..f67f194b7 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: Lucida Grande, sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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 0283bea00..844e5445f 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: Lucida Grande, sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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 cf5b05db8..4919f5db7 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: Lucida Grande, sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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 f5bfa3964..25981fdb6 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: Lucida Grande, sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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 60a45080b..84bd34fbd 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: Lucida Grande, sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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 3cf3bec2e..600ab0fb8 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: Lucida Grande, sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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 87d73f2d8..4b21cdaa5 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: Lucida Grande, sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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 e764c08c0..81611c004 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: Lucida Grande, sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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 ed899885c..c9f55c19d 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: Lucida Grande, sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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 8804ae206..8d1c3fb49 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: Lucida Grande, sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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 5e870f833..6d222cb72 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: Lucida Grande, sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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 8c69881dc..e991d9a74 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: Lucida Grande, sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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 30b016de2..43b2400e6 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: Lucida Grande, sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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 b42b654a2..c7b06887f 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: Lucida Grande, sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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 3828d753d..b07871398 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: Lucida Grande, sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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 ccdb2597c..b296d6d99 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: Lucida Grande, sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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 519c85506..dc32680e4 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: Lucida Grande, sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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 b36b643c7..5ff5f1577 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: Lucida Grande, sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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 33ed342b8..1a4d6d771 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: Lucida Grande, sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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 071eda123..5f7090c50 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: Lucida Grande, sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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 5121f6c9c..69f0b9ef8 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: Lucida Grande, sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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 c4e0cf8d9..9e6d57867 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: Lucida Grande, sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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 2f47072be..0697c10ae 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: Lucida Grande, sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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 a89f099a2..288a48930 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: Lucida Grande, sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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 bf5395eea..d4cb9b1ee 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: Lucida Grande, sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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 6fb33f096..db06c09e0 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: Lucida Grande, sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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 4440dff5c..7946c0b48 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: Lucida Grande, sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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 656437915..ec67a1b64 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: Lucida Grande, sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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 654b820cd..5df60cf73 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: Lucida Grande, sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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 5d7a3a2b5..b16768651 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: Lucida Grande, sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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 0d2b98011..610a40014 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: Lucida Grande, sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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 54cd9e7fe..b4d60c4d1 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: Lucida Grande, sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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; - + @@ -415,6 +415,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 deda68b92..357859fe4 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: Lucida Grande, sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, sans-serif; @@ -129,7 +129,7 @@ font-size: 13.0px; } - + @@ -312,7 +312,7 @@ font-size: 13.0px; - + @@ -344,7 +344,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/ribbon/ribbon_settings.svg b/docs/images/samples/ribbon/ribbon_settings.svg index ddc9a2a64..df201fb17 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: Lucida Grande, sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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 0102d8fec..ee38b395e 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: Lucida Grande, sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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 7752e9850..bf38d8e9a 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: Lucida Grande, sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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; - + @@ -366,6 +366,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 a004ba968..d1c22f4be 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: Lucida Grande, sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, sans-serif; @@ -129,7 +129,7 @@ font-size: 13.0px; } - + @@ -324,7 +324,7 @@ font-size: 13.0px; - + @@ -344,7 +344,7 @@ font-size: 13.0px; - + @@ -366,6 +366,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 320c4c173..927a80d1d 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: Lucida Grande, sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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 75e8ad0d1..2a18610e2 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: Lucida Grande, sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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 5377257f8..a5b56f2da 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: Lucida Grande, sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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 682b949f0..408646bec 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: Lucida Grande, sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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 7d9be19ab..1e606f2b2 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: Lucida Grande, sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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 35fa4c580..97f17495f 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: Lucida Grande, sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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 aaf1a68f7..b52fd9231 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: Lucida Grande, sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, sans-serif; @@ -129,7 +129,7 @@ font-size: 13.0px; } - + @@ -153,7 +153,7 @@ font-size: 13.0px; - + @@ -169,7 +169,7 @@ font-size: 13.0px; - + @@ -234,6 +234,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 e11aba01b..48eaef205 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: Lucida Grande, sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, sans-serif; @@ -129,7 +129,7 @@ font-size: 13.0px; } - + @@ -196,7 +196,7 @@ font-size: 13.0px; - + @@ -212,7 +212,7 @@ font-size: 13.0px; - + @@ -234,6 +234,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 ef881d053..640fe1637 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: Lucida Grande, sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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 91b7291cb..58a27c9b1 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: Lucida Grande, sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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 003a0e5fa..c117c8238 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: Lucida Grande, sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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 2b41ae7e6..2c520f282 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: Lucida Grande, sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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 a000ba5b3..19947d01f 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: Lucida Grande, sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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 46bb50998..e374e9eaa 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: Lucida Grande, sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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 49b382e1e..230931ae7 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: Lucida Grande, sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #474747; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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 bab5c68b5..77b5ddf60 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: Lucida Grande, sans-serif; font-size: 16.0px; } -#xXxprefixXx0 .plot-subtitle { +#_sample_helper_static_id_prefix_0 .plot-subtitle { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .plot-caption { +#_sample_helper_static_id_prefix_0 .plot-caption { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .hyperlink-element { +#_sample_helper_static_id_prefix_0 .hyperlink-element { fill: #118ed8; font-weight: normal; font-style: normal; } -#xXxprefixXx0 .legend-title { +#_sample_helper_static_id_prefix_0 .legend-title { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .legend-item { +#_sample_helper_static_id_prefix_0 .legend-item { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-x { +#_sample_helper_static_id_prefix_0 .axis-title-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-x { +#_sample_helper_static_id_prefix_0 .axis-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .axis-title-y { +#_sample_helper_static_id_prefix_0 .axis-title-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 15.0px; } -#xXxprefixXx0 .axis-text-y { +#_sample_helper_static_id_prefix_0 .axis-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-x { +#_sample_helper_static_id_prefix_0 .facet-strip-text-x { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, sans-serif; font-size: 13.0px; } -#xXxprefixXx0 .facet-strip-text-y { +#_sample_helper_static_id_prefix_0 .facet-strip-text-y { fill: #bbbbbb; font-weight: normal; font-style: normal;font-family: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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: Lucida Grande, 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 bcde76aa8..e75358127 100644 --- a/docs/kd.tree +++ b/docs/kd.tree @@ -251,5 +251,5 @@
- +