From d097aded698573cb5050a2548d38ce9872585fe2 Mon Sep 17 00:00:00 2001 From: Catherine Liu Date: Thu, 3 May 2018 09:05:59 -0700 Subject: [PATCH] Removed combine from pie args and returned pie render object (#516) --- common/functions/pie.js | 8 -------- 1 file changed, 8 deletions(-) diff --git a/common/functions/pie.js b/common/functions/pie.js index 355f84d60ec7d3..da1c077ee40750 100644 --- a/common/functions/pie.js +++ b/common/functions/pie.js @@ -46,11 +46,6 @@ export const pie = () => ({ default: 0, help: 'Weight of stroke in pixels', }, - combine: { - types: ['number'], - default: 3, - help: 'Combine slices that represent less than this percent, into one big "Other" slice', - }, font: { types: ['style'], help: 'Label font', @@ -104,9 +99,6 @@ export const pie = () => ({ color: args.strokeColor, width: args.strokeWidth, }, - combine: { - threshold: args.combine / 100, - }, label: { show: args.labels, radius: args.labelRadius / 100,