Open FirstVertex opened 3 years ago
You can get rid of NaN by adding
"label": {
"formatter": ""
}
to the first "series" object, e.g.
"series": [
{
"type": "bar3D",
"shading": "lambert",
"encode": {
"x": "Year",
"y": "Country",
"z": "Life Expectancy",
"tooltip": [0, 1, 2, 3, 4]
},
"label": {
"formatter": ""
}
}
]
Hello, I try to debug the NaN tooltip of this example: https://xieziyu.github.io/ngx-echarts/#/gl/bar3d It has 2 tooltips, I try to remove the NaN one but I can't make it stop. Please help.