Search code examples
reactjsapexcharts

How can I add gap between bars of each series in React Apexcharts?


How can I add gap between bars of each series in React Apexcharts?

Edit react-apexcharts


Solution

  • Add this config to options:

      stroke: {
        colors: ["transparent"],
        width: 5
      }
    

    For more information, please refer to : Related Document

    Edit react-apexcharts (forked)