I am trying to implement the 3D library of highcharts. I have had good success when using the scatter
option for series, but when I try to use the column
option I have some formatting issues.
My main problem is my dataset is very volatile, I can have any number of z-axis categories, and have varying amounts of [x,y] points in each category. The x-axis and y-axis format correctly, but the z-axis does not. It is constantly too deep or too shallow (depending on my dataset and my format parameters). Here is a fiddle of what I have so far http://jsfiddle.net/rhavelka/owyrmc7o/2/
I don't want to to have to change the plotOptions:{ column:{ depth } }
and the plotOptions:{ series:{ pointPadding} }
variables on the fly to fit the dataset if I don't have to.
tl;dr The highcharts z-axis doesn't format it's depth depending on dataset size. How do I fix that?