本文整理汇总了Java中org.jfree.chart.plot.MeterPlot类的典型用法代码示例。如果您正苦于以下问题:Java MeterPlot类的具体用法?Java MeterPlot怎么用?Java MeterPlot使用的例子?那么, 这里精选的类代码示例或许可以为您提供帮助。
MeterPlot类属于org.jfree.chart.plot包,在下文中一共展示了MeterPlot类的15个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: testDrawWithNullInfo
import org.jfree.chart.plot.MeterPlot; //导入依赖的package包/类
/**
* Draws the chart with a single range. At one point, this caused a null
* pointer exception (fixed now).
*/
public void testDrawWithNullInfo() {
boolean success = false;
MeterPlot plot = new MeterPlot(new DefaultValueDataset(60.0));
plot.addInterval(new MeterInterval("Normal", new Range(0.0, 80.0)));
JFreeChart chart = new JFreeChart(plot);
try {
BufferedImage image = new BufferedImage(200, 100,
BufferedImage.TYPE_INT_RGB);
Graphics2D g2 = image.createGraphics();
chart.draw(g2, new Rectangle2D.Double(0, 0, 200, 100), null, null);
g2.dispose();
success = true;
}
catch (Exception e) {
success = false;
}
assertTrue(success);
}
示例2: testDrawWithNullInfo
import org.jfree.chart.plot.MeterPlot; //导入依赖的package包/类
/**
* Draws the chart with a single range. At one point, this caused a null
* pointer exception (fixed now).
*/
public void testDrawWithNullInfo() {
boolean success = false;
MeterPlot plot = new MeterPlot(new DefaultValueDataset(60.0));
plot.addInterval(new MeterInterval("Normal", new Range(0.0, 80.0)));
JFreeChart chart = new JFreeChart(plot);
try {
BufferedImage image = new BufferedImage(200, 100,
BufferedImage.TYPE_INT_RGB);
Graphics2D g2 = image.createGraphics();
chart.draw(g2, new Rectangle2D.Double(0, 0, 200, 100), null, null);
g2.dispose();
success = true;
}
catch (Exception e) {
success = false;
}
assertTrue(success);
}
示例3: createChart
import org.jfree.chart.plot.MeterPlot; //导入依赖的package包/类
/** {@inheritDoc} */
@Override
protected JFreeChart createChart() {
MeterPlot plot = createMeterPlot();
plot.addInterval(new MeterInterval("Green", new Range(0,
greenThreshold), null, null, ECCSMColor.GREEN.getColor()));
plot.addInterval(new MeterInterval("Yellow", new Range(greenThreshold,
yellowThreshold), null, null, ECCSMColor.YELLOW.getColor()));
plot.addInterval(new MeterInterval("Red", new Range(yellowThreshold,
redThreshold), null, null, ECCSMColor.RED.getColor()));
JFreeChart chart = new JFreeChart(title, JFreeChart.DEFAULT_TITLE_FONT,
plot, drawLegend);
return chart;
}
示例4: createMeterPlot
import org.jfree.chart.plot.MeterPlot; //导入依赖的package包/类
/** Creates a meter plot and sets color values */
private MeterPlot createMeterPlot() {
MeterPlot plot = new MeterPlot(new DefaultValueDataset(value));
plot.setUnits(unit);
plot.setDialShape(DialShape.CHORD);
plot.setDialBackgroundPaint(Color.WHITE);
plot.setRange(new Range(0, redThreshold));
plot.setDialOutlinePaint(Color.GRAY);
plot.setNeedlePaint(Color.BLACK);
plot.setTickLabelsVisible(true);
plot.setTickLabelPaint(Color.BLACK);
plot.setTickPaint(Color.GRAY);
plot.setTickLabelFormat(NumberFormat.getNumberInstance());
plot.setTickSize(10);
plot.setValuePaint(Color.BLACK);
return plot;
}
示例5: DefaultMeterDataset
import org.jfree.chart.plot.MeterPlot; //导入依赖的package包/类
/**
* Creates a new dataset.
*
* @param min the minimum value.
* @param max the maximum value.
* @param value the current value.
* @param units the unit description.
*/
public DefaultMeterDataset(final Number min,
final Number max,
final Number value,
final String units) {
this(
min, max, value, units, null, null, null, null, null, null, MeterPlot.FULL_DATA_RANGE
);
}
示例6: testDrawWithNullInfo
import org.jfree.chart.plot.MeterPlot; //导入依赖的package包/类
/**
* Draws the chart with a single range. At one point, this caused a null
* pointer exception (fixed now).
*/
@Test
public void testDrawWithNullInfo() {
MeterPlot plot = new MeterPlot(new DefaultValueDataset(60.0));
plot.addInterval(new MeterInterval("Normal", new Range(0.0, 80.0)));
JFreeChart chart = new JFreeChart(plot);
BufferedImage image = new BufferedImage(200, 100,
BufferedImage.TYPE_INT_RGB);
Graphics2D g2 = image.createGraphics();
chart.draw(g2, new Rectangle2D.Double(0, 0, 200, 100), null, null);
g2.dispose();
//FIXME we should really assert a value here
}
示例7: applyToMeterPlot
import org.jfree.chart.plot.MeterPlot; //导入依赖的package包/类
/**
* Applies the attributes of this theme to a {@link MeterPlot}.
*
* @param plot the plot (<code>null</code> not permitted).
*/
protected void applyToMeterPlot(MeterPlot plot) {
plot.setDialBackgroundPaint(this.plotBackgroundPaint);
plot.setValueFont(this.largeFont);
plot.setValuePaint(this.axisLabelPaint);
plot.setDialOutlinePaint(this.plotOutlinePaint);
plot.setNeedlePaint(this.thermometerPaint);
plot.setTickLabelFont(this.regularFont);
plot.setTickLabelPaint(this.tickLabelPaint);
}
示例8: applyToMeterPlot
import org.jfree.chart.plot.MeterPlot; //导入依赖的package包/类
/**
* Applies the attributes of this theme to a {@link MeterPlot}.
*
* @param plot the plot ({@code null} not permitted).
*/
protected void applyToMeterPlot(MeterPlot plot) {
plot.setDialBackgroundPaint(this.plotBackgroundPaint);
plot.setValueFont(this.largeFont);
plot.setValuePaint(this.axisLabelPaint);
plot.setDialOutlinePaint(this.plotOutlinePaint);
plot.setNeedlePaint(this.thermometerPaint);
plot.setTickLabelFont(this.regularFont);
plot.setTickLabelPaint(this.tickLabelPaint);
}
示例9: createDialChart
import org.jfree.chart.plot.MeterPlot; //导入依赖的package包/类
private JFreeChart createDialChart(ReportChart reportChart,
ChartValue[] values, boolean displayInline)
{
DefaultValueDataset dataset = createDefaultValueDataset(values);
MeterPlot plot = new MeterPlot(dataset);
plot.setRange(new Range(0, 60));
plot.addInterval(new MeterInterval("Normal", new Range(0.0, 35.0),
Color.lightGray, new BasicStroke(2.0f), new Color(0, 255, 0, 64)));
plot.addInterval(new MeterInterval("Warning", new Range(35.0, 50.0),
Color.lightGray, new BasicStroke(2.0f), new Color(255, 255, 0, 64)));
plot.addInterval(new MeterInterval("Critical", new Range(50.0, 60.0),
Color.lightGray, new BasicStroke(2.0f), new Color(255, 0, 0, 128)));
plot.setNeedlePaint(Color.darkGray);
plot.setDialBackgroundPaint(Color.white);
plot.setDialOutlinePaint(Color.gray);
plot.setDialShape(DialShape.CHORD);
plot.setMeterAngle(260);
plot.setTickLabelsVisible(true);
plot.setTickLabelFont(new Font("Dialog", Font.BOLD, 10));
plot.setTickLabelPaint(Color.darkGray);
plot.setTickSize(5.0);
plot.setTickPaint(Color.lightGray);
plot.setValuePaint(Color.black);
plot.setValueFont(new Font("Dialog", Font.BOLD, 14));
JFreeChart chart = new JFreeChart(reportChart.getTitle(),
JFreeChart.DEFAULT_TITLE_FONT, plot, reportChart.isShowLegend());
return chart;
}
示例10: getGaugeChart
import org.jfree.chart.plot.MeterPlot; //导入依赖的package包/类
private JFreeChart getGaugeChart( BaseChart chart, ValueDataset dataSet )
{
MeterPlot meterPlot = new MeterPlot( dataSet );
meterPlot.setUnits( "" );
meterPlot.setRange( new Range( 0.0d, 100d ) );
for ( int i = 0; i < 10; i++ )
{
double start = i * 10;
double end = start + 10;
String label = String.valueOf( start );
meterPlot.addInterval( new MeterInterval( label, new Range( start, end ), COLOR_LIGHT_GRAY, null, COLOR_LIGHT_GRAY ) );
}
meterPlot.setMeterAngle(180);
meterPlot.setDialBackgroundPaint( COLOR_LIGHT_GRAY );
meterPlot.setDialShape( DialShape.CHORD );
meterPlot.setNeedlePaint( COLORS[0] );
meterPlot.setTickLabelsVisible( true );
meterPlot.setTickLabelFont( LABEL_FONT );
meterPlot.setTickLabelPaint( Color.BLACK );
meterPlot.setTickPaint( COLOR_LIGHTER_GRAY );
meterPlot.setValueFont( TITLE_FONT );
meterPlot.setValuePaint( Color.BLACK );
JFreeChart meterChart = new JFreeChart( chart.getName(), meterPlot );
setBasicConfig( meterChart, chart );
meterChart.removeLegend();
return meterChart;
}
示例11: createDialChart
import org.jfree.chart.plot.MeterPlot; //导入依赖的package包/类
private JFreeChart createDialChart(ReportChart reportChart,
ChartValue[] values, boolean displayInline)
{
DefaultValueDataset dataset = createDefaultValueDataset(values);
MeterPlot plot = new MeterPlot(dataset);
plot.setRange(new Range(0, 60));
plot.addInterval(new MeterInterval("Normal", new Range(0.0, 35.0),
Color.lightGray, new BasicStroke(2.0f), new Color(0, 255, 0, 64)));
plot.addInterval(new MeterInterval("Warning", new Range(35.0, 50.0),
Color.lightGray, new BasicStroke(2.0f), new Color(255, 255, 0, 64)));
plot.addInterval(new MeterInterval("Critical", new Range(50.0, 60.0),
Color.lightGray, new BasicStroke(2.0f), new Color(255, 0, 0, 128)));
plot.setNeedlePaint(Color.darkGray);
plot.setDialBackgroundPaint(Color.white);
plot.setDialOutlinePaint(Color.gray);
plot.setDialShape(DialShape.CHORD);
plot.setMeterAngle(260);
plot.setTickLabelsVisible(true);
plot.setTickLabelFont(new Font("Dialog", Font.BOLD, 10));
plot.setTickLabelPaint(Color.darkGray);
plot.setTickSize(5.0);
plot.setTickPaint(Color.lightGray);
plot.setValuePaint(Color.black);
plot.setValueFont(new Font("Dialog", Font.BOLD, 14));
JFreeChart chart = new JFreeChart(reportChart.getTitle(),
JFreeChart.DEFAULT_TITLE_FONT, plot, reportChart.isShowLegend());
return chart;
}
示例12: test
import org.jfree.chart.plot.MeterPlot; //导入依赖的package包/类
@Override
public void test() {
super.test();
numberOfPagesTest(1);
JFreeChart chart = getChart("summary.chart1", 0);
Plot plot = chart.getPlot();
Assert.assertEquals("renderer", MeterPlot.class, plot.getClass());
MeterPlot meterPlot = (MeterPlot) plot;
Assert.assertEquals("value", 15, meterPlot.getDataset().getValue());
Assert.assertEquals("data range low", 3d, meterPlot.getRange().getLowerBound());
Assert.assertEquals("data range high", 30d, meterPlot.getRange().getUpperBound());
Assert.assertEquals("value color", Color.BLUE, meterPlot.getValuePaint());
Assert.assertEquals("value mask", "15.0", meterPlot.getTickLabelFormat().format(15));
Assert.assertEquals("value font", new Font("Arial", Font.PLAIN, 10), meterPlot.getValueFont());
Assert.assertEquals("shape", DialShape.CIRCLE, meterPlot.getDialShape());
Assert.assertEquals("meter angle", 270, meterPlot.getMeterAngle());
Assert.assertEquals("units", "units", meterPlot.getUnits());
Assert.assertEquals("tick interval", 3d, meterPlot.getTickSize());
Assert.assertEquals("background color", Color.LIGHT_GRAY, meterPlot.getDialBackgroundPaint());
Assert.assertEquals("needle color", Color.CYAN, meterPlot.getNeedlePaint());
Assert.assertEquals("tick color", Color.MAGENTA, meterPlot.getTickPaint());
Assert.assertEquals("tick label font", new Font("Courier New", Font.PLAIN, 10), meterPlot.getTickLabelFont());
Assert.assertEquals("intervals size", 2, meterPlot.getIntervals().size());
intervalTest((MeterInterval) meterPlot.getIntervals().get(0), "red", new Color(1f, 0f, 0f, 0.8f), 25d, 30d);
intervalTest((MeterInterval) meterPlot.getIntervals().get(1), "yellow", new Color(1f, 1f, 0f, 0.5f), 20d, 25d);
}
示例13: updateInformation
import org.jfree.chart.plot.MeterPlot; //导入依赖的package包/类
/**
* Updates the legend information.
*
* @param plot the plot.
* @param data the dataset.
* @param type the type.
* @param index the index.
* @param legendItems the legend items.
* @param legendItemColors the colors.
*
* @return boolean.
*/
private boolean updateInformation(MeterPlot plot, ValueDataset data, int type, int index,
LegendItem[] legendItems, Paint[] legendItemColors) {
boolean ret = false;
String label = null;
// double minValue = 0.0;
// double maxValue = 0.0;
Paint paint = null;
switch(type) {
case MeterPlot.NORMAL_DATA_RANGE:
// minValue = plot.getNormalRange().getLowerBound();
// maxValue = plot.getNormalRange().getUpperBound();
paint = plot.getNormalPaint();
label = MeterPlot.NORMAL_TEXT;
break;
case MeterPlot.WARNING_DATA_RANGE:
// minValue = plot.getWarningRange().getLowerBound();
// maxValue = plot.getWarningRange().getUpperBound();
paint = plot.getWarningPaint();
label = MeterPlot.WARNING_TEXT;
break;
case MeterPlot.CRITICAL_DATA_RANGE:
// minValue = plot.getCriticalRange().getLowerBound();
// maxValue = plot.getCriticalRange().getUpperBound();
paint = plot.getCriticalPaint();
label = MeterPlot.CRITICAL_TEXT;
break;
case MeterPlot.FULL_DATA_RANGE:
// minValue = plot.getRange().getLowerBound();
// maxValue = plot.getRange().getUpperBound();
paint = MeterPlot.DEFAULT_BACKGROUND_PAINT;
label = "Meter Graph";
break;
default:
return false;
}
// if (minValue != null && maxValue != null) {
// if (data.getBorderType() == type) {
label += " Range: ";
// + data.getMinimumValue().toString() + " to "
// + minValue.toString()
// + " and "
// + maxValue.toString() + " to "
// + data.getMaximumValue().toString();
// }
// else {
// label += " Range: " + minValue.toString() + " to " + maxValue.toString();
// }
legendItems[index] = new LegendItem(label, label, null, true, null, null, null, null);
legendItemColors[index] = paint;
ret = true;
//}
return ret;
}
示例14: applyToPlot
import org.jfree.chart.plot.MeterPlot; //导入依赖的package包/类
/**
* Applies the attributes of this theme to a plot.
*
* @param plot the plot (<code>null</code>).
*/
protected void applyToPlot(Plot plot) {
ParamChecks.nullNotPermitted(plot, "plot");
if (plot.getDrawingSupplier() != null) {
plot.setDrawingSupplier(getDrawingSupplier());
}
if (plot.getBackgroundPaint() != null) {
plot.setBackgroundPaint(this.plotBackgroundPaint);
}
plot.setOutlinePaint(this.plotOutlinePaint);
// now handle specific plot types (and yes, I know this is some
// really ugly code that has to be manually updated any time a new
// plot type is added - I should have written something much cooler,
// but I didn't and neither did anyone else).
if (plot instanceof PiePlot) {
applyToPiePlot((PiePlot) plot);
}
else if (plot instanceof MultiplePiePlot) {
applyToMultiplePiePlot((MultiplePiePlot) plot);
}
else if (plot instanceof CategoryPlot) {
applyToCategoryPlot((CategoryPlot) plot);
}
else if (plot instanceof XYPlot) {
applyToXYPlot((XYPlot) plot);
}
else if (plot instanceof FastScatterPlot) {
applyToFastScatterPlot((FastScatterPlot) plot);
}
else if (plot instanceof MeterPlot) {
applyToMeterPlot((MeterPlot) plot);
}
else if (plot instanceof ThermometerPlot) {
applyToThermometerPlot((ThermometerPlot) plot);
}
else if (plot instanceof SpiderWebPlot) {
applyToSpiderWebPlot((SpiderWebPlot) plot);
}
else if (plot instanceof PolarPlot) {
applyToPolarPlot((PolarPlot) plot);
}
}
示例15: applyToPlot
import org.jfree.chart.plot.MeterPlot; //导入依赖的package包/类
/**
* Applies the attributes of this theme to a plot.
*
* @param plot the plot ({@code null}).
*/
protected void applyToPlot(Plot plot) {
Args.nullNotPermitted(plot, "plot");
if (plot.getDrawingSupplier() != null) {
plot.setDrawingSupplier(getDrawingSupplier());
}
if (plot.getBackgroundPaint() != null) {
plot.setBackgroundPaint(this.plotBackgroundPaint);
}
plot.setOutlinePaint(this.plotOutlinePaint);
// now handle specific plot types (and yes, I know this is some
// really ugly code that has to be manually updated any time a new
// plot type is added - I should have written something much cooler,
// but I didn't and neither did anyone else).
if (plot instanceof PiePlot) {
applyToPiePlot((PiePlot) plot);
}
else if (plot instanceof MultiplePiePlot) {
applyToMultiplePiePlot((MultiplePiePlot) plot);
}
else if (plot instanceof CategoryPlot) {
applyToCategoryPlot((CategoryPlot) plot);
}
else if (plot instanceof XYPlot) {
applyToXYPlot((XYPlot) plot);
}
else if (plot instanceof FastScatterPlot) {
applyToFastScatterPlot((FastScatterPlot) plot);
}
else if (plot instanceof MeterPlot) {
applyToMeterPlot((MeterPlot) plot);
}
else if (plot instanceof ThermometerPlot) {
applyToThermometerPlot((ThermometerPlot) plot);
}
else if (plot instanceof SpiderWebPlot) {
applyToSpiderWebPlot((SpiderWebPlot) plot);
}
else if (plot instanceof PolarPlot) {
applyToPolarPlot((PolarPlot) plot);
}
}