0

データを HighCharts/HighStock に表示する最も簡単な方法は何ですか? 別のソースから JavaScript 配列を作成していますが、JavaScript 配列データをシリーズに割り当てる方法がわかりません。他の例や投稿を見てきましたが、わかりません。役立つポインタやチュートリアルへのリンクをいただければ幸いです。

arClosingDates[0] = '2/1/2013'
arClosingDates[1] = '2/2/2013'
arClosingDates[2] = '2/3/2013'
arClosingDates[3] = '2/4/2013'
arClosingDates[4] = '2/5/2013'

arClosingPrices[0] = 3.23
arClosingPrices[1] = 3.28
arClosingPrices[2] = 3.56
arClosingPrices[3] = 3.90
arClosingPrices[4] = 3.23


    $('#Chart1').highcharts('StockChart', {

        rangeSelector : {
            selected : 1
        },

        title : {
            text : 'Test Stock Price'
        },

        series : [{
            name : 'Test',
            data : [arClosingDates[],arClosingPrices[]],
            tooltip: {
                valueDecimals: 2
            }
        }]
    });
4

1 に答える 1