react-timeseries-charts icon indicating copy to clipboard operation
react-timeseries-charts copied to clipboard

Internationalization?

Open yuhangxiaocs opened this issue 5 years ago • 0 comments

Is there a way to change local time format?

I am working on a project using this library, and I want to change the time format to a local date format like this: image

I cannot find a convenient way to do this in this library. After searching the source code, I realized this library used the d3-time-format library for time formatting. So I import this library and use its timeFormatDefaultLocale method to set up local time format in a global procedure.

import { timeFormatDefaultLocale } from 'd3-time-format';

timeFormatDefaultLocale({
  // content of JSON file from https://github.com/d3/d3-time-format/tree/master/locale 
});

I feel this is a bit hacky. I am wondering if there is a better way to do this? Appreciate!

yuhangxiaocs avatar Nov 04 '20 07:11 yuhangxiaocs