
Код: Выделить всё
Highcharts.chart('chart1', {
chart: {
type: 'pie',
backgroundColor: null
},
title: {
text: '',
align: 'left',
verticalAlign: 'middle',
style: {
fontSize: '20px',
fontWeight: 'bold',
color: '#333333'
}
},
plotOptions: {
pie: {
innerSize: '50%',
startAngle: 0,
endAngle: 180,
dataLabels: {
enabled: true,
connectorShape: 'crookedLine',
crookDistance: '70%',
format: '{point.name}',
style: {
fontSize: '14px',
color: '#333333'
},
distance: 60
}
}
},
series: [{
name: 'My Test',
data: [
{ name: 'ABCD', y: 25, color: '#6BAED6' },
{ name: 'XYZM', y: 25, color: '#4292C6' },
{ name: 'Active bLAM/TEST', y: 25, color: '#2171B5' },
{ name: 'Sort', y: 25, color: '#112e51' }
]
}]
});
Код: Выделить всё
[img]https: //i.sstatic.net/cWwrnhVg.png[/img]
Подробнее здесь: https://stackoverflow.com/questions/793 ... ht-instead