Remove spaces between columns in HighChart -



Remove spaces between columns in HighChart -

i have little problem. ploting results vs. time, , space between columns wide. results arent uniform in time.

how can remove spaces?

maybe there alternative remove space, dont know it

$('#containerimc').highcharts({ data: { table: document.getelementbyid('datatableimc') }, chart: { type: 'column' }, title: { text: 'lista de tus Ășltimos imc' }, yaxis: { allowdecimals: true, title: { text: 'imc' } } }

this fiddle http://jsfiddle.net/sakyastelios/2kfo92t8/

many everyone

you can alter type of x-axis category adding:

xaxis: { type: 'category' }

see this working fiddle.

x-axis values not anymore handled datetime objects , positioned accrodingly.

highcharts

Comments

Popular posts from this blog

Delphi change the assembly code of a running process -

json - Hibernate and Jackson (java.lang.IllegalStateException: Cannot call sendError() after the response has been committed) -

C++ 11 "class" keyword -