I'm using D3 to graph some data, and if I change my time zone away from my current one, the time scale changes based on my client's time zone. I would rather be able to force the graph to display in one time zone because that's what the data makes sense when being looked at.
I am using
x.domain([lowerTime, upperTime])
to create the x axis, but I'm not sure how I'd take advantage of
x.timeFormat()
to force this domain to be in a certain time zone, can anyone help here?