Time Formats (d3-time-format)
Parse and format times, inspired by strptime and strftime.解析和格式化时间,受strtime和strftime启发。
- d3.timeFormat - alias for locale.format on the default locale.默认语言环境下locale.format的别名。
- d3.timeParse - alias for locale.parse on the default locale.区域设置的别名。在默认区域设置上解析。
- d3.utcFormat - alias for locale.utcFormat on the default locale.默认语言环境下locale.utcFormat的别名。
- d3.utcParse - alias for locale.utcParse on the default locale.默认语言环境下locale.utcParse的别名。
- d3.isoFormat - an ISO 8601 UTC formatter.ISO 8601 UTC格式化程序。
- d3.isoParse - an ISO 8601 UTC parser.ISO 8601 UTC解析器。
- locale.format - create a time formatter.创建一个时间格式化程序。
- locale.parse - create a time parser.创建一个时间解析器。
- locale.utcFormat - create a UTC formatter.创建UTC格式化程序。
- locale.utcParse - create a UTC parser.创建一个UTC解析器。
- d3.timeFormatLocale - define a custom locale.定义自定义区域设置。
- d3.timeFormatDefaultLocale - define the default locale.定义默认区域设置。