From b8b3b9cb7f13a24421fa9e2c66b84de9d804485d Mon Sep 17 00:00:00 2001 From: David Schnur Date: Wed, 27 Feb 2013 07:42:23 -0500 Subject: [PATCH] Updated the pie 'combined' example. Tweaked the description to indicate that we no longer combine single slices into 'other', and reduced the threshold from 10% to 5% to encourage more slices to combine in the demo. --- examples/series-pie/index.html | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/examples/series-pie/index.html b/examples/series-pie/index.html index 406243d..12e9f44 100644 --- a/examples/series-pie/index.html +++ b/examples/series-pie/index.html @@ -435,7 +435,7 @@ placeholder.unbind(); $("#title").text("Combined Slice"); - $("#description").text("All slices less than a given percentage of the pie can be combined into a single, larger slice (10% in this case)."); + $("#description").text("Multiple slices less than a given percentage (5% in this case) of the pie can be combined into a single, larger slice."); $.plot(placeholder, data, { series: { @@ -443,7 +443,7 @@ show: true, combine: { color: "#999", - threshold: 0.1 + threshold: 0.05 } } },