我正在两个实体之间使用plot fot plot plot,我很惊讶地表示了我绘制的图形的点标签。对于我在下面绘制的图表,我需要提到点值,我尝试使用pointLabels:{show:true}但到目前为止没有运气。
我用过的代码:
var t1 = [s1, s2, s3, s4,s5];
var t2 = [s9, s10, s11, s12,s13];
var ticks = ['BidsforOpenRequirements',
'ShortlistedBidsForOpenRequirements',
'ProfessionalsInInterview ',
'ProfessionalsOnJobs',
'UnscheduledInterviews'];
var plot1 = $.jqplot('CHART_2', [t1, t2], {
seriesDefaults:{
renderer:$.jqplot.BarRenderer,
pointLabels: { show: true}
},
series: [ { label: 'Contract' }, {label: 'Permanent'} ],
legend: {
show: true,
placement: 'insideGrid'
},
axes: {
xaxis: {
renderer: $.jqplot.CategoryAxisRenderer,
ticks: ticks
},
yaxis: {
pad: 1.05,
tickOptions: { formatString: '%d' }
}
}
});