I want to display legend with it’s value inside pie chart. I googled it a lot but didn’t get any solution. Also, there is no option in fusion charts to achieve this directly. Can anyone please suggest what trick can I apply to do so? I think I need to modify lot of things in library which I don’t want so please help me.
Refer below image
I’m using angular-fusion charts library so I want to do this in angular way.
Advertisement
Answer
If you are using FusionCharts you can achieve this using the attribute “placeValuesInside=’1′”
JavaScript
x
20
20
1
// Sample data
2
{
3
"chart": {
4
"showpercentagevalues": "1",
5
"use3dlighting": "0",
6
"showshadow": "0",
7
"placevaluesinside": "1",
8
"animation": "0"
9
},
10
"data": [{
11
"label": "ST_Clean",
12
"value": "33",
13
"color": "f7bc34"
14
}, {
15
"label": "ST_Eff",
16
"value": "67",
17
"color": "e24b1a"
18
}]
19
}
20