Chart.js-缩小图例以适合数据

问题描述 投票:0回答:1

有一个非常简单的图表,数据集中有3个系列,但是我想缩小图表,以使其不会用空格缩放到下个月,对此是否可以选择?

我感觉我已经尝试了所有方法,在右侧看到它如何包含Jun,因为最后一项的日期将类似于2019-05-02,但如果可能的话,我想隐藏空格!

My example chart

xAxes: [{
  stacked: true,
  beginAtZero: true,
  bounds: 'ticks',
  ticks: {
    stepSize: 1,
    min: 0,
    autoSkip: true
  },
  type: 'time',
  position: 'bottom',
  time: {
    tooltipFormat: 'YYYY/MM/DD',
    unit: 'month',
  },
  scaleLabel: {
    display: true,
    labelString: 'Date Range',
    fontSize: 20
  }
}]
javascript charts chart.js
1个回答
0
投票

是因为bounds: 'ticks'

如果写入bounds: 'data'(或因为data是默认设置而将其删除,则将其删除)将没有空格。

© www.soinside.com 2019 - 2024. All rights reserved.