Commit b36246bb authored by David Schnur's avatar David Schnur

Merge pull request #1238 from SaM-Solutions/fix-combined-data

Pie: Fix combined data to keep all other original values.
parents e2147c07 28cc3584
......@@ -224,13 +224,16 @@ More detail and specific examples can be found in the included HTML file.
for (var i = 0; i < data.length; ++i) {
var value = data[i].data[0][1];
if (numCombined < 2 || value / total > options.series.pie.combine.threshold) {
newdata.push({
newdata.push(
$.extend(data[i], { /* extend to allow keeping all other original data values
and using them e.g. in labelFormatter. */
data: [[1, value]],
color: data[i].color,
label: data[i].label,
angle: value * Math.PI * 2 / total,
percent: value / (total / 100)
});
})
);
}
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment