I draw a graph to show how many people filled our application and how many people did not go through all the stages. For this, my company decided to use the d3 library to display diagrams. However, in the pie chart, they want to show the whole number instead of the default percentage, and I can not find any documentation on this.
My code for this looks like
c3.generate({ bindto: '.pieChart', data: { columns: [ ['Started', Started], ['Completed', Completed] ], type: 'pie' } });
Any help would be appreciated!
source share