Hi,
I have one issue how to add auto height in cavasJs
you have to check Below link
https://imgur.com/gallery/JmJ8H6l
this is my example
https://jsfiddle.net/QwZuf/1659/
*****************************
below my script
*****************************
var chartBestScore = new CanvasJS.Chart(“chartBestScore”, {
// height:5500,//in pixels
animationEnabled: true,
axisX: {
labelFontSize: 12
},
axisY2: {
maximum: 100,
labelFontSize: 14
},
toolTip: {
enabled: false,
},
dataPointWidth: 19,
data: [{
indexLabelFontColor: “#000000”,
indexLabelPlacement: “inside”,
type: “bar”,
indexLabelFontSize: 15,
axisYType: “secondary”,
color: “#1B77D1”,
indexLabel: “indexLabel”,
dataPoints: bestScoredAreas
}]
});
chartBestScore.render();