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

x33g5p2x  于2022-02-02 转载在 其他  
字(6.7k)|赞(0)|评价(0)|浏览(71)

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

XYPlot.fireChangeEvent介绍

暂无

代码示例

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

/**
 * Sets the shadow generator for the plot and sends a
 * {@link PlotChangeEvent} to all registered listeners.
 *
 * @param generator  the generator ({@code null} permitted).
 *
 * @since 1.0.14
 */
public void setShadowGenerator(ShadowGenerator generator) {
  this.shadowGenerator = generator;
  fireChangeEvent();
}

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

/**
 * Sets the paint for the domain tick bands.
 *
 * @param paint  the paint ({@code null} permitted).
 *
 * @see #getDomainTickBandPaint()
 */
public void setDomainTickBandPaint(Paint paint) {
  this.domainTickBandPaint = paint;
  fireChangeEvent();
}

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

/**
 * Sets the flag that controls whether or not the zero baseline is
 * displayed for the range axis, and sends a {@link PlotChangeEvent} to
 * all registered listeners.
 *
 * @param visible  the flag.
 *
 * @see #isRangeZeroBaselineVisible()
 */
public void setRangeZeroBaselineVisible(boolean visible) {
  this.rangeZeroBaselineVisible = visible;
  fireChangeEvent();
}

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

/**
 * Sets the paint for the range tick bands.
 *
 * @param paint  the paint (<code>null</code> permitted).
 *
 * @see #getRangeTickBandPaint()
 */
public void setRangeTickBandPaint(Paint paint) {
  this.rangeTickBandPaint = paint;
  fireChangeEvent();
}

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

/**
 * Sets the weight for the plot and sends a {@link PlotChangeEvent} to all
 * registered listeners.
 *
 * @param weight  the weight.
 *
 * @see #getWeight()
 */
public void setWeight(int weight) {
  this.weight = weight;
  fireChangeEvent();
}

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

/**
 * Sets the paint for the range tick bands.
 *
 * @param paint  the paint ({@code null} permitted).
 *
 * @see #getRangeTickBandPaint()
 */
public void setRangeTickBandPaint(Paint paint) {
  this.rangeTickBandPaint = paint;
  fireChangeEvent();
}

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

/**
 * Sets the fixed legend items for the plot.  Leave this set to
 * {@code null} if you prefer the legend items to be created
 * automatically.
 *
 * @param items  the legend items ({@code null} permitted).
 *
 * @see #getFixedLegendItems()
 */
public void setFixedLegendItems(LegendItemCollection items) {
  this.fixedLegendItems = items;
  fireChangeEvent();
}

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

/**
 * Sets the paint for the domain tick bands.
 *
 * @param paint  the paint (<code>null</code> permitted).
 *
 * @see #getDomainTickBandPaint()
 */
public void setDomainTickBandPaint(Paint paint) {
  this.domainTickBandPaint = paint;
  fireChangeEvent();
}

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

/**
 * Sets the weight for the plot and sends a {@link PlotChangeEvent} to all
 * registered listeners.
 *
 * @param weight  the weight.
 *
 * @see #getWeight()
 */
public void setWeight(int weight) {
  this.weight = weight;
  fireChangeEvent();
}

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

/**
 * Sets the flag that controls whether or not the zero baseline is
 * displayed for the range axis, and sends a {@link PlotChangeEvent} to
 * all registered listeners.
 *
 * @param visible  the flag.
 *
 * @see #isRangeZeroBaselineVisible()
 */
public void setRangeZeroBaselineVisible(boolean visible) {
  this.rangeZeroBaselineVisible = visible;
  fireChangeEvent();
}

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

/**
 * Sets the renderers for this plot and sends a {@link PlotChangeEvent}
 * to all registered listeners.
 *
 * @param renderers  the renderers ({@code null} not permitted).
 */
public void setRenderers(XYItemRenderer[] renderers) {
  for (int i = 0; i < renderers.length; i++) {
    setRenderer(i, renderers[i], false);
  }
  fireChangeEvent();
}

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

/**
 * Sets the stroke for the grid lines plotted against the range axis,
 * and sends a {@link PlotChangeEvent} to all registered listeners.
 *
 * @param stroke  the stroke ({@code null} not permitted).
 *
 * @see #getRangeGridlineStroke()
 */
public void setRangeGridlineStroke(Stroke stroke) {
  Args.nullNotPermitted(stroke, "stroke");
  this.rangeGridlineStroke = stroke;
  fireChangeEvent();
}

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

/**
 * Sets the quadrant origin and sends a {@link PlotChangeEvent} to all
 * registered listeners.
 *
 * @param origin  the origin ({@code null} not permitted).
 *
 * @see #getQuadrantOrigin()
 */
public void setQuadrantOrigin(Point2D origin) {
  Args.nullNotPermitted(origin, "origin");
  this.quadrantOrigin = origin;
  fireChangeEvent();
}

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

/**
 * Sets the renderers for this plot and sends a {@link PlotChangeEvent}
 * to all registered listeners.
 *
 * @param renderers  the renderers (<code>null</code> not permitted).
 */
public void setRenderers(XYItemRenderer[] renderers) {
  for (int i = 0; i < renderers.length; i++) {
    setRenderer(i, renderers[i], false);
  }
  fireChangeEvent();
}

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

/**
 * Sets the paint used to draw the crosshairs (if visible) and sends a
 * {@link PlotChangeEvent} to all registered listeners.
 *
 * @param paint the new crosshair paint ({@code null} not permitted).
 *
 * @see #getDomainCrosshairPaint()
 */
public void setDomainCrosshairPaint(Paint paint) {
  Args.nullNotPermitted(paint, "paint");
  this.domainCrosshairPaint = paint;
  fireChangeEvent();
}

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

/**
 * Sets the stroke for the zero baseline for the range axis,
 * and sends a {@link PlotChangeEvent} to all registered listeners.
 *
 * @param stroke  the stroke ({@code null} not permitted).
 *
 * @see #getRangeZeroBaselineStroke()
 */
public void setRangeZeroBaselineStroke(Stroke stroke) {
  Args.nullNotPermitted(stroke, "stroke");
  this.rangeZeroBaselineStroke = stroke;
  fireChangeEvent();
}

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

/**
 * Sets the paint for the zero baseline plotted against the range axis and
 * sends a {@link PlotChangeEvent} to all registered listeners.
 *
 * @param paint  the paint ({@code null} not permitted).
 *
 * @see #getRangeZeroBaselinePaint()
 */
public void setRangeZeroBaselinePaint(Paint paint) {
  Args.nullNotPermitted(paint, "paint");
  this.rangeZeroBaselinePaint = paint;
  fireChangeEvent();
}

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

/**
 * Clears all the annotations and sends a {@link PlotChangeEvent} to all
 * registered listeners.
 *
 * @see #addAnnotation(XYAnnotation)
 */
public void clearAnnotations() {
  for (XYAnnotation annotation : this.annotations) {
    annotation.removeChangeListener(this);
  }
  this.annotations.clear();
  fireChangeEvent();
}

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

/**
 * Sets the paint used to color the crosshairs (if visible) and sends a
 * {@link PlotChangeEvent} to all registered listeners.
 *
 * @param paint the new crosshair paint ({@code null} not permitted).
 *
 * @see #getRangeCrosshairPaint()
 */
public void setRangeCrosshairPaint(Paint paint) {
  Args.nullNotPermitted(paint, "paint");
  this.rangeCrosshairPaint = paint;
  fireChangeEvent();
}

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

/**
 * Sets the stroke for the zero baseline for the domain axis,
 * and sends a {@link PlotChangeEvent} to all registered listeners.
 *
 * @param stroke  the stroke ({@code null} not permitted).
 *
 * @since 1.0.5
 *
 * @see #getRangeZeroBaselineStroke()
 */
public void setDomainZeroBaselineStroke(Stroke stroke) {
  Args.nullNotPermitted(stroke, "stroke");
  this.domainZeroBaselineStroke = stroke;
  fireChangeEvent();
}

相关文章

微信公众号

最新文章

更多

XYPlot类方法