You can add the STROKE property
pie: {
radius: 0.2,
innerRadius: 0.125,
show: true,
stroke: {
width: 0.1
}
}
Set the value to 0 to completely hide the pie.
So, you can also add a stroke color, and the value will have the same color as your background:
pie: {
radius: 0.2,
innerRadius: 0.125,
show: true,
stroke: {
width: 0.1,
color: '#808080'
}
}
See script: http://jsfiddle.net/hSmVH/
source
share