We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 46332a9 commit 05ebb13Copy full SHA for 05ebb13
src/plots/cartesian/axes.js
@@ -1819,7 +1819,8 @@ function formatCategory(ax, out) {
1819
1820
function formatMultiCategory(ax, out, hover) {
1821
var v = Math.round(out.x);
1822
- var cats = ax._categories[v].map(function(cat) {return cat;}) || [];
+ var cats = ax._categories[v] || [];
1823
+
1824
var texts = cats.slice().reverse().map(function(cat) {
1825
return cat === undefined ? '' : String(cat);
1826
});
0 commit comments