Skip to content
Snippets Groups Projects
Commit 5dff8e53 authored by Remi  PLANEL's avatar Remi PLANEL
Browse files

add left margin for example

parent a3a2c6a3
No related branches found
No related tags found
No related merge requests found
Pipeline #127641 waiting for manual action with stages
in 6 minutes and 39 seconds
...@@ -4,10 +4,23 @@ import * as d3 from "d3"; ...@@ -4,10 +4,23 @@ import * as d3 from "d3";
import * as Plot from "@observablehq/plot"; import * as Plot from "@observablehq/plot";
import { useDisplay } from "vuetify"; import { useDisplay } from "vuetify";
export interface PlotMargin {
marginTop: number,
marginRight: number,
marginBottom: number,
marginLeft: number
}
const margin = ref<PlotMargin>({
marginTop: 50,
marginRight: 50,
marginBottom: 100,
marginLeft: 40
})
const { width } = useDisplay(); const { width } = useDisplay();
const systemHits = ref(undefined) const systemHits = ref(undefined)
const refseqTaxo = ref(undefined) const refseqTaxo = ref(undefined)
const marginRight = ref(50)
const selectedTaxoRank = ref("phylum") const selectedTaxoRank = ref("phylum")
const taxoRanks: Ref<string[]> = ref([ const taxoRanks: Ref<string[]> = ref([
"species", "species",
...@@ -86,13 +99,13 @@ const systemStatistics = computed(() => { ...@@ -86,13 +99,13 @@ const systemStatistics = computed(() => {
}) })
const distributionOptions = computed(() => { const distributionOptions = computed(() => {
const { marginLeft, marginRight } = toValue(margin)
return { return {
marginBottom: 100, ...toValue(margin),
marginRight: marginRight.value,
y: { label: `% of genomes encoding ${toValue(page)?.title ?? 'the system'}` }, y: { label: `% of genomes encoding ${toValue(page)?.title ?? 'the system'}` },
x: { label: selectedTaxoRank.value, tickRotate: 45 }, x: { label: selectedTaxoRank.value, tickRotate: 45 },
color: { scheme: "plasma", legend: true, domain: [0, 100] }, color: { scheme: "plasma", legend: true, domain: [0, 100], marginLeft: 10 },
width: computedWidth.value - marginRight.value, width: computedWidth.value - marginRight - marginLeft,
marks: [ marks: [
Plot.barY( Plot.barY(
toValue(computedDistribution), toValue(computedDistribution),
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment