D3值之间的大差异

时间:2019-02-24 07:46:20

标签: javascript d3.js

我只是从D3开始,试图在折线图中显示一些数据。

很简单,日期时间为X,整数值为Y

这是我到目前为止的内容: enter image description here

基本上,我在4月18日末有4个条目,而在4月19日中只有1个条目。我想知道是否有更好的方法来显示此数据。我当时正在考虑使用Brusher,但不确定是否有更好,更简单的解决方案。

我的数据集:

Eigen/src/Core

这是我的组件:

const data = [
  {
    x: new Date('2018-04-18T10:45:03.123+00:00'),
    y: -1
  },
  {
    x: new Date('2018-04-19T12:45:03+00:00'),
    y: 5
  },
  {
    x: new Date('2018-04-19T13:45:03+01:00'),
    y: 20
  },
  {
    x: new Date('2018-04-20T12:45:03+04:00'),
    y: 3
  },
  {
    x: new Date('2019-04-20T12:45:03+04:00'),
    y: 3
  }
]

0 个答案:

没有答案