personality-insights / sunburst-chart

A visualization for IBM Watson Personality Insights service output.
https://personality-insights.github.io/sunburst-chart/
Apache License 2.0
43 stars 37 forks source link

Don't recreate SVG when profile is changed #33

Closed soumak77 closed 6 years ago

soumak77 commented 6 years ago

31 adds support for changing the profile. The current implementation will remove the existing SVG and recreate it when the profile is changed. This is unnecessary as the text itself does not need to be recreated since the locale did not change. Update the logic so that only the sunburst is updated when the profile is changed. No elements need to be removed, only their value needs to be changed.

soumak77 commented 6 years ago

fixed via #37