How to add jqplot pie chart labels with lines? Jqplot Pie Chart, need to show minor data with line ,outside the chart.

How to add jqplot pie chart labels with lines? Jqplot Pie Chart, need to show minor data with line ,outside the chart.

I have a pie chart and I can add labels for it normal way.But I want to add labels with line as following. I want to show labels with line outside the jqplot Pie Chart. As per below chart. This is possible in High chart but i am not able to do this in Jqplot Pie chart Thanks in advance.

My Code is as following
  1.  var misplot = jQuery.jqplot('wealthchart', [data], {
                                seriesDefaults: {
                                    shadow: false,
                                    //equity, fixed income,real estate,asset oriented,alternates,cash bank
                                    seriesColors: ["#ffff00", "#ff9900", "#948b54", "#c5be97", "#92d050", "#3399ff"],
                                    renderer: jQuery.jqplot.PieRenderer,
                                    rendererOptions: {
                                        showDataLabels: true,
                                      dataLabelThreshold: 0.1,
                                        dataLabelPositionFactor: 1.1,
                                        startAngle: -90,                                  
                                        dataLabelFormatString: '%.1f%%',
                                        sliceMargin: 2, 
                                    }
                                },
                                legend: {
                                    show: true,
                                    location: 'e',
                                    fontSize: '9px',
                                    rowSpacing: '4px',
                                    textColor: '#222222',
                                    fontFamily: 'Lucida Grande, Lucida Sans, Arial, sans-serif',
                                    marginTop: '-112px',
                                    marginRight: '17%',
                                },
                                      
                                tooltip: {
                                    enabled: true
                                },
                                       
                            });