Combining line chart with horizontal bar chart

Is it possible to combine a line with horizontal bar chart?
like in this example:
https://docs.webix.com/samples/08_chart/06_bar_chart/12_diff_charts.html

It doesn’t work so I’m wondering.
https://snippet.webix.com/yz60bmqj

Hello @HadarZH ,

Is it possible to combine a line with horizontal bar chart?

Unfortunately, not. Chart has type:"barH"which creates Horizontal Bars, but for Line Chart such functionality doesn’t exist.
Instead of Line Chart I can recommend you to use Scatter Chart.
Scatter Chart presents a set of points which are displayed based on two coordinates (data values). You can connect points of the Scatter chart by lines.
Please check the sample: https://snippet.webix.com/j8haov0d

Thanks a lot, that helps!