Hi Jeff,
You can use the DateFormat to format a column of your data, as shown in this example:
https://jsfiddle.net/dlaliberte/cxkh14sj/3/However, that doesn't format your tick values, and unfortunately, the format option for the axes does not currently accommodate the 'timeZone' option, as the DateFormat supports. We need to fix that.
As a workaround, you can use the DateFormat formatValue method to format any date value using the same formatter, and use that to generate a list of formatted tick values, to set the 'ticks' option.
ticks: [{v: date1, f: formattedDate1} {v: date2, f: formattedDate2}, ...]
The main problem in doing it this way is that you have to determine which date values to use based on what is appropriate for your data, and that can be difficult if your dates vary each time you draw the chart.