apexcharts / apexcharts.js

📊 Interactive JavaScript Charts built on SVG
https://apexcharts.com
MIT License
14.26k stars 1.29k forks source link

Click on legend causes problem in Brush chart #795

Closed Sumon-miazi closed 5 years ago

Sumon-miazi commented 5 years ago

When I click on one legend it causes a problem in my chart if I scroll brush chart. My chart becomes smaller and smaller and finally gone. I did not use any legend configuration. it's using the default configuration. I have no idea how to resolve this.

made a gif for better understanding.

deepin-screen-recorder_Select area_20190724184845

junedchhipa commented 5 years ago

This is surely a bug, and I have tagged it. For now, you can turn off autoScaling on brush by

options = {
  chart: {
    brush: {
      autoScaleYaxis: false
    }
  }
}