Is it possible to adjust the minimum and maximum values on the y-axis of the graph below:
new CanvasJS.Chart(this.chartDivId, {
zoomEnabled: true, //Interactive viewing: false for better performance
animationEnabled: true, //Chart animations: false for better performance
title: {
text: "", //No title
fontColor: "rgba(102, 102, 102)",
fontFamily: "Arial"
},
backgroundColor: "rgba(9, 9, 9)", //Modified black
axisX: {
labelFontColor: "rgba(102, 102, 102)", //Modified white
labelFontSize: 12 //Font size
},
axisY: {
labelFontColor: "rgba(102, 102, 102)", //Modified white
labelFontSize: 12 //Font size
},
data: [
{
type: "line", //Line graph
lineColor: "rgba(102, 102, 102)", //Letter color
markerType: "none", //Circle for point marker
dataPoints: [] //Chart data points
}
]
})
I am having trouble making changes to these settings as the instructions on the website are not effective.