如何删除white line
slices
中background
与Flot
之间的pie chart
?
正如你所看到的那样:
我希望它看起来像那样(忽略我糟糕的艺术技巧):
我的代码:
$(function () {
var data = [
{ label: "Read", data: 50, color: '#614E43' },
{ label: "Unread", data: 150, color: '#F5912D' }];
$.plot($("#star"), data,
{
series: {
pie: {
radius: 0.2,
innerRadius: 0.125,
show: true
}
}
});
});
答案 0 :(得分:10)
您可以添加STROKE属性
pie: {
radius: 0.2,
innerRadius: 0.125,
show: true,
stroke: {
width: 0.1
}
}
将值设置为0完全隐藏饼图。
因此,您还可以添加笔触颜色,其值设置为与背景相同的颜色:
pie: {
radius: 0.2,
innerRadius: 0.125,
show: true,
stroke: {
width: 0.1,
color: '#808080'
}
}