How can I remove the white line
between slices
and background
in Flot
pie chart
?
My jsfiddle
<You can add the STROKE Property
pie: {
radius: 0.2,
innerRadius: 0.125,
show: true,
stroke: {
width: 0.1
}
}
Set the value to 0 totally hide the pie.
So you could also add a stroke color, with the value set to the same color as your background :
pie: {
radius: 0.2,
innerRadius: 0.125,
show: true,
stroke: {
width: 0.1,
color: '#808080'
}
}
See the Fiddle : http://jsfiddle.net/hSmVH/