【发布时间】:2013-09-13 10:36:58
【问题描述】:
如何删除Flotpie chart 中slices 和background 之间的white line?
如您所见:
我希望它看起来像那样(忽略我糟糕的艺术技巧):
我的代码:
$(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
}
}
});
});
【问题讨论】:
-
如果您有相同的需求,但使用 Google Pie Charts API,请参阅此类似问题:stackoverflow.com/questions/22228074/…
标签: jquery jquery-plugins charts flot pie-chart