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

set correctly marginBottom

parent c301229c
No related branches found
No related tags found
1 merge request!226Resolve "Design of the structure section in a system's page"
Pipeline #126748 waiting for manual action with stages
in 4 minutes and 43 seconds
...@@ -26,7 +26,7 @@ export interface PlotMargin { ...@@ -26,7 +26,7 @@ export interface PlotMargin {
const margin = ref<PlotMargin>({ const margin = ref<PlotMargin>({
marginTop: 100, marginTop: 100,
marginRight: 50, marginRight: 50,
marginBottom: 0, marginBottom: 50,
marginLeft: 150 marginLeft: 150
}) })
...@@ -92,7 +92,7 @@ const computedPDocksMatrixPlotOptions = computed(() => { ...@@ -92,7 +92,7 @@ const computedPDocksMatrixPlotOptions = computed(() => {
x: { axis: "top", label: "Proteins", tickRotate: 45 }, x: { axis: "top", label: "Proteins", tickRotate: 45 },
y: { label: "Proteins" }, y: { label: "Proteins" },
legend: { label: matrix[0] }, legend: { label: matrix[0] },
color: { scheme: "plasma", legend: true, reverse: true }, color: { scheme: "plasma", legend: true, reverse: true, domain: [0, 1] },
marks: [ marks: [
Plot.frame(), Plot.frame(),
Plot.cell(toValue(matrix[1]), { Plot.cell(toValue(matrix[1]), {
......
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