2012-08-14 77 views
0

感謝stackoverflow和其他資源,我已經能夠管理讓柱狀圖向下鑽取到樣條圖,只要樣條圖只有一組數據。Highcharts - 使用系列數據進行樣條向下鑽取的列

我現在希望柱形圖鑽取到具有系列數據的樣條曲線,以便樣條曲線圖會顯示多行,但我似乎無法使其工作。

這裏的的jsfiddle:http://jsfiddle.net/phdjsep/qjQPm/3/

如果你能想出解決辦法,請您提供一個簡要的解釋?我一直在桌子上敲打我的頭幾天。

在此先感謝!

+0

當然我後立即想出解決辦法張貼,但在其他人需要這個,以下是答案:[http://jsfiddle.net/phdjsep/vNfWk/][1] [1]:http://jsfiddle.net/phdjsep/vNfWk/ – phdj 2012-08-14 16:56:09

回答

0

請看看這個例子,我不得不添加額外的js函數的明細正常工作: http://jsfiddle.net/5De8h/6/

function setChartMultiSeries(name, categories, series, color, level, type) { 
     chart.xAxis[0].setCategories(categories); 
     for(x = 0; x < chart.series.length; x++) 
     { 
      chart.series[x].remove(); 
     } 
     for(x = 0; x < chart.series.length; x++) 
     { 
      chart.series[x].remove(); 
     }  

     for(x = 0; x < series.length; x++) 
     { 
      chart.addSeries({ 
       color: series[x].color, 
       name: series[x].name, 
       level: level, 
       data: series[x].data, 
       type: type 
      }); 
     } 

    } 

亞當