in src/Sunburst.ts [134:144]
private toggleLabels(isShown: boolean = true) {
this.percentageLabel.classed(
this.appCssConstants.labelVisible.className,
isShown
);
this.selectedCategoryLabel.classed(
this.appCssConstants.labelVisible.className,
isShown && this.settings.group.showSelected
);
}