org.jfree.chart.plot.Plot.setInsets()方法的使用及代码示例

x33g5p2x  于2022-01-26 转载在 其他  
字(3.1k)|赞(0)|评价(0)|浏览(173)

本文整理了Java中org.jfree.chart.plot.Plot.setInsets()方法的一些代码示例,展示了Plot.setInsets()的具体用法。这些代码示例主要来源于Github/Stackoverflow/Maven等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。Plot.setInsets()方法的具体详情如下:
包路径:org.jfree.chart.plot.Plot
类名称:Plot
方法名:setInsets

Plot.setInsets介绍

[英]Sets the insets for the plot and sends a PlotChangeEvent to all registered listeners.
[中]设置绘图的插入,并向所有注册的侦听器发送PlotChangeEvent。

代码示例

代码示例来源:origin: jfree/jfreechart

/**
 * Sets the insets for the plot and sends a {@link PlotChangeEvent} to
 * all registered listeners.
 *
 * @param insets  the new insets ({@code null} not permitted).
 *
 * @see #getInsets()
 * @see #setInsets(RectangleInsets, boolean)
 */
public void setInsets(RectangleInsets insets) {
  setInsets(insets, true);
}

代码示例来源:origin: org.codehaus.jtstand/jtstand-chart

/**
 * Sets the insets for the plot and sends a {@link PlotChangeEvent} to
 * all registered listeners.
 *
 * @param insets  the new insets (<code>null</code> not permitted).
 *
 * @see #getInsets()
 * @see #setInsets(RectangleInsets, boolean)
 */
public void setInsets(RectangleInsets insets) {
  setInsets(insets, true);
}

代码示例来源:origin: org.hudsonci.plugins/analysis-core

/**
 * Sets properties common to all plots of this plug-in.
 *
 * @param plot
 *            the plot to set the properties for
 */
// CHECKSTYLE:OFF
protected void setPlotProperties(final Plot plot) {
  plot.setBackgroundPaint(Color.WHITE);
  plot.setOutlinePaint(null);
  plot.setForegroundAlpha(0.8f);
  plot.setInsets(new RectangleInsets(0, 0, 0, 5.0));
}
// CHECKSTYLE:ON

代码示例来源:origin: jenkinsci/analysis-core-plugin

/**
 * Sets properties common to all plots of this plug-in.
 *
 * @param plot
 *            the plot to set the properties for
 */
// CHECKSTYLE:OFF
protected void setPlotProperties(final Plot plot) {
  plot.setBackgroundPaint(Color.WHITE);
  plot.setOutlinePaint(null);
  plot.setForegroundAlpha(0.8f);
  plot.setInsets(new RectangleInsets(0, 0, 0, 5.0));
}
// CHECKSTYLE:ON

代码示例来源:origin: com.xpn.xwiki.platform/xwiki-core

public static void customizePlot(Plot plot, ChartParams params)
{
  if (params.get(ChartParams.PLOT_BACKGROUND_COLOR) != null) {
    plot.setBackgroundPaint(params.getColor(ChartParams.PLOT_BACKGROUND_COLOR));
  }
  if (params.get(ChartParams.PLOT_BACKGROUND_ALPHA) != null) {
    plot.setBackgroundAlpha(params.getFloat(ChartParams.PLOT_BACKGROUND_ALPHA).floatValue());
  }
  if (params.get(ChartParams.PLOT_FOREGROUND_ALPHA) != null) {
    plot.setForegroundAlpha(params.getFloat(ChartParams.PLOT_FOREGROUND_ALPHA).floatValue());
  }
  if (params.get(ChartParams.PLOT_INSERTS) != null) {
    plot.setInsets(params.getRectangleInsets(ChartParams.PLOT_INSERTS));
  }
  if (params.get(ChartParams.PLOT_OUTLINE_COLOR) != null) {
    plot.setOutlinePaint(params.getColor(ChartParams.PLOT_OUTLINE_COLOR));
  }
  if (params.get(ChartParams.PLOT_OUTLINE_STROKE) != null) {
    plot.setOutlineStroke(params.getStroke(ChartParams.PLOT_OUTLINE_STROKE));
  }
}

代码示例来源:origin: org.codehaus.jtstand/jtstand-chart

plot.setOutlineStroke(getOutlineStroke());
plot.setBackgroundPaint(getBackgroundPaint());
plot.setInsets(getPlotInsets());

代码示例来源:origin: jfree/jfreechart

plot.setOutlineStroke(getOutlineStroke());
plot.setBackgroundPaint(getBackgroundPaint());
plot.setInsets(getPlotInsets());

代码示例来源:origin: datacleaner/DataCleaner

plot.setInsets(new RectangleInsets(UnitType.ABSOLUTE, 0d, 0d, 0d, 0d));
plot.setBackgroundPaint(WidgetUtils.BG_COLOR_BRIGHTEST);
plot.setOutlinePaint(WidgetUtils.BG_COLOR_BRIGHTEST);

相关文章