I have a pretty basic donut chart using flot.js.
var options = {
series: {
pie: {
innerRadius: 0.85,
show: true
}
},
grid: {
hoverable: true
},
colors: ["#83a243", "#0d596d"]
};
$.plot($("#donut-div"), [4, 6], options);
Is it possible to format individual slices? I want to set the innerRadius of one slice to be wider than another. My goal is to have a graph with two data points and to make one of the slices wider to emphasize that information.