Highcharts-可调整大小的y轴,用于烛台和体积图

问题描述 投票:0回答:1

仍然找不到解决方案,我被迫在这里发表。

我有一个烛台图和“ Highcharts”中的体积图。两者应在同一轴上。调整大小时,两者都应调整为一个。参见下图。enter image description here

当前,Highchart将其作为两个窗格来支持,这对我没有用。任何帮助将不胜感激。enter image description here

highcharts resize candlestick-chart
1个回答
0
投票

调整大小适用于轴,并且系列可以分配给任何轴,因此,如果您在同一yAxis中具有多个系列,那么调整大小将适用于该yAxis中的所有系列。

默认的演示数据量比OHLC数据大1 000 000,因此我在以下演示中进行了调整:https://jsfiddle.net/BlackLabel/oegqudbz/

Highcharts.getJSON('https://www.highcharts.com/samples/data/aapl-ohlcv.json', function (data) {

    // split the data set into ohlc and volume
    var ohlc = [],
        volume = [],
        dataLength = data.length,
        // set the allowed units for data grouping
        groupingUnits = [[
            'week',                         // unit name
            [1]                             // allowed multiples
        ], [
            'month',
            [1, 2, 3, 4, 6]
        ]],

        i = 0;

    for (i; i < dataLength; i += 1) {
        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] / 1e6 // the volume in milions
        ]);
    }


    // create the chart
    Highcharts.stockChart('container', {

        rangeSelector: {
            selected: 1
        },

        title: {
            text: 'AAPL Historical'
        },

        yAxis: [{
            labels: {
                align: 'right',
                x: -3
            },
            title: {
                text: 'OHLC'
            },
            height: '60%',
            lineWidth: 2,
            resize: {
                enabled: true
            }
        }, {
            labels: {
                align: 'right',
                x: -3
            },
            title: {
                text: 'Volume'
            },
            top: '65%',
            height: '35%',
            offset: 0,
            lineWidth: 2
        }],

        tooltip: {
            split: true
        },

        series: [{
            type: 'candlestick',
            name: 'AAPL',
            data: ohlc,
            dataGrouping: {
                units: groupingUnits
            }
        }, {
            type: 'column',
            name: 'Volume',
            data: volume,
            dataGrouping: {
                units: groupingUnits
            }
        }]
    });
});
<script src="https://code.highcharts.com/stock/highstock.js"></script>
<script src="https://code.highcharts.com/stock/modules/data.js"></script>
<script src="https://code.highcharts.com/stock/modules/drag-panes.js"></script>
<script src="https://code.highcharts.com/stock/modules/exporting.js"></script>


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

对于通过可拖动窗格模块可以更改的窗格数(或yAxes)没有限制,因此您可以为一个调整器分配2个以上轴和2个以上调整器,而将2个以上轴分配给一个调整器。 API参考中的更多信息:https://api.highcharts.com/highstock/yAxis.resize

© www.soinside.com 2019 - 2024. All rights reserved.