简体   繁体   中英

Displaying highchart columnrange charting xAxis, yAxis and series

I have columnrange charting . I am trying to display xaxsis ,yAxsis and series data on the chart . But somehow i can't display all the categories on yAxis and xAxsis on the chart from the data and i can't display series ,too . This code was working for linechart and updated couple of thing in the code to modify it to columnrange charting but no luck .

I am pushing the data in an array var series = []; and call it in series but doesn't display anything

I saved it in jfiddle since the script is long

Here is the link

Thanks http://jsfiddle.net/a7rmx/

You have two errors:

  • trying to attach series to data, shoule be: series: series
  • wrong format for points, should be: { low: from, high: to, x: x }

See fixed demo: http://jsfiddle.net/a7rmx/45/

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM