Available Methods
- setSectionPaint ( )
- setLabelFont ( )
- setLabelGenerator ( )
- setToolTipGenerator ( )
- setOutlineVisible ( )
- setBaseSectionOutlinePaint ( )
- setInsets ( )
- setInteriorGap ( )
- setLabelBackgroundPaint ( )
- setBackgroundPaint ( )
- setLabelPaint ( )
- setCircular ( )
- setLabelGap ( )
- setLabelOutlineStroke ( )
- setSectionOutlinesVisible ( )
- setLabelLinkPaint ( )
- handleMouseWheelRotation ( )
- setLabelLinkStroke ( )
- setDataset ( )
- setLabelOutlinePaint ( )
- setShadowXOffset ( )
- setBaseSectionPaint ( )
- setURLGenerator ( )
- setShadowPaint ( )
- setNoDataMessage ( )
- setLegendLabelGenerator ( )
- setDirection ( )
- getAutoPopulateSectionOutlinePaint ( )
- setLabelLinkStyle ( )
- setIgnoreNullValues ( )
- setLabelLinksVisible ( )
- clearSectionPaints ( )
- setBaseSectionOutlineStroke ( )
- setSectionOutlinePaint ( )
- setOutlinePaint ( )
- clearSectionOutlinePaints ( )
- getAutoPopulateSectionPaint ( )
- setIgnoreZeroValues ( )
- setExplodePercent ( )
- clearSectionOutlineStrokes ( )
- setSimpleLabels ( )
- setShadowGenerator ( )
- setLegendItemShape ( )
Related Classes
- java.util.Iterator
- java.util.Locale
- java.text.DecimalFormat
- java.text.NumberFormat
- java.awt.Color
- java.awt.Font
- java.awt.Rectangle
- java.awt.geom.Rectangle2D
- java.awt.BasicStroke
- java.awt.Stroke
- org.jfree.chart.JFreeChart
- org.jfree.chart.ChartFactory
- java.awt.GradientPaint
- org.jfree.chart.plot.XYPlot
- org.jfree.chart.plot.CategoryPlot
- javafx.scene.input.ScrollEvent
- org.jfree.data.category.CategoryDataset
- org.jfree.chart.title.TextTitle
- org.jfree.data.general.DefaultPieDataset
- org.jfree.chart.title.LegendTitle
- net.sf.jasperreports.engine.JRException
- org.jfree.ui.RectangleInsets
- org.jfree.chart.plot.Plot
- org.jfree.chart.block.BlockBorder
- org.jfree.ui.RectangleEdge
Java Code Examples for org.jfree.chart.plot.PiePlot#setBaseSectionPaint()
The following examples show how to use
org.jfree.chart.plot.PiePlot#setBaseSectionPaint() .
You can vote up the ones you like or vote down the ones you don't like,
and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example 1
Source File: PiePlotTests.java From astor with GNU General Public License v2.0 | 5 votes |
/** * Check that the default base section paint is not null, and that you * can never set it to null. */ public void testGetBaseSectionPaint() { PiePlot plot = new PiePlot(); assertNotNull(plot.getBaseSectionPaint()); boolean pass = false; try { plot.setBaseSectionPaint(null); } catch (IllegalArgumentException e) { pass = true; } assertTrue(pass); }
Example 2
Source File: PiePlotTests.java From astor with GNU General Public License v2.0 | 5 votes |
/** * Check that the default base section paint is not null, and that you * can never set it to null. */ public void testGetBaseSectionPaint() { PiePlot plot = new PiePlot(); assertNotNull(plot.getBaseSectionPaint()); boolean pass = false; try { plot.setBaseSectionPaint(null); } catch (IllegalArgumentException e) { pass = true; } assertTrue(pass); }