You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Erich Seifert edited this page Mar 14, 2016
·
1 revision
How can I create empty sections in a pie plot?
In order to create an empty section in a pie simply use a negative value:
DataTabledata = newDataTable(Integer.class);
data.add(5);
data.add(10);
// This is an empty section of size 3data.add(-3);
PiePlotplot = newPiePlot(data);