Hi,
Please see the picture i want to hide zero value record. If any possible?
Thanks in advance

I think you can try https://ecomfe.github.io/echarts-doc/public/en/option.html#series-bar.label.normal.formatter, where you can use callback function to return ''; for zero value.
When setting the series data, you can use:
{
value: (yourValue || '-')
}
So it sets the value when it's not zero or undefined, and otherwise it sets a -, which will not be shown as a label.
Most helpful comment
When setting the series data, you can use:
So it sets the value when it's not zero or undefined, and otherwise it sets a
-, which will not be shown as a label.