0

我正在使用 jqPlot 来显示一些图表,还带有一个按钮,可以将图表保存到图像中。

我可以请一些帮助来修改代码,以便在单击图表时显示图像而不是按钮。

这是我的代码:

<script class="code" type="text/javascript">
$(document).ready(function(){
var cosPoints = []; 
for (var i=0; i<2*Math.PI; i+=0.1){ 
 cosPoints.push([i, Math.cos(i)]); 
} 
var plot1 = $.jqplot('chart1', [cosPoints], {  
  series:[{showMarker:false}],
  axes:{
    xaxis:{
      label:'Angle (radians)'
    },
    yaxis:{
      label:'Cosine'
    }
  }
});

if (!$.jqplot.use_excanvas) {
var outerDiv = $(document.createElement('div'));
var header = $(document.createElement('div'));
var div = $(document.createElement('div'));

outerDiv.append(header);
outerDiv.append(div);

outerDiv.addClass('jqplot-image-container');
header.addClass('jqplot-image-container-header');
div.addClass('jqplot-image-container-content');

header.html('Right Click to Save Image As...');

var close = $(document.createElement('a'));
close.addClass('jqplot-image-container-close');
close.html('Close');
close.attr('href', '#');
close.click(function() {
    $(this).parents('div.jqplot-image-container').hide(500);
})
header.append(close);

$('#chart1').after(outerDiv);
outerDiv.hide();

outerDiv = header = div = close = null;

var btn = $(document.createElement('button'));
btn.text('View Plot Image');
btn.addClass('jqplot-image-button');
btn.bind('click', {chart: $('#chart1')}, function(evt) {
    var imgelem = evt.data.chart.jqplotToImageElem();
    var div = $(this).nextAll('div.jqplot-image-container').first();
    div.children('div.jqplot-image-container-content').empty();
    div.children('div.jqplot-image-container-content').append(imgelem);
    div.show(500);
    div = null;
});

$('#chart1').after(btn);
btn.after('<br />');
btn = null;
}  
});
</script>

更新

对于多个图表,仅显示一张图像。我需要如何处理这段代码才能显示多个图表?此外,每个图表都在不同的 div 中:

$('#chart1').after(outerDiv);
outerDiv.hide();

outerDiv = header = div = close = null;

更新2

出于某种原因,我的图表现在都没有显示。我猜我的代码中有一个简单的错误。我可以对我做错的事情有所帮助吗?此外,这些图表称为“FinancialsLineGraph”和“SalesMonthVsBudgetLineGraph”。

这是我的完整代码:

if (!$.jqplot.use_excanvas) {
var charts = ['#FinancialsLineGraph', '#SalesMonthVsBudgetLineGraph'];

$.each(charts, function(index, value) {
    (function(chartId) {
var outerDiv = $(document.createElement('div'));
var header = $(document.createElement('div'));
var div = $(document.createElement('div'));

outerDiv.append(header);
outerDiv.append(div);

outerDiv.addClass('jqplot-image-container');

header.addClass('jqplot-image-container-header');
div.addClass('jqplot-image-container-content');

header.html('Right Click to Save Image As...');

var close = $(document.createElement('a'));
close.addClass('jqplot-image-container-close');
close.html('Close');
close.attr('href', '#');
close.click(function() {
    $(this).parents('div.jqplot-image-container').hide(500);
})
header.append(close);

$(chartId).after(outerDiv);
outerDiv.hide();

outerDiv = header = div = close = null;

    })(value);
});

更新

我为每个单独的图表找到了一个可行的解决方案。这是我的代码:

    $('#FinancialsLineGraph').bind('jqplotClick', function(ev, seriesIndex, pointIndex, data) {                    
 var outerDiv = $(document.createElement('div'));
var header = $(document.createElement('div'));
var div = $(document.createElement('div'));

outerDiv.append(header);
outerDiv.append(div);

outerDiv.addClass('jqplot-image-container');
header.addClass('jqplot-image-container-header');
div.addClass('jqplot-image-container-content');

header.html('Right Click to Save Image As...');

var close = $(document.createElement('a'));
close.addClass('jqplot-image-container-close');
close.html('Close');
close.attr('href', '#');
close.click(function() {
    $(this).parents('div.jqplot-image-container').hide(500);
})
header.append(close);

$('#FinancialsLineGraph').after(outerDiv);
outerDiv.hide();   

outerDiv = header = div = close = null;  

var imgelem = $('#FinancialsLineGraph').jqplotToImageElem();
var div = $(this).nextAll('div.jqplot-image-container').first();
div.children('div.jqplot-image-container-content').empty();
div.children('div.jqplot-image-container-content').append(imgelem);
div.show(500);
div = null;

});       
4

1 回答 1

0

替换此代码块:

var btn = $(document.createElement('button'));
btn.text('View Plot Image');
btn.addClass('jqplot-image-button');
btn.bind('click', {chart: $('#chart1')}, function(evt) {
    var imgelem = evt.data.chart.jqplotToImageElem();
    var div = $(this).nextAll('div.jqplot-image-container').first();
    div.children('div.jqplot-image-container-content').empty();
    div.children('div.jqplot-image-container-content').append(imgelem);
    div.show(500);
    div = null;
});

$('#chart1').after(btn);
btn.after('<br />');
btn = null;

有了这个:

$('#chart1').bind('jqplotClick', function(ev, seriesIndex, pointIndex, data) {                
    var imgelem = $('#chart1').jqplotToImageElem();
    var div = $(this).nextAll('div.jqplot-image-container').first();
    div.children('div.jqplot-image-container-content').empty();
    div.children('div.jqplot-image-container-content').append(imgelem);
    div.show(500);
    div = null;
});

编辑:

要使该代码适用于多个绘图,您可以尝试以下操作:

if (!$.jqplot.use_excanvas) {
    var charts = ['#chart1', '#chart2', '#chart3'];

    $.each(charts, function(index, value) {
        (function(chartId) {
            //The code that you currently have in the if-block.

        })(value);
    });
}

然后,您将需要用with替换任何出现'#chart1'的地方。$eachchartId

编辑2:

我认为您的完整代码缺少连接情节事件的部分。

您目前拥有的位置:

outerDiv = header = div = close = null;

在它之后添加这个:

$(chartId).bind('jqplotClick', function(ev, seriesIndex, pointIndex, data) {                
    var imgelem = $(chartId).jqplotToImageElem();
    var div = $(this).nextAll('div.jqplot-image-container').first();
    div.children('div.jqplot-image-container-content').empty();
    div.children('div.jqplot-image-container-content').append(imgelem);
    div.show(500);
    div = null;
});
于 2013-02-18T00:27:30.443 回答