如何在g.raphael折线图中的x轴上添加日期

时间:2014-03-21 05:07:09

标签: javascript charts

我正在使用Raphael折线图..但是我如何在x轴上显示日期。

我尝试了以下代码。

window.onload = function(){

            var r = Raphael("holder"),
                txtattr = { font: "12px 'Fontin Sans', Fontin-Sans, sans-serif" };

var lines = r.linechart(330,250,300,220,[[5,6,7,8,9,10,11],[3,4,5,6,7,8,10] ],[[17,32,23,15,17,11,13]],

{

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();
            });

            lines.symbols.attr({ r: 6 });

};

使用上面的代码在x轴上显示数字.. 但是如何在X轴上显示日期。

0 个答案:

没有答案