I’m display a 3D Surface using plot.js and I’m having problem with the layout of the chart in the pane.
The 3D surface is showing very nicely, and it’s FAST
The only problem is that there is a lot of empty space above the 3D surface and not enough space below it so that in certain angles the corner of the 3D surface is clipped
The options I use for the graph are:
var args={
Width: 902,
Height: 671
};
var options = {
autosize: true,
width: args.Width,
height: args.Height,
scene: {
xaxis: {
showline: false,
title: 'XAxis',
automargin: true,
type: 'log',
autorange: true,
},
yaxis: {
showline: false,
title: 'YAxis',
automargin: true,
autorange: true,
},
zaxis: {
showline: false,
title: 'ZAxis',
automargin: true,
//type: 'log',
autorange: true
}
}
};
Is there some option to move the center of the 3D surface?
Thanks,
Nadav