@neelshah23 Have you figured this out yet? I am also looking to be able to do this (bar and line) in one chart.
I am also looking for it.
nothing related?
If you need something link in this link https://codepen.io/Karl53/pen/MbYrPN
i guess one need to add "type" attribute in your data
like below is the data variable (code) i passed to barchart and get bar chart for currency and line chart for days
barChartData = [
{data: [1,3,5,6], label: 'Days',type:'line', yAxisID: 'yAxis1'},
{data: [11,4,11,32], label: "currency" , yAxisID: 'yAxis2'}
];
@lblower has the right answer, see this stackblitz https://stackblitz.com/edit/ng2-charts-bar-and-line

@paviad You saved our life Thanks genius
Most helpful comment
If you need something link in this link https://codepen.io/Karl53/pen/MbYrPN
i guess one need to add "type" attribute in your data
like below is the data variable (code) i passed to barchart and get bar chart for currency and line chart for days