Hi,
I am unable to add a gap between yaxislayer and bar graph. Is there a way I can add it?
My code is like:
var data = [{
type: ‘bar’,
x: [20, 14, 23],
y: [‘giraffes’, ‘orangutans’, ‘monkeys’],
orientation: ‘h’
}];
var layout = {
title: ‘Colored Bar Chart’,
barmode: ‘stack’
};
Plotly.newPlot(‘myDiv’, data, layout);