javascript - 仅将 HighChart yAxis 的最小值最大值设置为特定系列

标签 javascript highcharts candlestick-chart

我有一个股票价格烛台系列和一个与烛台系列共享 yAxis 的线条系列。默认情况下,API 自动将图表的 y 轴范围设置为两个系列的最小值/最大值(烛台系列、折线系列)的最小值/最大值

但我想展示烛台系列比折线图更重要。因此,图表的 y 轴最小值/最大值应仅限于烛台系列,即使它切断了线系列。

当图表动态滚动时,应调整 yAxis 最小/最大。

我怎样才能做到这一点?

jsfiddle simple code

var chartData = [
  [1473687000000, 102.65, 105.72, 102.53, 105.44],
  [1473773400000, 107.51, 108.79, 107.24, 107.95],
  [1473859800000, 108.73, 113.03,  108.6, 111.77],
  [1473946200000, 113.86, 115.73, 113.49, 115.57]
];
    
var avgData = [
  [1473687000000, 250],
  [1473773400000, 300],
  [1473859800000, 280],
  [1473946200000, 290]
];

$(function() {
  Highcharts.stockChart('container', {
    // title: {text: '---'},
    rangeSelector: {
      buttons: [
        // { type: 'hour', count: 1, text: '1h' },
        { type: 'day', count: 1, text: '1d' },
        // { type: 'all', count: 1, text: 'All' }
      ],
      selected: 1,
      //inputEnabled: true
    },
    xAxis: [{
      type: 'datetime',
    
    }],
    yAxis: [{
      labels: {
        align: 'right',
        x: -3
      },
      title: {text: 'OHLC'},
      height: '100%',
      lineWidth: 2,
      resize: {
        enabled: true
      }
    }], 

    plotOptions: {
      candlestick: {
        downColor: 'blue',
        upColor: 'red',
        dataGrouping: {
          enabled: false,
        }
      }
    },

    series: [{
      name: 'ohlc',
      type: 'candlestick',
      data: chartData,
    }, {
      name: 'avg',
      type: 'line',
      data: avgData,
    }]
  });
});
dic#container {height: 100%; width: 100%;}
<script src="//code.jquery.com/jquery-3.1.1.min.js"></script>
<script src="//code.highcharts.com/stock/highstock.js"></script>
<script src="//code.highcharts.com/stock/modules/drag-panes.js"></script>
<script src="//code.highcharts.com/stock/modules/exporting.js"></script>
<div id="container"></div>

最佳答案

在“afterDrawChartBox”事件中,您可以将setExtremes方法与candlestick系列中的最小值和最大值一起使用:

Highcharts.addEvent(Highcharts.Chart, 'afterDrawChartBox', function(e) {
    var candlestick = this.series[0];
    this.yAxis[0].setExtremes(candlestick.dataMin, candlestick.dataMax, true, false);
});

现场演示:https://jsfiddle.net/BlackLabel/520km1wv/

API引用:https://api.highcharts.com/class-reference/Highcharts.Axis#setExtremes

关于javascript - 仅将 HighChart yAxis 的最小值最大值设置为特定系列,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/52241437/

相关文章:

javascript - HTML <脚本语言 ="$var",接受什么 $var?

javascript - 获取图像的主色调

highcharts - Highchart - 显示/隐藏 y 轴而不隐藏系列

python - Matplotlib 删除烛台空间以获取缺失数据

c++ - 返回结构成员数组的最有效方法

c# - 使用 C# 从日期、时间、价格创建 OHLC 数据

php - 在网站上显示问题 30 秒

javascript - 使用 JavaScript 选择圆上的点

javascript - Highchart 饼图基础

javascript - 禁用 HighCharts 标签