在加载/显示图表后从高亮图获取系列数据

时间:2014-08-07 10:25:29

标签: javascript jquery highcharts

如何从加载的高图中获取系列数据,我想在另一种方法上检索。

加载高图:

HTML:

<div id="container" style="height: 400px; min-width: 310px"></div>

JS:

function generateHighchart(){

  $('#container').highcharts({
    chart: {
        renderTo: 'container',
        type: 'bar'
    },
    title: {
        text: 'Fruit Consumption'
    },
    xAxis: {
        categories: ['Apples', 'Bananas', 'Oranges']
    },
    yAxis: {
        title: {
            text: 'Fruit eaten'
        }
    },
    series: [{
        name: 'Jane',
        data: [1, 0, 4]},
    {
        name: 'John',
        data: [5, 7, 3]}]
   });
}

function getSeriqalData(){
    var Myseries = // how to retrieve series data here for using some other purpose 
}

我已经审阅了此链接,但检索了相同的功能本身     Get Highcharts Series Data after Load

我正在动态生成2到5个图表,在加载图表之后我想将该系列值重新用于其他目的。

0 个答案:

没有答案