I have a graph with the X axis values being a javascript Date object. These are formatted for each data point as “HH:mm:ss.fff” and on the axis it is displayed as “HH:mm”. I would like to zoom in and then use the new values of chart.axisX[0].get(“viewportMinimum”) and chart.axisX[0].get(“viewportMaximum”) for another feature in my app. These values are not the date objects and show values that look like this: “1483281267314.5”. I was wondering how date objects are formatted to get numbers like this so that I may format these numbers in reverse to get the time again.