How to combine highcharts (heatmap) and table (mapping each table row with heatmap row)?

冷暖自知 提交于 2019-12-25 07:26:40

问题


I am generating heatmap but at the same time I have one table which has corresponding information for each row in heatmap so I want to keep both side by side.

Below is sample link for heatmap code. http://jsfiddle.net/gh/get/jquery/1.9.1/highslide-software/highcharts.com/tree/master/samples/highcharts/demo/heatmap/

html code for table:

<table cellpadding=0,celspacing=12>
     <tr><td>Monday</td><td>Smith</td><td>50</td></tr>
    <tr><td>Tuesday</td><td>Jackson</td><td>90</td></tr>
    <tr><td>Wednesday</td><td>Doe</td><td>80</td></tr>
   <tr><td>Thursday</td><td>Doe</td><td>80</td></tr>
   <tr><td>Friday</td><td>Doe</td><td>80</td></tr>
</table>

How can I embed html code in highcharts?


回答1:


You can use use multiple yAxis (per each col) with enabled ticks / lineWidth params.

yAxis: [{
        categories: ['Monday', 'Tuesday', 'Wednesday', 'Thursday', 'Friday'],
        title: null
    },{
          linkedTo: 0,
        tickLength:100,
        tickWidth: 2,
        opposite: true,
        title: null,
         lineWidth: 2,
        categories: ['Monday', 'Tuesday', 'Wednesday', 'Thursday', 'Friday'],
    },{
          linkedTo: 0,
        tickLength:100,
        tickWidth: 2,
        opposite: true,
        title: null,
        lineWidth: 2,
        categories: ['Smith', 'Jackson', 'Doe', 'Doe', 'Doe'],
    },{
          linkedTo: 0,
        gridLineWidth: 2,
        tickLength:100,
        tickWidth: 2,
        opposite: true,
        title: null,
         lineWidth: 2,
        categories: ['10', '20', '40', '59', '23'],
    }],

Example: - http://jsfiddle.net/0qmt0mkq/



来源:https://stackoverflow.com/questions/37396410/how-to-combine-highcharts-heatmap-and-table-mapping-each-table-row-with-heatm

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!