File tree Expand file tree Collapse file tree 1 file changed +4
-3
lines changed Expand file tree Collapse file tree 1 file changed +4
-3
lines changed Original file line number Diff line number Diff line change @@ -179,10 +179,11 @@ export function stack(m: Mark | MarkDef, encoding: Encoding<string>): StackPrope
179179 const hasSameDimensionAndStackedField = dimensionField && dimensionField === stackedField ;
180180
181181 // For polar coordinates, do not set a groupBy when working with quantitative fields.
182- const isPolar = isPolarPositionChannel ( fieldChannel ) || isPolarPositionChannel ( dimensionChannel ) ;
183- const shouldAddPolarGroupBy = ! isUnbinnedQuantitative ( dimensionDef ) ;
182+ // const isPolar = isPolarPositionChannel(fieldChannel) || isPolarPositionChannel(dimensionChannel);
183+ // const shouldAddPolarGroupBy = !isUnbinnedQuantitative(dimensionDef);
184184
185- if ( isPolar ? shouldAddPolarGroupBy : ! hasSameDimensionAndStackedField ) {
185+ if ( ! hasSameDimensionAndStackedField ) {
186+ // if (isPolar ? shouldAddPolarGroupBy : !hasSameDimensionAndStackedField) {
186187 // avoid grouping by the stacked field
187188 groupbyChannels . push ( dimensionChannel ) ;
188189 groupbyFields . add ( dimensionField ) ;
You can’t perform that action at this time.
0 commit comments