我试图仅在混合/组合图表类型(折线和条形图)中显示折线图的数据标签,但我找不到为条形系列禁用它的方法。
可以在此链接中可视化代码 这是我现有的代码。
var options = {
chart: {
height: 310,
type: 'line',
stacked: false,
},
series: [{
name: 'Series Column',
type: 'column',
data: [23, 11, 22, 27, 13, 22, 37, 21, 44, 22, 30]
}, {
name: 'Series Area',
type: 'area',
data: [44, 55, 41, 67, 22, 43, 21, 41, 56, 27, 43]
}, {
name: 'Series Line',
type: 'line',
data: [30, 25, 36, 30, 45, 35, 64, 52, 59, 36, 39]
}],
markers: {
size: 0
},
dataLabels: {
enabled: true
},
xaxis: {
type:'datetime'
},
yaxis: {
title: {
text: 'Points',
},
min: 0
},
}
var chart = new ApexCharts(
document.querySelector("#chart"),
options
);
chart.render();
是否可以选择关闭混合图表中特定系列的数据标签?