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

Fix error on gene group postiion

parent bd1b0e04
No related branches found
No related tags found
No related merge requests found
Pipeline #129044 failed with stages
in 10 minutes and 23 seconds
......@@ -21,9 +21,9 @@ const svgRef = ref(null)
const margin = ref<PlotMargin>({
marginTop: 10,
marginRight: 5,
marginRight: 7,
marginBottom: 30,
marginLeft: 5,
marginLeft: 7,
})
const plotHeight = computed(() => {
......@@ -128,7 +128,7 @@ function draw() {
let gGenes = createOrSelect(svg, "g", "genes")
gGenes
.attr("transform", `translate(${marginLeft},${toValue(height)})`)
.attr("transform", `translate(${marginLeft},0)`)
.call(drawGenes, xScale, yScale)
}
......
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