Search code examples
reactjsapexcharts

ApexCharts: change the default blue color of the zoom/pan icons


How can I change the default blue color of the zoom/pan icons in the top right of the chart? https://i.sstatic.net/Ob2Jf.png


Solution

  • You can change it with CSS

    .apexcharts-zoom-icon.apexcharts-selected svg {
      fill: #68e397 !important;
    }
    
    .apexcharts-pan-icon.apexcharts-selected svg {
      stroke: #68e397 !important;
    }