-
-
Notifications
You must be signed in to change notification settings - Fork 1.4k
Closed
Closed
Copy link
Labels
bugSomething isn't workingSomething isn't working
Description
I encountered an issue where duplicate labels on the y-axis were not allowed. In the image below, the y-axis represents the days of the week. As a result, some labels, like Tuesday ('T') and Saturday ('S'), are missing. You can check the sample in the provided CodeSandbox.
These are the y-axis options I tried.
yaxis: {
forceNiceScale: false,
showAlways: true,
show: true,
showForNullSeries: true,
crosshairs: {
show: true
},
labels: {
show: true,
formatter(val, opts) {
console.log('opts', opts);
return val?.toString();
}
}
}
I am using "^3.54.0" version of apexcharts.
Reproduction link
https://codesandbox.io/p/sandbox/apexcharts-heatmap-p6ddt7
Metadata
Metadata
Assignees
Labels
bugSomething isn't workingSomething isn't working
