echarts provides `echarts.format.formatTime`:
```js
var option = {
// ...
xAxis: {
type: 'time',
axisLabel: {
formatter: function (value) {
return echarts.format.formatTime('yyyy-MM-dd', value);
// And other formatter tool (e.g. moment) can be used here.
}
}
}
}
```[ Full content available at: https://github.com/apache/incubator-echarts/issues/9015 ] This message was relayed via gitbox.apache.org for [email protected]
