我正在使用“jQplot”(jquery.jqplot.js 和 jquery.jqplot.css)绘制图形
为此,我编写了以下代码:
$tfsGraphNodes= "[1,4],[2,2],[3,21],[4,61],[5,71],[6,10]";
$.jqplot('chartdiv', [[{/literal}{$tfsGraphNodes}{literal}]],
{title: 'Applicant Behaviour'
, series: [{color: 'green'},
, {label: 'Applicant Trend'}]
, legend: {show: true}
, highlighter: {showTooltip: true}
, axes: {
xaxis: {
tickOptions: {formatString: '%d'}
},
}
});
要在我使用的 x 轴上获取整数值,tickOptions: {formatString: '%d'}
我得到的值是(0,1,1,2,2,3,3,4,4,.....)
但我希望间隔不重复。
为了更好地理解,我附上了图片: