本文整理汇总了Java中org.jfree.chart.plot.CategoryMarker.setDrawAsLine方法的典型用法代码示例。如果您正苦于以下问题:Java CategoryMarker.setDrawAsLine方法的具体用法?Java CategoryMarker.setDrawAsLine怎么用?Java CategoryMarker.setDrawAsLine使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类org.jfree.chart.plot.CategoryMarker
的用法示例。
在下文中一共展示了CategoryMarker.setDrawAsLine方法的4个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: setMarkers
import org.jfree.chart.plot.CategoryMarker; //导入方法依赖的package包/类
@SuppressWarnings("rawtypes")
private void setMarkers(final CategoryPlot plot, final Map params) {
final Marker[] domainMarkers = (Marker[]) params.get("domainMarkers");
// this method may be extended for range markers in future.
if (domainMarkers != null && domainMarkers.length > 0) {
for (final Marker marker : domainMarkers) {
final CategoryMarker cmarker = (CategoryMarker) marker;
cmarker.setDrawAsLine(true);
if (cmarker.getLabel() != null) {
cmarker.setLabelAnchor(RectangleAnchor.TOP_LEFT);
cmarker.setLabelTextAnchor(TextAnchor.TOP_RIGHT);
}
plot.addDomainMarker(cmarker);
}
}
}
示例2: testGetSetDrawAsLine
import org.jfree.chart.plot.CategoryMarker; //导入方法依赖的package包/类
/**
* Some checks for the getDrawAsLine() and setDrawAsLine() methods.
*/
public void testGetSetDrawAsLine() {
CategoryMarker m = new CategoryMarker("X");
m.addChangeListener(this);
this.lastEvent = null;
assertEquals(false, m.getDrawAsLine());
m.setDrawAsLine(true);
assertEquals(true, m.getDrawAsLine());
assertEquals(m, this.lastEvent.getMarker());
}
示例3: createMarker
import org.jfree.chart.plot.CategoryMarker; //导入方法依赖的package包/类
protected CategoryMarker createMarker(JRChart jrc)
{
Comparable<?> value = getProperty(PROPERTY_CATEGORY);
if (value == null)
{
return null;
}
CategoryMarker marker = new CategoryMarker(value);
configureMarker(marker);
configureStroke(marker);
Boolean drawAsLine = getBooleanProperty(PROPERTY_DRAW_AS_LINE);
if (drawAsLine != null) {
marker.setDrawAsLine(drawAsLine);
}
//Setup the font
Font font = marker.getLabelFont();
String fontName = getProperty(PROPERTY_FONT_NAME);
if (fontName == null) {
fontName = font.getName();
}
Float fontSize = getFloatProperty(PROPERTY_FONT_SIZE);
if (fontSize == null) {
fontSize = Float.valueOf(font.getSize());
}
int fontStyle = Font.PLAIN;
Boolean isBold = getBooleanProperty(PROPERTY_FONT_BOLD);
if (isBold != null) {
fontStyle = fontStyle | Font.BOLD;
}
Boolean isItalic = getBooleanProperty(PROPERTY_FONT_ITALIC);
if (isItalic != null) {
fontStyle = fontStyle | Font.ITALIC;
}
marker.setLabelFont(
FontUtil.getInstance(filler.getJasperReportsContext()).getAwtFontFromBundles(
fontName,
fontStyle,
fontSize,
filler.getFillContext().getMasterLocale(),
true
)
);
return marker;
}
示例4: addDomainMarker
import org.jfree.chart.plot.CategoryMarker; //导入方法依赖的package包/类
public void addDomainMarker(CategoryPlot plot, cfCHARTDOMAINMARKERData dmData) throws cfmRunTimeException {
CategoryMarker domainMarker = new CategoryMarker(dmData.getValue());
boolean drawAsLine = false;
if (dmData.getShape().equals("line"))
drawAsLine = true;
domainMarker.setDrawAsLine(drawAsLine);
domainMarker.setPaint(convertStringToColor(dmData.getColor()));
if (dmData.getLabel() != null) {
domainMarker.setLabel(dmData.getLabel());
domainMarker.setLabelPaint(convertStringToColor(dmData.getLabelColor()));
String labelPos = dmData.getLabelPosition();
if (labelPos.equals("top_left")) {
domainMarker.setLabelAnchor(RectangleAnchor.TOP_LEFT);
if (drawAsLine)
domainMarker.setLabelTextAnchor(TextAnchor.TOP_RIGHT);
else
domainMarker.setLabelTextAnchor(TextAnchor.TOP_LEFT);
} else if (labelPos.equals("top")) {
domainMarker.setLabelAnchor(RectangleAnchor.TOP);
domainMarker.setLabelTextAnchor(TextAnchor.TOP_CENTER);
} else if (labelPos.equals("top_right")) {
domainMarker.setLabelAnchor(RectangleAnchor.TOP_RIGHT);
if (drawAsLine)
domainMarker.setLabelTextAnchor(TextAnchor.TOP_LEFT);
else
domainMarker.setLabelTextAnchor(TextAnchor.TOP_RIGHT);
} else if (labelPos.equals("left")) {
domainMarker.setLabelAnchor(RectangleAnchor.LEFT);
if (drawAsLine)
domainMarker.setLabelTextAnchor(TextAnchor.CENTER_RIGHT);
else
domainMarker.setLabelTextAnchor(TextAnchor.CENTER_LEFT);
} else if (labelPos.equals("center")) {
domainMarker.setLabelAnchor(RectangleAnchor.CENTER);
domainMarker.setLabelTextAnchor(TextAnchor.CENTER);
} else if (labelPos.equals("right")) {
domainMarker.setLabelAnchor(RectangleAnchor.RIGHT);
if (drawAsLine)
domainMarker.setLabelTextAnchor(TextAnchor.CENTER_LEFT);
else
domainMarker.setLabelTextAnchor(TextAnchor.CENTER_RIGHT);
} else if (labelPos.equals("bottom_left")) {
domainMarker.setLabelAnchor(RectangleAnchor.BOTTOM_LEFT);
if (drawAsLine)
domainMarker.setLabelTextAnchor(TextAnchor.BOTTOM_RIGHT);
else
domainMarker.setLabelTextAnchor(TextAnchor.BOTTOM_LEFT);
} else if (labelPos.equals("bottom")) {
domainMarker.setLabelAnchor(RectangleAnchor.BOTTOM);
domainMarker.setLabelTextAnchor(TextAnchor.BOTTOM_CENTER);
} else if (labelPos.equals("bottom_right")) {
domainMarker.setLabelAnchor(RectangleAnchor.BOTTOM_RIGHT);
if (drawAsLine)
domainMarker.setLabelTextAnchor(TextAnchor.BOTTOM_LEFT);
else
domainMarker.setLabelTextAnchor(TextAnchor.BOTTOM_RIGHT);
}
domainMarker.setLabelOffsetType(LengthAdjustmentType.NO_CHANGE);
domainMarker.setLabelFont(getFont(dmData.getFont(), dmData.getFontBold(), dmData.getFontItalic(), dmData.getFontSize()));
}
plot.addDomainMarker(domainMarker, Layer.BACKGROUND);
}