2

ここでは、ハイストックが期待どおりに機能していないようです

http://jsfiddle.net/gCuLJ/1/

上と高さが固定された y 軸を持つハイストック チャートを単純に作成しました。

次に、最初のグラフの下にグラフを積み重ねるように上と高さを設定した新しいy軸を追加しました。

次に、2 番目の y 軸シリーズにいくつかのフラグを設定します。

フラグは、最初の y 軸シリーズのどこかに表示されています。

ボタン ハンドラー コードを追加します。

$('#button').click(function() {
    var chart = $('#container').highcharts();

    chart.addAxis({
        id:'secondY',            
        top:300,// making this 140 positions flags correctly
        height:150
    });

    chart.addSeries({
        id:'adbe',
        yAxis:'secondY',
        name: 'ADBE', 
        data: ADBE
    });
    $(this).attr('disabled', true);

    chart.addSeries(
    // the event marker flags
        {
            type : 'flags',
            data : [{
                x : Date.UTC(2011, 3, 25),
                title : 'H',
                text : 'Euro Contained by Channel Resistance'
            }, {
                x : Date.UTC(2011, 3, 28),
                title : 'G',
                text : 'EURUSD: Bulls Clear Path to 1.50 Figure'
            }],
            onSeries : 'adbe',
            shape : 'circlepin',
            width : 16
        });


});
4

1 に答える 1

1

答えはここにあります: http://jsfiddle.net/nmccready/wXZ4H/1/https://github.com/highslide-software/highcharts.com/issues/2425

必要な yAxis に ID を割り当てる必要があります。

$(function() {
$('#container').highcharts('StockChart', {
    chart: {
            zoomType: 'x',
            marginTop: 100, //avoid overlapping with navigator
            spacingLeft: 0
        },
    scrollbar: {
        enabled: false
    },

    navigator: {
        enabled: true,
        top: 40
    },

    rangeSelector: {
        selected: 1
    },
    yAxis:[{
        id: 'firstY',
        top:140,
        height:150
    }],
    series: [{
        id:'msft',
        name: 'MSFT',            
        data: MSFT,
        yAxis: 'firstY'
    }]
});

$('#button').click(function() {
    var chart = $('#container').highcharts();

    chart.addAxis({
        title:'duh',
        id:'secondY',            
        top:300,
        height:150
    });

    chart.addSeries({
        id:'adbe',
        yAxis:'secondY',
        name: 'ADBE', 
        data: ADBE
    });
    $(this).attr('disabled', true);

    chart.addSeries(
    // the event marker flags
        {
        yAxis:'firstY',
            type : 'flags',
            data : [{
                x : Date.UTC(2011, 3, 25),
                title : 'H',
                text : 'Euro Contained by Channel Resistance'
            }, {
                x : Date.UTC(2011, 3, 28),
                title : 'G',
                text : 'EURUSD: Bulls Clear Path to 1.50 Figure'
            }],
            onSeries : 'msft',
            shape : 'circlepin',
            width : 16
        });



});

});

于 2014-03-25T00:08:51.090 に答える