The table visualization in version 4.0 displays empty/null values in numeric fields as zeroes. This is potentially bad because a null value can mean something very different than a zero value in certain contexts.
The value should be displayed as empty, or null.
The value is displayed as 0.0.
Looks like this could be addressed by adding n.nullFormat('-') on or around this line. Would be willing to do a PR with this change.
@chriszs maybe just n.nullFormat('') to remain backward compatible? And a PR will be mostly welcomed. 馃憤
I seem to be having this problem as well:
Containers:
redash:7.0.0.b18042
Is this still an issue?
Most helpful comment
Looks like this could be addressed by adding
n.nullFormat('-')on or around this line. Would be willing to do a PR with this change.