Forum Discussion
Anonymous
8 years agoNot applicable
Datacolor changing only after reloading visual
I have created a pie chart and added Data Color property to it. But if i change the color of a data point,the change in color can be seen only after I reload the visual. Why is it not instantaneous...
- 8 years ago
Anonymous,
Change it as follows.
let arcs = this.pieChartContainer.selectAll('.arc') .data(this.pie(this.datapoints)) ; arcs.enter() .append('path') .attr('class', 'arc') ;
Anonymous
8 years agoNot applicable
v-chuncz-msft
Here's my GitHub repo : https://github.com/vichus1995/pie
v-chuncz-msft
8 years agoCommunity Support
Anonymous,
Inspect the generated HTML in Web Console and change the code as Sample Bar Chart Repo does.