我一直在尝试在apexchart的yaxis上自动定义和设置一个最小值。它可以很好地处理单个yaxis,但是一旦我添加第二个轴,最小值就设置为0。在下面的示例中,我将最小值和最大值记录在控制台中。
这可能是图表库中的一个错误,但我想知道是否有任何解决方法。如果我手动设置最小值,它可以正常工作。
代码笔:https://codepen.io/kogelet/pen/rnmmgje?editors=1111
console.clear();
var options = {
chart: {
height: 380,
width: "100%",
type: "line"
},
series: [
{
name: "Series 1",
data: [10, 20, 30, 40, 50, 60, 70, 80, 90, 100]
},
{
name: "Series 1",
data: [20, 30, 40, 50, 60, 70, 80, 90, 100, 110]
}
],
yaxis: [
{
opposite: false,
min: (min) => {
console.log('Min:', min);
return min;
},
max: (max) => {
console.log('Max:', max);
return max;
}
},
{
opposite: true,
min: (min) => {
console.log('Min:', min);
return min;
},
max: (max) => {
console.log('Max:', max);
return max;
}
}
]
};
var chart = new ApexCharts(document.querySelector("#chart"), options);
chart.render();
暂无答案!
目前还没有任何答案,快来回答吧!