0
我想要一個按鈕,用戶可以按下,以便圖形上的數據在動畫中更改,而不會再次從圖形底部開始顯示條形。以下是我希望我的jqPlot表現如何的示例:http://www.w3schools.com/jquery/tryit.asp?filename=tryjquery_eff_animate。如果還有另一個插件可以讓我這樣做,我還沒有結婚使用jqPlot。謝謝!jqPlot動畫數據更改無需重新加載圖形
我當前的代碼如下:
function myReplot() {
var newdata = [[1,3],[2,6],[3,8],[4,11]];
plot1.series[0].data = newdata;
plot1.replot();
}
$(document).ready(function(){
$.jqplot.config.enablePlugins = true;
var data = [[2, 6, 7, 10]];
var ticks = ['a', 'b', 'c', 'd'];
plot1 = $.jqplot('chart1', data, {
// Only animate if we're not using excanvas (not in IE 7 or IE 8)..
animate: !$.jqplot.use_excanvas,
animateReplot: !$.jqplot.use_excanvas,
seriesDefaults:{
renderer:$.jqplot.BarRenderer,
pointLabels: { show: true }
},
axes: {
xaxis: {
renderer: $.jqplot.CategoryAxisRenderer,
ticks: ticks
}
},
highlighter: { show: false }
});
});
今天,在FF的的jsfiddle does not工作,它說未知FUNC $ .jqplot沒有對鏈接庫中的jsfiddle改變的過程? –