Codota Logo
PiePlot.setBaseSectionOutlinePaint
Code IndexAdd Codota to your IDE (free)

How to use
setBaseSectionOutlinePaint
method
in
org.jfree.chart.plot.PiePlot

Best Java code snippets using org.jfree.chart.plot.PiePlot.setBaseSectionOutlinePaint (Showing top 6 results out of 315)

  • Common ways to obtain PiePlot
private void myMethod () {
PiePlot p =
  • Codota IconJFreeChart chart;(PiePlot) chart.getPlot()
  • Codota IconPieDataset dataset;new PiePlot(dataset)
  • Smart code suggestions by Codota
}
origin: jfree/eastwood

/**
 * Creates a pie chart.
 *
 * @return A pie chart.
 */
private static JFreeChart createPieChart() {
  JFreeChart chart = ChartFactory.createPieChart(null, null,
      false, true, false);
  chart.setBackgroundPaint(Color.white);
  PiePlot plot = (PiePlot) chart.getPlot();
  plot.setBackgroundPaint(null);
  plot.setInsets(RectangleInsets.ZERO_INSETS);
  plot.setInteriorGap(0.06);
  plot.setStartAngle(0.0);
  plot.setLabelGenerator(null);
  plot.setBaseSectionOutlinePaint(Color.white);
  plot.setBaseSectionOutlineStroke(new BasicStroke(1.2f,
      BasicStroke.CAP_ROUND, BasicStroke.JOIN_ROUND));
  plot.setOutlineVisible(false);
  plot.setLabelBackgroundPaint(null);
  plot.setLabelOutlinePaint(null);
  plot.setLabelShadowPaint(null);
  plot.setLabelPadding(RectangleInsets.ZERO_INSETS);
  plot.setLabelFont(new Font("Dialog", Font.PLAIN, 12));
  plot.setLabelPaint(Color.gray);
  plot.setToolTipGenerator(new StandardPieToolTipGenerator("{2}"));
  return chart;
}
origin: com.atlassian.jira/jira-api

plot.setShadowYOffset(0.0);
plot.setBaseSectionOutlinePaint(ChartDefaults.outlinePaintColor);
plot.setBaseSectionOutlineStroke(new BasicStroke(2.0f));
origin: com.atlassian.confluence.extra.chart/chart-plugin

plot.setShadowYOffset(0.0);
plot.setBaseSectionOutlinePaint(ChartDefaults.outlinePaintColor);
plot.setBaseSectionOutlineStroke(new BasicStroke(2.0f));
origin: com.manydesigns/portofino-chart

plot.setBaseSectionOutlinePaint(Color.BLACK);
origin: org.jboss.seam/jboss-seam-pdf

pieplot.setBaseSectionOutlinePaint(findColor(baseSectionOutlinePaint));
    .setBaseSectionOutlinePaint(findColor(sectionOutlinePaint));
origin: datacleaner/DataCleaner

piePlot.setBaseSectionOutlinePaint(WidgetUtils.BG_COLOR_DARK);
piePlot.setBaseSectionOutlineStroke(STROKE_NORMAL);
piePlot.setLabelFont(WidgetUtils.FONT_SMALL);
org.jfree.chart.plotPiePlotsetBaseSectionOutlinePaint

Javadoc

Sets the base section paint.

Popular methods of PiePlot

  • setLabelGenerator
    Sets the section label generator and sends a PlotChangeEvent to all registered listeners.
  • setSectionPaint
    Sets the paint associated with the specified key, and sends a PlotChangeEvent to all registered list
  • setLabelFont
    Sets the section label font and sends a PlotChangeEvent to all registered listeners.
  • setToolTipGenerator
    Sets the tool tip generator and sends a PlotChangeEvent to all registered listeners. Set the generat
  • setBackgroundPaint
  • setCircular
    Sets the circular attribute and, if requested, sends a PlotChangeEvent to all registered listeners.
  • setLabelBackgroundPaint
    Sets the section label background paint and sends a PlotChangeEvent to all registered listeners.
  • setStartAngle
    Sets the starting angle and sends a PlotChangeEvent to all registered listeners. The initial default
  • setURLGenerator
    Sets the URL generator and sends a PlotChangeEvent to all registered listeners.
  • setExplodePercent
    Sets the amount that a pie section should be exploded and sends a PlotChangeEvent to all registered
  • setNoDataMessage
  • setOutlinePaint
  • setNoDataMessage,
  • setOutlinePaint,
  • setIgnoreNullValues,
  • setLabelGap,
  • <init>,
  • getDataset,
  • setBaseSectionOutlineStroke,
  • setDirection,
  • setInteriorGap

Popular in Java

  • Running tasks concurrently on multiple threads
  • notifyDataSetChanged (ArrayAdapter)
  • onRequestPermissionsResult (Fragment)
  • addToBackStack (FragmentTransaction)
  • GridLayout (java.awt)
    The GridLayout class is a layout manager that lays out a container's components in a rectangular gri
  • Charset (java.nio.charset)
    A charset is a named mapping between Unicode characters and byte sequences. Every Charset can decode
  • Arrays (java.util)
    This class contains various methods for manipulating arrays (such as sorting and searching). This cl
  • GregorianCalendar (java.util)
    GregorianCalendar is a concrete subclass of Calendarand provides the standard calendar used by most
  • Stack (java.util)
    The Stack class represents a last-in-first-out (LIFO) stack of objects. It extends class Vector with
  • Executors (java.util.concurrent)
    Factory and utility methods for Executor, ExecutorService, ScheduledExecutorService, ThreadFactory,
Codota Logo
  • Products

    Search for Java codeSearch for JavaScript codeEnterprise
  • IDE Plugins

    IntelliJ IDEAWebStormAndroid StudioEclipseVisual Studio CodePyCharmSublime TextPhpStormVimAtomGoLandRubyMineEmacsJupyter
  • Company

    About UsContact UsCareers
  • Resources

    FAQBlogCodota Academy Plugin user guide Terms of usePrivacy policyJava Code IndexJavascript Code Index
Get Codota for your IDE now