reactjs Apex图表工具栏未显示所有工具[已关闭]

whitzsjs  于 2022-12-26  发布在  React
关注(0)|答案(2)|浏览(126)

已关闭。此问题需要details or clarity。当前不接受答案。
**想要改进此问题?**添加详细信息并通过editing this post阐明问题。

2天前关闭。
Improve this question
Only download tool visible not all the options
只有这个下载图标是有在工具栏中我想在工具栏中的所有选项请帮助我怎么做

chart: { height: 350, type: "bar", toolbar: { show: true, tools: { download: true, selection: true, zoom: true, zoomin: true, zoomout: true, pan: true, reset: true }, }, zoom: { enabled: true } },
nx7onnlm

nx7onnlm1#

我在xaxis中添加了以下内容,从而解决了这个问题:第一个月

3df52oht

3df52oht2#

toolbar: {
    tools: {
        download: true,
        selection: true,
        zoom: true,
        zoomin: true,
        zoomout: true,
        pan: true,
        reset: true | '<img src="/static/icons/reset.png" width="20">',
        customIcons: []
    }
}

相关问题