score:0

i could fix it. there was a condition which prevented the axis from showing up if there are less than 2 values. the statement which needed the update:

if (__.types[p] == "string" && (uniques > 60 || uniques < 2))

i changed it to:

if (__.types[p] == "string" && (uniques > 60 || uniques < 1))


Related Query

More Query from same tag