/**
* Constructs a panel containing a chart.
*
* @param comp The parent.
* @param style The style of the composite.
* @param chart the chart.
* @param useBuffer a flag controlling whether or not an off-screen buffer
* is used.
*/
public ChartComposite(Composite comp, int style, JFreeChart chart,
boolean useBuffer) {
this(comp, style, chart,
DEFAULT_WIDTH,
DEFAULT_HEIGHT,
DEFAULT_MINIMUM_DRAW_WIDTH,
DEFAULT_MINIMUM_DRAW_HEIGHT,
DEFAULT_MAXIMUM_DRAW_WIDTH,
DEFAULT_MAXIMUM_DRAW_HEIGHT,
useBuffer,
true, // properties
true, // save
true, // print
true, // zoom
true // tooltips
);
}
ChartComposite.java 文件源码
java
阅读 35
收藏 0
点赞 0
评论 0
项目:parabuild-ci
作者:
评论列表
文章目录