Chart.js我们怎么能让一个列不能从0开始

时间:2018-05-03 08:52:01

标签: asp.net-mvc chart.js

我正在尝试制作一个图表,其中有几列需要浮动。如何实现这一目标?

enter image description here 感谢。

1 个答案:

答案 0 :(得分:0)

这是瀑布图,Chart.js中没有。请参阅问题on Github

但是,有人为Chart.js制作了这样的插件,available here

这个插件的使用很简单,如下所示:

import waterFallPlugin from 'chartjs-plugin-waterfall';

var chart = new Chart(ctx, {
    plugins: [waterFallPlugin]
});