C3.js | D3-based reusable chart library
Menu
Getting Started
Examples
Reference
Forum
Source
Pie Label Format
# pie_label_format.js
var chart = c3.generate({ data: { columns: [ ['data1', 30], ['data2', 50] ], type: 'pie' }, pie: { label: { format: function (value, ratio, id) { return d3.format('$')(value); } } } });