BoldSignEasily embed eSignatures in your .NET applications. Free sandbox with native SDK available.
series: [
{
dataSource: [
{ 'x': 'Chrome', y: 37, text: '37%' }, { 'x': 'UC Browser', y: 17, text: '17%' },
{ 'x': 'iPhone', y: 19, text: '19%' },
{ 'x': 'Others', y: 4, text: '4%' }, { 'x': 'Opera', y: 11, text: '11%' },
{ 'x': 'Android', y: 12, text: '12%' }
],
dataLabel: {
visible: true, position: 'Inside', name: 'text', font: { fontWeight: '600' }
},
radius: '70%', xName: 'x', yName: 'y', startAngle: 0, endAngle: 360, innerRadius: '0%',
explode: true, explodeOffset: '10%', explodeIndex: 0, name: 'Browser'
}
], |
series: [
{
dataSource: [
{ x: "Chrome", y: 37 },
{ x: "UC Browser", y: 17 },
{ x: "iPhone", y: 19 },
{ x: "Others", y: 4 },
{ x: "Opera", y: 11 },
{ x: "Android", y: 12 }
],
dataLabel: {
visible: true, position: 'Inside'
},
radius: '70%', xName: 'x', yName: 'y', startAngle: 0, endAngle: 360, innerRadius: '0%',
explode: true, explodeOffset: '10%', explodeIndex: 0, name: 'Browser'
}
],
textRender: (args: IAccTextRenderEventArgs) => {
args.text = args.text + "%";
}, |