我在 jsp 中显示了一个 jqPlot 条形图。现在我看到了一个按钮单击选项以查看图表作为图像并将其保存到图像中,但我不知道如何实现这一点..我添加了按钮代码..
这是我的代码..
<script type="text/javascript">
$(document).ready(function(){
$.jqplot.config.enablePlugins = true;
var s1 = [200, 600, 700, 1000,1400];
var ticks = ['Local', 'STD', 'ISD', 'INET','Incoming'];
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
}
},
highlighter: { show: true }
});
$('#chart1').bind('jqplotDataClick',
function (ev, seriesIndex, pointIndex, data) {
$('#info1').html('series: '+seriesIndex+', point: '+pointIndex+', data: '+data);
}
);
});
</script>
</head>
<body>
<br/>
<br/>
<input type="submit" name="ViewImage" id="view" value="ViewImage">
<div name="chart1" id="chart1" value="chart1" style="height: 300px;width: 400px;left: 100px">
</body>
任何帮助将不胜感激..
提前致谢..