You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The only strange thing: outer empty/blank circles are colored with the same color or can be specified using "Top category color", but I would like to set them always to a default color or to remove them, see attached image. Is it possible?
The text was updated successfully, but these errors were encountered:
The empty/blank circles related to empty/nullable data items.
Now it is standart behavior,but your suggestions really make sense.
We'll add it in our backlog
If anyone is looking for a workaround for this you can do the following:
Around line 590 in Sunburst.ts change it to the following: if (originParentNode.children && originParentNode.children.length > 0) { for (const child of originParentNode.children) { let nodeColor:string; if (child.value != null) { nodeColor = this.getColor( Sunburst.LegendPropertyIdentifier, newDataPointNode.color, child.objects, name ); } else { nodeColor = "white"; }
To remove the tooltips on elements not displayed, around line 619 change it to this:
Hi, I'm using this visual: very nice.
The only strange thing: outer empty/blank circles are colored with the same color or can be specified using "Top category color", but I would like to set them always to a default color or to remove them, see attached image. Is it possible?
The text was updated successfully, but these errors were encountered: