assertFalse(plot1.equals(plot2));
plot2.setExplodePercent(3, 0.33);
assertTrue(plot1.equals(plot2));
// labelGenerator
plot1.setLabelGenerator(new StandardPieItemLabelGenerator("{2}{1}{0}"));
assertFalse(plot1.equals(plot2));
plot2.setLabelGenerator(new StandardPieItemLabelGenerator("{2}{1}{0}"));
assertTrue(plot1.equals(plot2));
// labelFont
Font f = new Font("SansSerif", Font.PLAIN, 20);
plot1.setLabelFont(f);
assertFalse(plot1.equals(plot2));
plot2.setLabelFont(f);
assertTrue(plot1.equals(plot2));
// labelPaint
plot1.setLabelPaint(Color.blue);
assertFalse(plot1.equals(plot2));
plot2.setLabelPaint(Color.blue);
assertTrue(plot1.equals(plot2));
// maximumLabelWidth
plot1.setMaximumLabelWidth(0.33);
assertFalse(plot1.equals(plot2));
plot2.setMaximumLabelWidth(0.33);
assertTrue(plot1.equals(plot2));
// labelGap
plot1.setLabelGap(0.11);
assertFalse(plot1.equals(plot2));
plot2.setLabelGap(0.11);
assertTrue(plot1.equals(plot2));
// linkMargin
plot1.setLabelLinkMargin(0.11);
assertFalse(plot1.equals(plot2));
plot2.setLabelLinkMargin(0.11);
assertTrue(plot1.equals(plot2));
// labelLinkPaint
plot1.setLabelLinkPaint(Color.red);
assertFalse(plot1.equals(plot2));
plot2.setLabelLinkPaint(Color.red);
assertTrue(plot1.equals(plot2));
// labelLinkStroke
plot1.setLabelLinkStroke(new BasicStroke(1.0f));
assertFalse(plot1.equals(plot2));
plot2.setLabelLinkStroke(new BasicStroke(1.0f));
assertTrue(plot1.equals(plot2));
// toolTipGenerator
plot1.setToolTipGenerator(new StandardPieItemLabelGenerator("{2}{1}{0}"));
assertFalse(plot1.equals(plot2));
plot2.setToolTipGenerator(new StandardPieItemLabelGenerator("{2}{1}{0}"));
assertTrue(plot1.equals(plot2));
// urlGenerator
plot1.setURLGenerator(new StandardPieURLGenerator("xx"));
assertFalse(plot1.equals(plot2));