1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40
| var options = {
title:''+TempTitle,
legend: {
show: true,
placement: 'insideGrid',
marginTop:0
},
cursor: {show: true,zoom:true,clickReset:true,dblclickReset:true},
series : label,
stackSeries: true,
seriesDefaults:{
renderer:$.jqplot.BarRenderer,
rendererOptions: {
barDirection:'horizontal',
barWidth: 12
}
},
axesDefaults: {
tickRenderer: $.jqplot.CanvasAxisTickRenderer ,
tickOptions: {
angle: -70,
fontSize: '7pt',
textColor:'black'
}
},
axes: {
xaxis: {
renderer:$.jqplot.CategoryAxisRenderer
},
yaxis: {
tickOptions: {
formatString: '%.0f',
angle: 0
},
numberTicks:11,
min : 0,
max: ValMax
}
}
} |