user3660385
user3660385

Reputation: 1

In highchart how to plot the line in 3d container

Please any one help me. How to plot the line chart in 3d Highcharts. They provide the example chart for 3D column chart but i want 3d line chart. How to plot the line chart instead of Column chart.

Thanks in Advance.

Upvotes: 0

Views: 1866

Answers (1)

Erik B
Erik B

Reputation: 21

Plotting lines is just line plotting points, originally shown here

To change that plot from points to lines, first change the colorByPoint to false. Then add lineWidth: 1. That will get you lines. To remove the vertex markers, add to plotOptions.scatter:

marker: {
    enabled: false // true removes vertex markers
}

Finished example here

Upvotes: 2

Related Questions