requested data, the displayed line chart is not in the specified interval
tooltip: {
trigger: "axis",
axisPointer: {
type: "cross"
}
},
grid: {
left: "3%",
right: "4%",
bottom: "3%",
containLabel: true
},
dataZoom: [
{
type: "inside",
start: 1,
end: 100
}
],
xAxis: {
type: "category",
data: [],
axisLabel: {
formatter: function (value, idx) {
var date = new Date(value);
return idx === 0 ? value : [date.getMonth() + 1, date.getDate()].join("-");
}
},
splitLine: {
show: false
},
boundaryGap: false
},
yAxis: {
axisLabel: {
formatter: function (val) {
return val * 2;
}
},
min: 0,
max: 110,
splitNumber: 10,
splitLine: {
show: false
}
},
series: []
in fact, the range of data is between 70 and 100. Why is this happening?