Juned Chhipa

Results 130 comments of Juned Chhipa

There is a difference in how the bars are drawn in a category x-axis vs datetime x-axis. Due to that difference, the position of the annotations changes based on that.

You have to set the total label as empty string ``` options = { plotOptions: { radialBar: { dataLabels: { total: { label: "" } } } } } ```

Closing this as this no longer seems to an issue. I tested in v3.51.0 Please provide a new Codepen, and I will re-open this if the issue still persists.

The issue is not reproducible as tested with the latest version 3.54.1. Hence, closing it. Please feel free to provide another example which reproduces the original issue, and I will...

Have you tried the `toggleSeries()` method? https://apexcharts.com/docs/methods/#toggleSeries ```javascript var chart = new ApexCharts(el, { series: [{ name: 'Football' data: [33, 23, 76, 33] }, { name: 'Cricket' data: [23, 33,...

Ok, I will note down as a feature enhancement.

Added new methods `showSeries` and `hideSeries`. Also, `toggleSeries` will return a boolean value whether the series is hidden or not. The change will be reflected in the next patch/minor release.

A new property `hidden` added into series. The configuration for it will look like this ```javascript series = [ { name: 'series1', data: [31, 40, 28, 51, 42, 109, 100],...

@litera [Release notes](https://github.com/apexcharts/apexcharts.js/releases/tag/v3.53.0) for v3.53.0

```js options = { tooltip: { hideEmptySeries: true } } ``` As tested on 4.4.0, the above property works well in hiding zero values in a tooltip.