如何在x轴上有不同的值,在graphael上有不同的标签?

时间:2014-01-13 01:15:17

标签: javascript raphael graphael

我想在graphael排行榜上使用日期,如下所示。

var lines = r.linechart(30, 30, 600, 440, [
    [01 / 01 / 2014 12: 00: 00, 02 / 01 / 2014 12: 00: 00, 03 / 01 / 2014 12: 00: 00, 04 / 01 / 2014 12: 00: 00, 05 / 01 / 2014 12: 00: 00]
], [
    [100, 150, 130, 85, 100]
], {
    axisxstep: 20,
    nostroke: false,
    axis: "0 0 1 1",
    symbol: "circle",
    smooth: true
}).hoverColumn(function () {
    this.tags = r.set();

    for (var i = 0, ii = this.y.length; i < ii; i++) {
        this.tags.push(r.tag(this.x, this.y[i], this.values[i], 160, 10).insertBefore(this).attr([{
            fill: "#fff"
        }, {
            fill: this.symbols[i].attr("fill")
        }]));
    }
}, function () {
    this.tags && this.tags.remove();
});
然而,graphael,似乎无法识别日期。如果我将这些值而不是日期设置为1,2,3 ...,那么我怎样才能在x轴上显示日期标签?

再次感谢

1 个答案:

答案 0 :(得分:1)

尝试使用以毫秒为单位的日期。要以您需要的任何格式在x轴上渲染日期,您可以按照此处所述进行操作:https://bocoup.com/weblog/alternate-x-axis-intervals-in-g-raphael-js-linechart