[Chartjs]-Is there any way to create "mini" (very small chart) with Chart.js?

2👍

So the solution is define this options set:

{
              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
}

& define height & width to your chart 🙂

Leave a comment