有没有办法用Chart.js创建“迷你”(非常小的图表)?

时间:2015-02-15 20:03:40

标签: chart.js

我想知道是否还有用Chart.js创建迷你尺寸的折线图? (任何轴上都没有标签,180px * 60px)

附带示例。

感谢!

mini line chart

1 个答案:

答案 0 :(得分:0)

所以解决方案是定义这个选项集:

{
              bezierCurve:false, //remove curves from your plot
              scaleShowLabels : false, //remove labels
              tooltipEvents:[], //remove trigger from tooltips so they will'nt be show
              pointDot : false, //remove the points markers
              scaleShowGridLines: true //set to false to remove the grids background
}

&安培;定义高度和图表的宽度:)