如何保持Chartjs条形图中的边栏不受剪裁?

时间:2018-06-13 23:53:36

标签: javascript canvas graph chart.js

我创建了一个chartjs条形图来表示60分钟间隔内的一组测量值。我已设法启动并运行图形,但它的结束条不断被修剪。代码在这里https://jsfiddle.net/bagelboy/yxs9tr5c/

//
var hourBarctx = document.getElementById("hourBarChart");
var hourBarChart = new Chart(hourBarctx, {
  // type: 'line',
  type: 'bar',
  data: {
    labels: [
      // min: moment.unix(new Date(2018, 1, 0, 0, 0, 0).getTime() / 1000),
      // max: moment.unix(new Date(2018, 1, 0, 0, 30, 0).getTime() / 1000),
      moment.unix(new Date(2018, 1, 0, 0, 0, 0).getTime() / 1000),
      moment.unix(new Date(2018, 1, 0, 0, 1, 0).getTime() / 1000),
      moment.unix(new Date(2018, 1, 0, 0, 2, 0).getTime() / 1000),
      moment.unix(new Date(2018, 1, 0, 0, 3, 0).getTime() / 1000),
      moment.unix(new Date(2018, 1, 0, 0, 4, 0).getTime() / 1000),
      moment.unix(new Date(2018, 1, 0, 0, 5, 0).getTime() / 1000),
      moment.unix(new Date(2018, 1, 0, 0, 59, 0).getTime() / 1000),
      moment.unix(new Date(2018, 1, 0, 0, 60, 0).getTime() / 1000),


    ],
    datasets: [{
        label: 'All Units',
        data: [42, 43, 70, 89, 47, 42, 43, 70],
        // backgroundColor: 'rgba(0, 0, 200, 0.1)',
        backgroundColor: 'rgba(0, 99, 132, 0.6)',
        borderColor: 'rgba(0, 99, 132, 1)',
        // borderWidth: 0
        borderWidth: 1,

      },
      {
        label: 'TV',
        data: [],
        backgroundColor: 'rgba(76, 175, 80, 0.1)',
        borderWidth: 1,
      },
      {
        label: 'Light',
        data: [],
        backgroundColor: 'rgba(0, 175, 80, 0.1)',
        borderWidth: 1,
      },
      {
        label: 'AC',
        data: [],
        backgroundColor: 'rgba(76, 0, 80, 0.1)',
        borderWidth: 1,
      }
    ]
  },
  options: {
    tooltips: {
      enabled: true,
      callbacks: {
        label: function(tooltipItem, data) {
          var label = data.labels[tooltipItem.index];
          var val = data.datasets[tooltipItem.datasetIndex].data[tooltipItem.index];
          return label;
        }
      }

    },
    title: {
      display: true,
      text: 'Hour'
    },
    elements: {

    },
    scales: {
      xAxes: [{
        gridLines: {
                offsetGridLines: true
            },
        categoryPercentage: 1.0,
        barPercentage: 1.0,
        type: "time",
        stacked: true,

        time: {
          unit: 'minute',
          unitStepSize: 1,
          displayFormats: {
            // day: 'MM/DD/YYYY hh:mm a X Z ',
            minute: 'mm',
          },
          //new Date(year, month, day, hours, minutes, seconds, milliseconds)
          min: moment.unix(new Date(2018, 1, 0, 0, 0, 0).getTime() / 1000),
          max: moment.unix(new Date(2018, 1, 0, 0, 60, 0).getTime() / 1000),
        }
      }, ],
      yAxes: [{
        // barPercentage: 1,
        // categoryPercentage: 1,
        ticks: {
          beginAtZero: true
        }
      }]
    }
  }
});

任何人都知道如何防止这些被剪裁? enter image description here

1 个答案:

答案 0 :(得分:1)

我认为这是你尝试做轴的方式,它想要显示00-01,01-02等之间的值,在最后一个数据点你的轴没有去凌晨1点,第一个数据点相似,我可以通过改变来修复它:

min: moment.unix(new Date(2018, 1, 0, 0, 0, 0).getTime() / 1000),
max: moment.unix(new Date(2018, 1, 0, 0, 60, 0).getTime() / 1000),

为:

min: moment.unix(new Date(2018, 1, 0, 0, -1, 0).getTime() / 1000),
max: moment.unix(new Date(2018, 1, 0, 0, 61, 0).getTime() / 1000),

可能不完全是你想要的但是在小提琴中(在添加了moment.js作为依赖之后)它并没有切断你的酒吧。

我还没有像这样工作,但是提供的数据可能需要不同才能让它发挥作用。