在nvd3 x轴中将日期转换为unix时间戳

时间:2016-02-08 11:56:47

标签: nvd3.js

默认情况下,我在1970-01-01收到日期。任何人都可以帮助我转换" 2015-10-01"时间戳。

我的约会对象:

"date": "2015-10-01"


xAxis: {
                axisLabel: 'Months',
                ticks: d3.time.months,
                tickFormat: function (d) {                    



                   return  d3.time.format('%Y %b')(new Date(d));

                }

我做了这件事,解决了我的问题

x: function (d) { return  d3.time.format('%Y-%m-%d').parse(d.date); },
            y: function (d) { return d.trendingValue; },
           useInteractiveGuideline: true,
           xScale: d3.time.scale(),
            xAxis: {
                axisLabel: 'Months',
                ticks: d3.time.months,
                tickFormat: function (d) {                    

                   return  d3.time.format('%Y-%m-%d')(new Date(d));

                }
            }

0 个答案:

没有答案