[Bug Report] - Bar Chart: Render Issue

I’ve got an issue with webix bar chart.

As you can see at the attached snippet below, the rendered bar (Sample 1) doesn’t represent correcty the corresponding value (int this case 50). The height of “Sample 1” bar should be half of “Sample 2”

snippet:
http://webix.com/snippet/d294b53d

Thanks for any help.

Actually, it’s not a bug. A chart takes the least value as a start of the scale. If you define the yAxis, you’ll see how it works. The particular min value could be specified as

yAxis:{
    start:0
},

Thanks for your quick feedback. It works. :slight_smile: