更改Plotlyjs条形图的宽度(垂直线)

时间:2019-11-22 17:32:30

标签: charts plotly plotly.js

如何在Plotlyjs中绘制条形图,其中条形具有固定宽度? 这段代码:

var data = [{
  x: [
    '2019-01-01T00:15:00Z', 
    '2019-01-01T00:30:00Z', 
    '2019-01-01T00:45:00Z'],
  y: [20, 14, 23],
  type: 'bar'
}];

Plotly.newPlot('myDiv', data, {}, {showSendToCloud:true});

这绘制了下图: enter image description here

但我希望有以下内容:

enter image description here

0 个答案:

没有答案