如何从顶点图表的图表中删除图例、标签和所有数字

How do I remove the legend, labels and all the numbers from the graphs from apex charts

我已经尽力了。如果有人可以帮助我,那就太好了。我想要图表上的数字和传说消失

可以通过

禁用图例和数据标签
const options = {
  dataLabels: {
    enabled: false
  },
  legend: {
    show: false
  }
}

编辑

如果您想删除所有额外的图形,请尝试使用迷你图,它只会保留图表并隐藏所有内容。

sparkline: {
  enabled: true
}