0

HighStock の例 2 ペイン チャートを編集して、軸に極端な値を設定すると、ボリューム チャートが消えます。ここに例があります

http://jsfiddle.net/gbcLC/1/

私は 2 ペイン チャートを使用していますが、setExtremes を呼び出すと ( navigator の開始値を設定したいため)、ほとんどの場合、最初のチャートは問題ありませんが、ボリューム チャート (これは私の 2 番目の x 軸です)毎回異なる高さで踊り (x 軸から外れる)、完全に消えることもあります (y 軸自体はまだきれいに見えますが)。

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

    // split the data set into ohlc and volume
    var ohlc = [],
        volume = [],
        dataLength = data.length;

    for (i = 0; i < dataLength; i++) {
        ohlc.push([
            data[i][0], // the date
            data[i][1], // open
            data[i][2], // high
            data[i][3], // low
            data[i][4] // close
        ]);

        volume.push([
            data[i][0], // the date
            data[i][5] // the volume
        ])
    }

    // set the allowed units for data grouping
    var groupingUnits = [[
        'week',                         // unit name
        [1]                             // allowed multiples
    ], [
        'month',
        [1, 2, 3, 4, 6]
    ]];

    // create the chart
    $('#container').highcharts('StockChart', {
                chart: {
                    events: {
                        load: function() {
                            this.xAxis[0].setExtremes(Date.UTC(2008,1,1),Date.UTC(2008,8,1),true,true);
                        }
                    }
                },          
        rangeSelector: {
            selected: 1
        },

        title: {
            text: 'AAPL Historical'
        },

        yAxis: [{
            title: {
                text: 'OHLC'
            },
            height: 200,
            lineWidth: 2
        }, {
            title: {
                text: 'Volume'
            },
            top: 300,
            height: 100,
            offset: 0,
            lineWidth: 2
        }],

        series: [{
            type: 'candlestick',
            name: 'AAPL',
            data: ohlc,
            dataGrouping: {
                units: groupingUnits
            }
        }, {
            type: 'column',
            name: 'Volume',
            data: volume,
            yAxis: 1,
            dataGrouping: {
                units: groupingUnits
            }
        }]
    });
});

});

4

1 に答える 1

0

この問題はアニメーションに関連していますが、最新のマスター ブランチで修正されています。

http://jsfiddle.net/gbcLC/4/

<script src="https://raw.github.com/highslide-software/highcharts.com/master/js/highstock.src.js"></script>
于 2013-03-29T10:55:09.913 に答える