Попытка получить линейную диаграмму в диаграмме JS. Я хочу, чтобы метки yAxis были только 0, 250k, 500k, 750k.
Как изменить метки, чтобы они всегда имели как минимум 0?
var lineChartData = {
labels: ["Jun 1", "Jun 2", "jun 3", "Jun 4", "jun 5", "Jun 6", "Jun 7", "Jun 8", "Jun 9", "Jun
10", "Jun 11", "Jun 12", "Jun 13", "Jun 14", "Jun 15"],
datasets: [{
fillColor: "rgba(220,220,220,0)",
strokeColor: "rgba(220,180,0,1)",
pointColor: "#ffc000",
data: [190, 200, 420, 390, 150, 250, 160, 155, 200, 260, 240, 500, 300, 210, 230, 270]
},
{
fillColor: "rgba(151,187,205,0)",
strokeColor: "#ff1e6d",
pointColor: "#ff1e6d",
data: [290, 390, 300, 440, 625, 375, 390, 325, 280, 295, 385, 295, 485, 280, 265]
}]
}
Chart.defaults.global.animationSteps = 50;
Chart.defaults.global.tooltipYPadding = 16;
Chart.defaults.global.tooltipCornerRadius = 0;
Chart.defaults.global.tooltipTitleFontStyle = "normal";
Chart.defaults.global.tooltipFillColor = "rgba(0,160,0,0.8)";
Chart.defaults.global.animationEasing = "easeOutBounce";
Chart.defaults.global.responsive = true;
Chart.defaults.global.scaleLineColor = "#816cab";
Chart.defaults.global.scaleFontSize = 16;
Chart.defaults.global.scaleFontColor = "white";
var ctx = document.getElementById("canvas").getContext("2d");
var LineChartDemo = new Chart(ctx).Line(lineChartData, {
pointDotRadius: 10,
bezierCurve: false,
scaleShowVerticalLines: true,
scaleGridLineColor: "#816cab"
});