0

我无法正确为 jqplot 使用 DateAxisRender。

要求是我们必须在 x 轴上显示预约日期,在 y 轴上显示患者人数。日期是固定的,它们来自服务器,我们必须在 x 轴上绘制相同的日期。

示例日期是:

s1 = [['01-May-08', 1], ['10-May-08', 4], ['25-May-08', 2], ['30-May-08', 6]];

$.jqplot(grphOneID, [s1], YI.getGraphOpts(YAxisLbl)).replot();

 getGraphOpts: function (YAxisLbl) {

        $.jqplot.config.enablePlugins = true;
        var optsObj =
            {
                series: [{
                    pointLabels: {
                        xpadding: 8,
                        escapeHTML: false
                    },
                    rendererOptions: {
                        smooth: true
                    }
                }],

                axes: {
                    yaxis: {
                        ticks: m_CompositeReport.stdYLbls,
                        label: YAxisLbl,
                        tickOptions: {
                            formatString: '%d'
                        }
                },
                    xaxis: {
                        renderer: $.jqplot.DateAxisRenderer,
                        label: 'Shop',
                        tickOptions: {
                            formatString: "%#m/%#d/%y"
                        },
                        numberTicks: 4
                    }
                },
                seriesColors: m_CompositeReport.stdColors.reverse()
            }
        return optsObj;
    },

绘制图表后,日期就搞砸了。它们以“4/30/08”、“5/7/08”、“5/14/08”、“5/21/08”、“5/28/08”、“6/4/08”的形式出现'。

为什么会这样?请告知这里做错了什么。

提前致谢...

4

1 回答 1

1

use formatString inside xaxis carefully as it makes the difference when it comes to display of dates.

formatString: "%#m/%#d/%y"

You can choose different formatString from this link: http://www.jqplot.com/docs/files/plugins/jqplot-dateAxisRenderer-js.html

于 2013-11-14T19:19:21.550 回答