I was wondering how I can sort a column which has either digit or 'x' value (for not defined). With conventional sort, the result is not correct and 17 comes sooner than 7.
Example:
17
7
9
X
Want to sort it like:
7
9
17
X
PS.
I am using:
var data = new google.visualization.DataTable()
data.addRow[{v:'17'}, {v:'7'}, {v:'9'}, {v:'X'}]
I want to be able to sort it in the event listener.