Stacked bar overflows container height

Hi, I am evaluating dhtmlx 6 suite’s chart api. I am facing an issue when i specify a div and use it as a container the stacked bar overflows the container and get’s cut off. I have snippet for that,

https://snippet.dhtmlx.com/7voc8er1

Please have a look and is there a way i can make stacked bar charts to remain inside the containers and be dynamically responsive based on container height?

for your left scale you have defined the limit tyo the “100”:

  "left" : {
                            maxTicks: 10,
                            max: 100,

so, as the sum of the stacked bar is more than 100 - it goes out of the chart area.
Please, try to remove that linit
https://snippet.dhtmlx.com/kj388h7o
or raise it enough to fit the sum of the stacked bar.