Is there a way to provide some gap between the trace along x axis and the graph border. The marker is only half visible. How to make it visible completely, and the tick range to be non-negative.
Below is my layout properties
const layout: Partial<Layout> = {
title: {
text: ``,
font: {
...style,
size: 14,
},
},
margin: {
b: 55,
t: 40,
},
xaxis: {
tick0: 0,
rangemode: 'nonnegative',
linecolor: '#D3D3D3',
mirror: true,
title: {
standoff: 20,
text: ``,
font: {
...style,
size: 12,
},
},
zeroline: false,
fixedrange: true,
},
yaxis: {
tick0: 0,
rangemode: 'nonnegative',
linecolor: '#D3D3D3',
mirror: true,
title: {
standoff: 15,
text: ``,
font: {
...style,
size: 12,
},
},
zeroline: false,
fixedrange: true,
},
yaxis3: {
rangemode: 'nonnegative',
title: {
standoff: 20,
text: ``,
font: {
...style
size: 12,
},
},
overlaying: 'y',
side: 'right',
zeroline: false,
fixedrange: true,
},
width: tableVisibility ? 540 : 800,
height: tableVisibility ? 408 : 380,
};