score:12

Accepted answer

You should add marginBottom:

chart = new Highcharts.Chart({
            chart: {
                renderTo: 'container',
                type: 'column',
                marginRight: 130,
                marginBottom: 70 /* HERE */
            },
            title: {
                text: '@Model.Title',
                x: -20 
            }

score:1

Something like this would work:

var height = //get containers original height

var new_height = height + (data.length * 10);

$("#highcharts-0").css("{height:"+new_height+"}");

score:12

There's an API method to set the size of the chart, found on the chart object and called setSize. chart.setSize(width, height) see this example on jsfiddle and the reference.


Related Query

More Query from same tag