function inlinePlotOptions(options) {
return {
...options,
style: { ...options.style, display: "inline-block" },
marginLeft: 0,
marginTop: 0,
marginBottom: 0,
marginRight: 0,
margin: 0,
height: options.height || 15,
width: options.width || 40,
x: { ...options.x, axis: null },
y: { ...options.y, axis: null },
color: { ...options.color, legend: false }
};
}