Recently brought up a poll with the ability of multiple votes per voter and recognized that the results chart shows a total of ‘number of votes per voter times 100%’ – so let’s say they have three votes you get a total of 300% in the chart!
For my purposes, I had to normalize it to 100%. I could not find a suitable filter or hook, so I changed it in the plugin directly.
$percent = round(((($answer->answer_votes / $poll->poll_voters)/$poll->poll_votes) * 100));
I added the bold green marked items in sp-polls-components.php. I used $poll->poll_votes instead of $poll_maxanwers to get the real picture even if voters skip some of their votes.
I believe it should be changed to normalized 100% display.