user4143172
user4143172

Reputation:

Can highcharts generate a 3d column chart like this?

Can someone provide a demo?

Thanks.

enter image description here

Upvotes: 2

Views: 1891

Answers (1)

Sajeetharan
Sajeetharan

Reputation: 222682

You need to set the z axis,

 zAxis: {
      min: 0,
      max: 3,
      categories: [1,2,3,4],
      labels: {
        y: 5,
        rotation: 18
      }
    }

DEMO

Source : Generate a 3d column chart

Upvotes: 1

Related Questions