Y-axis labels get bottom cut off

The y-axis labels get their bottoms cut off. You can see this in the sample:
[url]http://www.dhtmlx.com/docs/products/dhtmlxChart/samples/06_bar_chart/08_horizonal_stacked_bars.html[/url]
Notice how the years 2007, 2008, 2009 are partially cut off.

I have this same problem in the horizontal stacked bar chart I am trying to create.

This issue confirmed and will be fixed at the next version of dhtmlxChart

You may set the following css rule to solve the issue:

<style>
.dhx_axis_item_y {
    height: 18px;
    line-height: 18px;
}
</style>