高图到高股票

时间:2015-05-11 16:24:27

标签: highcharts

我希望每个人都做得很好。

我真的很混淆这个" High Chart"。

我的数据:

string '[{"name":"Line001","data":[1,2,3,4]}, 
{"name":"Line002","data":[1,2,3,4]}, 
{"name":"Line003","data":[1,2,3,4]}, 
{"name":"Line004","data":[1,2,3,4]}]'

xAxis = [2000,2001,2002,2003];

我可以毫无问题地创建图表,但我想创建一个高库存,然后开始怀疑。

如何将这些系列和这些值放在高库存中?

记住我已经拥有JSON并且我不想继续浏览另一个页面,因为我已经将它用于High Chart。

我尝试了一些例子,但我真的很困惑。

我将非常感谢你的帮助。

下面你可以看到我正在使用的例子。

$(function () {
    var seriesOptions = [],
        seriesCounter = 0,
        names = ['MSFT', 'AAPL', 'GOOG'],
        // create the chart when all data is loaded
        createChart = function () {

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

                rangeSelector: {
                    selected: 4
                },

                yAxis: {
                    labels: {
                        formatter: function () {
                            return (this.value > 0 ? ' + ' : '') + this.value + '%';
                        }
                    },
                    plotLines: [{
                        value: 0,
                        width: 2,
                        color: 'silver'
                    }]
                },

                plotOptions: {
                    series: {
                        compare: 'percent'
                    }
                },

                tooltip: {
                    pointFormat: '<span style="color:{series.color}">{series.name}</span>: <b>{point.y}</b> ({point.change}%)<br/>',
                    valueDecimals: 2
                },

                series: seriesOptions
            });
        };

    $.each(names, function (i, name) {

        $.getJSON('http://www.highcharts.com/samples/data/jsonp.php?filename=' + name.toLowerCase() + '-c.json&callback=?',    function (data) {

            seriesOptions[i] = {
                name: name,
                data: data
            };

            // As we're loading the data asynchronously, we don't know what order it will arrive. So
            // we keep a counter and create the chart when all the data is loaded.
            seriesCounter += 1;

            if (seriesCounter === names.length) {
                createChart();
            }
        });
    });
});

2 个答案:

答案 0 :(得分:0)

您是否包含了highstock.js文件?
<script src="http://code.highcharts.com/stock/highstock.js"></script>

我经常发现从JS Fiddle示例中测试和构建示例更容易。 For Example.

答案 1 :(得分:0)

我只需要使用JAVASCRIPT格式从PHP中提取日期。

在使用UTC格式后,图表正在运行。

关闭。