我正在使用jqplots生成條形圖。我能夠爲整個數字生成精確的圖表。但是我無法爲具有小數點的值生成圖表。下面是我用的代碼:如何繪製JQPlot條形圖中的十進制值?
<script type="text/javascript">
$(document).ready(function(){
$.jqplot.config.enablePlugins = true;
var s1 = ['1.5','3.0', '0.0', '0.0', '0.0', '3.0', '0.0'];
var ticks = ['New mould', 'Raw Material', 'color/size', 'Imported/Catalogue' , 'Printing' , 'plating' , 'other'];
plot1 = $.jqplot('chart1', [s1], {
// Only animate if we're not using excanvas (not in IE 7 or IE 8)..
animate: !$.jqplot.use_excanvas,
seriesDefaults:{
renderer:$.jqplot.BarRenderer,
pointLabels: { show: true }
},
axes: {
xaxis: {
renderer: $.jqplot.CategoryAxisRenderer,
ticks: ticks
},
yaxis: { tickOptions: { formatString: '%.2f' } }
}, highlighter: { show: false }
});
$('#chart1').bind('jqplotDataClick',function (ev, seriesIndex, pointIndex, data)
{
$('#info1').html('series: '+seriesIndex+', point: '+pointIndex+', data: '+data);
}
);
});
</script>
我收到erroe如下:
這個[R] ._蜱[0]未定義 http://blrsrigwd11074.itcinfotech.com:81/Windchill/netmarkets/javascript/report/plugins/jqplot.pointLabels.min.js 線57
請幫幫我在這個問題上。
謝謝:)你是對的:) – galme 2014-09-25 06:32:29