JavaScript/jQuery Sankey - Resolve Overlapping

Node labels can overlap when the Sankey contains many nodes. You can specify the label.overlappingBehavior property to resolve overlapping: you can hide overlapping labels, truncate them with ellipsis, or leave them overlapped:

JavaScript
  • $(function() {
  • $("#sankeyContainer").dxSankey({
  • // ...
  • label: {
  • overlappingBehavior: "ellipsis" // or "hide" | "none"
  • }
  • });
  • });
See Also