hi guys,
I want to plot a heatmap with data:
var xValues = [0,1, 2, 3];
var yValues = [0, 1, 2, 3];
var zValues = [
[null, null, null, null],
[null,96, 97, 98],
[null,86, 87, 88],
[null,76, 77, 78],
];
and it shows the chart correctly:
and this is the codepen link:
axis: category/asc
but when I order the axis by ‘des’, the axis can disappeared.
a
and this is the codepen link:
axis:category/des
anyone can tell me if this is a bug, or how should I set the configurations?