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

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

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

Plot.setDrawingSupplier介绍

[英]Sets the drawing supplier for the plot and sends a PlotChangeEvent to all registered listeners. The drawing supplier is responsible for supplying a limitless (possibly repeating) sequence of Paint, Stroke and Shape objects that the plot's renderer(s) can use to populate its (their) tables.
[中]设置绘图的图形供应商,并向所有注册的侦听器发送PlotChangeEvent。绘图供应商负责提供无限(可能重复)的绘制、笔划和形状对象序列,绘图渲染器可以使用这些对象填充其表格。

代码示例

代码示例来源:origin: jasperreports/jasperreports

plot.setDrawingSupplier(new DefaultDrawingSupplier(colors,
    DefaultDrawingSupplier.DEFAULT_OUTLINE_PAINT_SEQUENCE,
    DefaultDrawingSupplier.DEFAULT_STROKE_SEQUENCE,
plot.setDrawingSupplier(new DefaultDrawingSupplier(colors,
              DefaultDrawingSupplier.DEFAULT_OUTLINE_PAINT_SEQUENCE,
              DefaultDrawingSupplier.DEFAULT_STROKE_SEQUENCE,

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

plot.setDrawingSupplier(getDrawingSupplier());

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

Args.nullNotPermitted(plot, "plot");
if (plot.getDrawingSupplier() != null) {
  plot.setDrawingSupplier(getDrawingSupplier());

代码示例来源:origin: pentaho/pentaho-platform

DefaultDrawingSupplier.DEFAULT_OUTLINE_PAINT_SEQUENCE, DefaultDrawingSupplier.DEFAULT_STROKE_SEQUENCE,
    DefaultDrawingSupplier.DEFAULT_OUTLINE_STROKE_SEQUENCE, DefaultDrawingSupplier.DEFAULT_SHAPE_SEQUENCE );
plot.setDrawingSupplier( drawingSupplier );

相关文章