X轴标签与NVD3重叠

时间:2016-09-14 09:19:01

标签: javascript jquery nvd3.js

我在我的应用程序中使用NVD3图表。我无法理解为什么X轴标签在我的图表中重叠。有人能帮帮我吗?

我已尝试使用.ticks(3)设置滴答数,但它似乎不会影响滴答数。

enter image description here

        nv.addGraph(function () {
                var chart = nv.models.lineChart()
                        .x(function (d) {
                            return d[0];
                        })
                        .y(function (d) {
                            return d[1];
                        })
                        .showXAxis(true)
                        .showYAxis(false)
                        .useInteractiveGuideline(true);

                chart.xAxis     //Chart x-axis settings
                        .axisLabel('Time')
                        .tickFormat(function (d) {
                            var dateTimeFormat = '%m/%d/%Y %H:%M';
                            d = new Date(d);
                            return d3.time.format(dateTimeFormat)(d);

                        });
                chart.yAxis
                        .axisLabel('Size');
                chart.forceY([0]);

                d3.select('#id svg')
                        .datum(graphData)
                        .call(chart);

                nv.utils.windowResize(chart.update);

                return chart;
            });

1 个答案:

答案 0 :(得分:1)

我正在使用 Angular-nvD3 ,我们可以使用 wrapLabels:true 来避免重叠问题。

示例图表配置。

vm.options = {
        chart: {
            type: 'discreteBarChart',
            x: function(d){return d.label;},
            y: function(d){return d.value;},
            wrapLabels:true
        }
    };

截屏: enter image description here