I feel like I've tried everything. I would really like to set some of my number and date columns to "not available" in a data table provided by Google Visualizations. They are not zero or 1900-01-01, which is what I'm doing now. This is inaccurate.
Is there a magic word I can use to get my table to have "N/A" (or something like it) in a number or date column? Strings I can figure out. :)
Please note this is not a graph! This relates to this call: var table = new google.visualization.Table()
Thanks!
stringsinstead ofnumbers? – cchana Jul 13 '12 at 8:38cchana, Just usestringas your datatype instead of number and datetime/date. just do a check around the value before you add it to the row. something likeif (value === 0 || value === null) addRow(['N/A', 'N/A'])– SherCoder Jul 17 '12 at 19:10