相对条形图叠加在chart.js中的折线图上 [英] Relative bar chart overlay on line chart in chart.js

查看:48
本文介绍了相对条形图叠加在chart.js中的折线图上的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我正在尝试在chart.js中构建一个图表,以显示虚拟商品的价格数据,以折线图显示定价,并以备用条形图显示销售量,如下所示:

I'm trying to build a chart in chart.js, showing price data of a virtual item, with a line chart showing pricing, and a backlay bar chart, showing sales volume, like this:

我的问题是,两者的y轴都相同,这意味着价格数据显示在底部,没有明显的差异,因为数量有成百上千.

My issue is, the y-axis is the same for both, meaning the price data is shown at the bottom with unnoticeable differences, since the volume is in the hundreds.

我希望价格数据显示在y轴上,条形图相对显示,最大体积显示为100%高度,而不是y轴上的值,更像这样:

I want the price data to be on the y-axis, with the bars shown relatively, with the highest volume being shown as 100% height, not the values on the y-axis, something more like this:

这可能吗,怎么办?谢谢!

Is this possible, and how would it be done? Thanks!

代码:

let marketData = [["Nov 28 2018 20: +0",30.332,"103"],["Nov 28 2018 21: +0",25.801,"188"],["Nov 28 2018 22: +0",25.451,"262"],["Nov 28 2018 23: +0",12.484,"693"]];

let lineData = [];
let barData = [];
let labels = [];

marketData.forEach(function(thing) {
    labels.push(thing[0].replace(' +0', '00'));
    lineData.push(thing[1]);
    barData.push(thing[2]);
});

new Chart(document.getElementById("mixed-chart"), {
    type: 'bar',
    data: {
      labels: labels,
      datasets: [
        {
          label: "Price",
          type: "line",
          borderColor: "#3e95cd",
          data: lineData,
          fill: false
        },
        {
          label: "Sold",
          type: "bar",
          backgroundColor: "rgba(0,0,0,0.2)",
          data: barData
        }
      ]
    },
    options: {
      title: {
        display: true,
        text: 'Sale price vs sale volume'
      },
      legend: { display: false }
    }
});

推荐答案

使用第二个y轴为钢筋系列指定不同的比例尺

use a second y-axis to give the bar series a different scale

使用属性-> yAxisID

然后在 scales.yAxes 选项

请参阅以下工作摘要...

see following working snippet...

$(document).ready(function() {
  let marketData = [["Nov 28 2018 20: +0",30.332,"103"],["Nov 28 2018 21: +0",25.801,"188"],["Nov 28 2018 22: +0",25.451,"262"],["Nov 28 2018 23: +0",12.484,"693"]];

  let lineData = [];
  let barData = [];
  let labels = [];

  marketData.forEach(function(thing) {
    labels.push(thing[0].replace(' +0', '00'));
    lineData.push(thing[1]);
    barData.push(thing[2]);
  });

  new Chart(document.getElementById("mixed-chart"), {
    type: 'bar',
    data: {
      labels: labels,
      datasets: [
        {
          label: "Price",
          type: "line",
          borderColor: "#3e95cd",
          data: lineData,
          fill: false,
          yAxisID: 'A'  // <-- set y-axis id
        },
        {
          label: "Sold",
          type: "bar",
          backgroundColor: "rgba(0,0,0,0.2)",
          data: barData,
          yAxisID: 'B'  // <-- set y-axis id
        }
      ]
    },
    options: {
      title: {
        display: true,
        text: 'Sale price vs sale volume'
      },
      legend: {display: false},
      scales: {
        yAxes: [{
          id: 'A',  // <-- set y-axis id
          position: 'left',
        }, {
          id: 'B',  // <-- set y-axis id
          position: 'right',
          
          // hide grid lines and labels
          gridLines: {
            display: false
          },
          ticks: {
            display: false
          }
        }]
      }
    }
  });
});

<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/Chart.js/2.7.2/Chart.bundle.min.js"></script>
<canvas id="mixed-chart"></canvas>

这篇关于相对条形图叠加在chart.js中的折线图上的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆