我试图在我的图表中显示月/年,但是 x 轴上有一个带有标签的错误:

2012 年 4 月有 3 次 (以及 5 月和 6 月)。

这是代码

function showGraph() {
        var data = [
            { label : "Odmeny", data: [ [(new Date('2012/04/01')).getTime(), 10], [(new Date('2012/05/01')).getTime(), 10], [(new Date('2012/06/01')).getTime(), 10] ] },
            { label : "Koeficienty", data: [ [(new Date('2012/04/01')).getTime(), 11], [(new Date('2012/05/01')).getTime(), 13], [(new Date('2012/06/01')).getTime(), 16], [(new Date('2012/07/01')).getTime(), 12] ] }
        ];
        var options = {
                xaxes: [{
                           mode: "time",
                           timeformat: "%b %y",
                           monthNames: ["jan", "feb", "mar", "apr", "máj", "jún", "júl", "aug", "sep", "okt", "nov", "dec"]
                       }],
                       yaxes: [ {
                                  min: 0
                                } ],
                       series: {
                           lines: {
                               show: true,
                               fill: null
                           },
                           points: {
                                show: true,
                                radius: 3,
                                lineWidth: 2,
                                fill: true,
                                fillColor: "#ffffff",
                                symbol: "circle"
                            }
                       },
                       grid: { hoverable: true, clickable: true }
        };

        $.plot($("#placeholder"), data, options);
    }

最佳答案

在 xaxis 选项下,设置:

minTickSize = [1, "month"]

现在发生的事情是 Flot 自然会尝试每月生成多次刻度,然后由于您的格式字符串而显示为同一个月。

关于jQuery Flot : reapeating labels on x-axis,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/11250027/

10-12 07:11