Skip to content

Commit

Permalink
Updated the pie 'combined' example.
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
dnschnur committed Feb 27, 2013
1 parent 64b28fa commit b8b3b9c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions examples/series-pie/index.html
Expand Up @@ -435,15 +435,15 @@
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: {
pie: {
show: true,
combine: {
color: "#999",
threshold: 0.1
threshold: 0.05
}
}
},
Expand Down

0 comments on commit b8b3b9c

Please sign in to comment.