I would like to explode each pie slice of a pie chart when hovering the mouse over each slice. I've looked in pie-slice docs and found onHover, but cannot figure out the syntax to get each slice to explode when hovered.

I create the pie slices like this:
Qt Code:
  1. if pie1 > 0:
  2. _slice = series.append('Equity  ' + str("{:.0f}%".format(pie1 * 100)), pie1)
  3. _slice.setBrush(QColor('#FF00FF'))
  4. _slice.setLabelFont(QFont(self.pieFont))
To copy to clipboard, switch view to plain text mode 
If it's possible to do this, what would I add to or change the above code?