2

我尝试使用 jqplot 创建可以单击的条形图,然后将用户重定向到另一个页面以及标签值作为 url 参数,但是没有运气建立链接。这就是我所做的。

  $(document).ready(function() {
      $.jqplot.config.enablePlugins = true;

         var ticks = [ 'SCAN', 'SGON', 'TERM', 'TRAN'];
         var arrBranchId = ['08270K08001', '08298K08003', '12026K12003','14123K14003'];
         var plot1 = $.jqplot('chart1',[[0,0,0,1],[2,4,2,5],[0,0,0,1],[0,5,0,1]], {           
         seriesDefaults: {
                 renderer: $.jqplot.BarRenderer,
                 rendererOptions: { fillToZero: true },
                 pointLabels: { show: true }
             },

             series: [{label:'08270K08001'},{label:'08298K08003'},{label:'12026K12003'},{label:'14123K14003'}],

             legend: {
                 show: true,
                 placement: 'ne'
             },
             highlighter: {
             show: false,

             },
              cursor: {
                show: true
              },
             axes: {

                 xaxis: {
                     renderer: $.jqplot.CategoryAxisRenderer,
                     ticks: ticks
                 },

                 yaxis: {
                     renderer: $.jqplot.CategoryAxisRenderer,
                     pad: 1.05,
                     tickOptions: { formatString: '%d' }
                 }
             }
         });
     });
  • 我应该如何链接到该栏,例如 localhost/webCharts/branch.aspx?branchId=08270K08001

也试过这个How to catch the click event from the axis ticks jqplot, highcharts,flot,把函数改成

$('.jqplot-xaxis-tick').each(function(){
            var label = $(this),
                value = label.text();
            if(categoryLinks[value]) {
                label.click(function(){

                    alert('could link to another page: ' + categoryLinks[value]);
                });
            }
        });

但是当用户点击时什么都没有发生。我在这里错过了什么吗?提前致谢

4

5 回答 5

4

我想出了一种方法,通过使用 window.location 使栏可点击并链接到另一个页面,如下所示

$('#chart1').bind('jqplotDataClick',function(ev, seriesIndex, pointIndex, data){
                window.location = 'branchDetails.aspx?appId='+ticks[**pointIndex**]+"&branchId="+arrBranchId[**seriesIndex**];          
        });

注意:数组ticks [ ]和arrBranchId[ ] 已经定义在 $(document).ready(function() { ...

于 2013-10-21T16:57:26.087 回答
3

我不确定您是否仍在寻找解决方案,但我在研究同一问题时发现了您的问题。我只是想出了如何让它工作。根据您的代码,您应该添加一个类似这样的函数:

$('#Chart1').bind('jqplotDataClick', function (ev, seriesIndex, pointIndex, data) {
    window.parent.location.href = 'YOURURL.aspx?id=' + arrBranchId[pointIndex];
});

希望这会对您或其他人有所帮助。

于 2014-01-06T22:58:29.140 回答
1

删除每个循环并使用 jqplot 绑定方法 jqplotDataClick:

// replace chart1 with your div ID
$('#chart1').bind('jqplotDataClick',
function (ev, seriesIndex, pointIndex, data) {
    // data contains the data point value, play with it
    // NOTE it may contain an array and not a string
    alert(data);
});

在上面的示例中,我使用 alert(data) 您可以使用数据值做任何其他事情,即将用户重定向到包含作为参数传递的值的 URL

演示 http://jsfiddle.net/fordlover49/JWhmQ/

于 2013-10-21T06:56:09.250 回答
0

您可以使用此代码段来获取点击事件!

// Bind a listener to the "jqplotDataClick" event.  Here, simply change
  // the text of the info3 element to show what series and ponit were
  // clicked along with the data for that point.
  $('#chart3').bind('jqplotDataClick',
    function (ev, seriesIndex, pointIndex, data) {alert('clicked')
      $('#info3').html('series: '+seriesIndex+', point: '+pointIndex+', data: '+data);
    }
  );

看看这个演示JSFIDDLE

于 2013-10-21T07:07:28.090 回答
0

我找到了一个更简单的方法。保持简单,如下所示:

   $('#chart3').bind('jqplotDataClick', 
            function (ev, seriesIndex, pointIndex, data) {
                /* To open in a NEW window use: */
                /* window.open(data[2]); */
                /* To open in the same window use: */
                window.location.href='ErrorView3.php';
            }
  );
于 2015-02-04T19:13:01.233 回答