I'm using Plot to display different charts, and the plugin flot-barnumbers-enhanced to display values on them.
The problem is with the stacked charts, the output is like this:
The first problem is regarding the position on the labels, and the second is that I need the value of the single portion, not the sum as it is currently happening.
My formatter is:
formatter: function (value) {
return value.toFixed(2) + '%';
}