本文整理汇总了Java中org.jfree.chart.title.PaintScaleLegend.setAxisLocation方法的典型用法代码示例。如果您正苦于以下问题:Java PaintScaleLegend.setAxisLocation方法的具体用法?Java PaintScaleLegend.setAxisLocation怎么用?Java PaintScaleLegend.setAxisLocation使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类org.jfree.chart.title.PaintScaleLegend
的用法示例。
在下文中一共展示了PaintScaleLegend.setAxisLocation方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: testEquals
import org.jfree.chart.title.PaintScaleLegend; //导入方法依赖的package包/类
/**
* Test that the equals() method distinguishes all fields.
*/
public void testEquals() {
// default instances
PaintScaleLegend l1 = new PaintScaleLegend(new GrayPaintScale(),
new NumberAxis("X"));
PaintScaleLegend l2 = new PaintScaleLegend(new GrayPaintScale(),
new NumberAxis("X"));
assertTrue(l1.equals(l2));
assertTrue(l2.equals(l1));
// paintScale
l1.setScale(new LookupPaintScale());
assertFalse(l1.equals(l2));
l2.setScale(new LookupPaintScale());
assertTrue(l1.equals(l2));
// axis
l1.setAxis(new NumberAxis("Axis 2"));
assertFalse(l1.equals(l2));
l2.setAxis(new NumberAxis("Axis 2"));
assertTrue(l1.equals(l2));
// axisLocation
l1.setAxisLocation(AxisLocation.BOTTOM_OR_RIGHT);
assertFalse(l1.equals(l2));
l2.setAxisLocation(AxisLocation.BOTTOM_OR_RIGHT);
assertTrue(l1.equals(l2));
// axisOffset
l1.setAxisOffset(99.0);
assertFalse(l1.equals(l2));
l2.setAxisOffset(99.0);
assertTrue(l1.equals(l2));
// stripWidth
l1.setStripWidth(99.0);
assertFalse(l1.equals(l2));
l2.setStripWidth(99.0);
assertTrue(l1.equals(l2));
// stripOutlineVisible
l1.setStripOutlineVisible(!l1.isStripOutlineVisible());
assertFalse(l1.equals(l2));
l2.setStripOutlineVisible(l1.isStripOutlineVisible());
assertTrue(l1.equals(l2));
// stripOutlinePaint
l1.setStripOutlinePaint(new GradientPaint(1.0f, 2.0f, Color.red,
3.0f, 4.0f, Color.blue));
assertFalse(l1.equals(l2));
l2.setStripOutlinePaint(new GradientPaint(1.0f, 2.0f, Color.red,
3.0f, 4.0f, Color.blue));
assertTrue(l1.equals(l2));
// stripOutlineStroke
l1.setStripOutlineStroke(new BasicStroke(1.1f));
assertFalse(l1.equals(l2));
l2.setStripOutlineStroke(new BasicStroke(1.1f));
assertTrue(l1.equals(l2));
// backgroundPaint
l1.setBackgroundPaint(new GradientPaint(1.0f, 2.0f, Color.red,
3.0f, 4.0f, Color.blue));
assertFalse(l1.equals(l2));
l2.setBackgroundPaint(new GradientPaint(1.0f, 2.0f, Color.red,
3.0f, 4.0f, Color.blue));
assertTrue(l1.equals(l2));
}
示例2: resetRenderer
import org.jfree.chart.title.PaintScaleLegend; //导入方法依赖的package包/类
protected void resetRenderer(final IScope scope, final String serieid) {
final XYBlockRenderer newr = (XYBlockRenderer) this.getOrCreateRenderer(scope, serieid);
// newr.setSeriesStroke(0, new BasicStroke(0));
final ChartDataSeries myserie = this.getChartdataset().getDataSeries(scope, serieid);
if (myserie.getMycolor() != null) {
newr.setSeriesPaint(0, myserie.getMycolor());
}
if (myserie.getSValues(scope).size() > 0) {
final double maxval = Collections.max(myserie.getSValues(scope));
final double minval = Collections.min(myserie.getSValues(scope));
Color cdeb = new Color(0, 0, 0, 0);
if (myserie.getMyMincolor() != null)
cdeb = myserie.getMyMincolor();
Color cend = new Color(0.9f, 0.9f, 0.9f, 1.0f);
if (myserie.getMycolor() != null)
cend = myserie.getMycolor();
LookupPaintScale paintscale = createLUT(100, (float) minval, (float) maxval, cdeb, cend);
if (myserie.getMyMedcolor() != null)
paintscale = createLUT(100, (float) minval, (float) maxval, cdeb, myserie.getMyMedcolor(), cend);
newr.setPaintScale(paintscale);
final NumberAxis scaleAxis = new NumberAxis(myserie.getName());
scaleAxis.setAxisLinePaint(this.axesColor);
scaleAxis.setTickMarkPaint(this.axesColor);
scaleAxis.setTickLabelFont(this.getTickFont());
scaleAxis.setRange(minval, maxval);
scaleAxis.setAxisLinePaint(axesColor);
scaleAxis.setLabelFont(getLabelFont());
if (textColor != null) {
scaleAxis.setLabelPaint(textColor);
scaleAxis.setTickLabelPaint(textColor);
}
if (!this.getXTickValueVisible(scope))
{
scaleAxis.setTickMarksVisible(false);
scaleAxis.setTickLabelsVisible(false);
}
final PaintScaleLegend legend = new PaintScaleLegend(paintscale, scaleAxis);
legend.setAxisLocation(AxisLocation.BOTTOM_OR_LEFT);
legend.setAxisOffset(5.0);
// legend.setMargin(new RectangleInsets(5, 5, 5, 5));
// legend.setFrame(new BlockBorder(Color.red));
// legend.setPadding(new RectangleInsets(10, 10, 10, 10));
// legend.setStripWidth(10);
legend.setPosition(RectangleEdge.RIGHT);
legend.setBackgroundPaint(this.backgroundColor);
// ArrayList<PaintScaleLegend> caxe=new
// ArrayList<PaintScaleLegend>();
// caxe.add(legend);
// chart.setSubtitles(caxe);
if (!this.series_label_position.equals("none"))
chart.addSubtitle(legend);
}
}
示例3: testEquals
import org.jfree.chart.title.PaintScaleLegend; //导入方法依赖的package包/类
/**
* Test that the equals() method distinguishes all fields.
*/
public void testEquals() {
// default instances
PaintScaleLegend l1 = new PaintScaleLegend(new GrayPaintScale(),
new NumberAxis("X"));
PaintScaleLegend l2 = new PaintScaleLegend(new GrayPaintScale(),
new NumberAxis("X"));
assertTrue(l1.equals(l2));
assertTrue(l2.equals(l1));
// paintScale
l1.setScale(new LookupPaintScale());
assertFalse(l1.equals(l2));
l2.setScale(new LookupPaintScale());
assertTrue(l1.equals(l2));
// axis
l1.setAxis(new NumberAxis("Axis 2"));
assertFalse(l1.equals(l2));
l2.setAxis(new NumberAxis("Axis 2"));
assertTrue(l1.equals(l2));
// axisLocation
l1.setAxisLocation(AxisLocation.BOTTOM_OR_RIGHT);
assertFalse(l1.equals(l2));
l2.setAxisLocation(AxisLocation.BOTTOM_OR_RIGHT);
assertTrue(l1.equals(l2));
// axisOffset
l1.setAxisOffset(99.0);
assertFalse(l1.equals(l2));
l2.setAxisOffset(99.0);
assertTrue(l1.equals(l2));
// stripWidth
l1.setStripWidth(99.0);
assertFalse(l1.equals(l2));
l2.setStripWidth(99.0);
assertTrue(l1.equals(l2));
// stripOutlineVisible
l1.setStripOutlineVisible(!l1.isStripOutlineVisible());
assertFalse(l1.equals(l2));
l2.setStripOutlineVisible(l1.isStripOutlineVisible());
assertTrue(l1.equals(l2));
// stripOutlinePaint
l1.setStripOutlinePaint(new GradientPaint(1.0f, 2.0f, Color.red,
3.0f, 4.0f, Color.blue));
assertFalse(l1.equals(l2));
l2.setStripOutlinePaint(new GradientPaint(1.0f, 2.0f, Color.red,
3.0f, 4.0f, Color.blue));
assertTrue(l1.equals(l2));
// stripOutlineStroke
l1.setStripOutlineStroke(new BasicStroke(1.1f));
assertFalse(l1.equals(l2));
l2.setStripOutlineStroke(new BasicStroke(1.1f));
assertTrue(l1.equals(l2));
// backgroundPaint
l1.setBackgroundPaint(new GradientPaint(1.0f, 2.0f, Color.red,
3.0f, 4.0f, Color.blue));
assertFalse(l1.equals(l2));
l2.setBackgroundPaint(new GradientPaint(1.0f, 2.0f, Color.red,
3.0f, 4.0f, Color.blue));
assertTrue(l1.equals(l2));
l1.setSubdivisionCount(99);
assertFalse(l1.equals(l2));
l2.setSubdivisionCount(99);
assertTrue(l1.equals(l2));
}