javascript - set width of column in percentage in highcharts -
javascript - set width of column in percentage in highcharts -
how set width of column in percentage in highcharts
options = { chart: { renderto: 'container', type: 'column' }, title: { text: 'data extracted html table in page' }, xaxis: { }, yaxis: { title: { text: 'units' } }, tooltip: { formatter: function() { homecoming '<b>'+ this.series.name +'</b><br/>'+ this.y +' '+ this.x.tolowercase()+''+this.percentage; } }, plotoptions: { column: { pointwidth: 50 } } };
unfortunately, percent point width not supported.
javascript highcharts
Comments
Post a Comment