更改工具栏中的图标放大图标react-apexchart

问题描述 投票:0回答:1

react-apexchart软件包中工具栏上的图标是否可以更改?

例如,在这里我要自定义顶点图表上工具栏菜单上的缩放和重置图标enter image description here

javascript reactjs charts icons apexcharts
1个回答
1
投票

chart.toolbar.tools键中,可以使用字符串而不是布尔值来使用自定义图像。

示例

chart: {
  toolbar: {
    tools: {
      zoom: '<img src="/static/icons/zoom.png" width="20">',
      zoomin: true,
      zoomout: true,
      reset: '<img src="/static/icons/reset.png" width="20">'
    }
  },
}
© www.soinside.com 2019 - 2024. All rights reserved.