Webix Scatter Chart: Integrate Bar Chart or r Stacked Bar chart

Hi, I was looking into the Settings for Scatter Chart and its snippets. I want to know if there is a way I can integrate Bar chart/shape within a scatter chart? In a scatter chart like this

https://snippet.webix.com/m7l3w34m

Can I add a bar chart or stacked bar chart like this

https://snippet.webix.com/bj4m2gx8

Hello @rumman0786 ,
As a solution, you can add series for bar chart. All chart series can have a custom appearance including the type, so it is possible to combine chart types:

webix.ui({
    container:"chartDiv",
    view:"chart",
    type:"bar",
    //bar chart config
 series:[
    {
      value:"#sales#",
      color: "#4aa397",
      tooltip:{
        template:"#sales#"
      }
    },
    {
      value:"#sales2#",
      color:"#69ba00",
      tooltip:{
        template:"#sales2#"
      }
    },
    {  //setting for a scatter chart
      type:"scatter",
      value:"#sales3#",
      color:"#36abee",
      item:{
        color: "#ffcf4d",
        borderColor:"#ff4000",
        radius:5
      },
      tooltip:{
        template:"#sales3#"
      },
      line:{
        color:"#ffcf4d",
        width:2
      }
    }
  ]
})

Example:
https://snippet.webix.com/ianlif4s
Please, check the related docs chapter.