當前位置: 首頁>>代碼示例>>Java>>正文


Java ValueMarker.setLabelFont方法代碼示例

本文整理匯總了Java中org.jfree.chart.plot.ValueMarker.setLabelFont方法的典型用法代碼示例。如果您正苦於以下問題:Java ValueMarker.setLabelFont方法的具體用法?Java ValueMarker.setLabelFont怎麽用?Java ValueMarker.setLabelFont使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在org.jfree.chart.plot.ValueMarker的用法示例。


在下文中一共展示了ValueMarker.setLabelFont方法的6個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Java代碼示例。

示例1: testGetSetLabelFont

import org.jfree.chart.plot.ValueMarker; //導入方法依賴的package包/類
/**
 * Some checks for the getLabelFont() and setLabelFont() methods.
 */
public void testGetSetLabelFont() {
    // we use ValueMarker for the tests, because we need a concrete 
    // subclass...
    ValueMarker m = new ValueMarker(1.1);
    m.addChangeListener(this);
    this.lastEvent = null;
    assertEquals(new Font("SansSerif", Font.PLAIN, 9), m.getLabelFont());
    m.setLabelFont(new Font("SansSerif", Font.BOLD, 10));
    assertEquals(new Font("SansSerif", Font.BOLD, 10), m.getLabelFont());
    assertEquals(m, this.lastEvent.getMarker());
    
    // check null argument...
    try {
        m.setLabelFont(null);
        fail("Expected an IllegalArgumentException for null.");
    }
    catch (IllegalArgumentException e) {
        assertTrue(true);
    }
}
 
開發者ID:parabuild-ci,項目名稱:parabuild-ci,代碼行數:24,代碼來源:MarkerTests.java

示例2: testGetSetLabelFont

import org.jfree.chart.plot.ValueMarker; //導入方法依賴的package包/類
/**
 * Some checks for the getLabelFont() and setLabelFont() methods.
 */
public void testGetSetLabelFont() {
    // we use ValueMarker for the tests, because we need a concrete
    // subclass...
    ValueMarker m = new ValueMarker(1.1);
    m.addChangeListener(this);
    this.lastEvent = null;
    assertEquals(new Font("Tahoma", Font.PLAIN, 9), m.getLabelFont());
    m.setLabelFont(new Font("SansSerif", Font.BOLD, 10));
    assertEquals(new Font("SansSerif", Font.BOLD, 10), m.getLabelFont());
    assertEquals(m, this.lastEvent.getMarker());

    // check null argument...
    try {
        m.setLabelFont(null);
        fail("Expected an IllegalArgumentException for null.");
    }
    catch (IllegalArgumentException e) {
        assertTrue(true);
    }
}
 
開發者ID:SpoonLabs,項目名稱:astor,代碼行數:24,代碼來源:MarkerTests.java

示例3: getAverageMarker

import org.jfree.chart.plot.ValueMarker; //導入方法依賴的package包/類
public static Marker getAverageMarker(double paramDouble) {
	ValueMarker localValueMarker = new ValueMarker(paramDouble, Color.red, new BasicStroke(0.3F));
	localValueMarker.setLabel(I18N.getMsg("msg.common.average"));
	localValueMarker.setLabelFont(new Font("SansSerif", 2, 11));
	localValueMarker.setLabelAnchor(RectangleAnchor.TOP_RIGHT);
	localValueMarker.setLabelTextAnchor(TextAnchor.BOTTOM_RIGHT);
	return localValueMarker;
}
 
開發者ID:markkohdev,項目名稱:oStorybook,代碼行數:9,代碼來源:ChartUtil.java

示例4: getDateMarker

import org.jfree.chart.plot.ValueMarker; //導入方法依賴的package包/類
public static Marker getDateMarker(Date paramDate, String paramString, boolean paramBoolean) {
	double d = paramDate.getTime();
	ValueMarker localValueMarker = new ValueMarker(d, Color.red, new BasicStroke(0.3F));
	localValueMarker.setLabel(paramString);
	localValueMarker.setLabelFont(new Font("SansSerif", 2, 11));
	localValueMarker.setLabelAnchor(RectangleAnchor.BOTTOM);
	if (paramBoolean) {
		localValueMarker.setLabelTextAnchor(TextAnchor.BOTTOM_RIGHT);
	} else {
		localValueMarker.setLabelTextAnchor(TextAnchor.BOTTOM_LEFT);
	}
	return localValueMarker;
}
 
開發者ID:markkohdev,項目名稱:oStorybook,代碼行數:14,代碼來源:ChartUtil.java

示例5: addDomainMarker

import org.jfree.chart.plot.ValueMarker; //導入方法依賴的package包/類
public void addDomainMarker(XYPlot plot, cfCHARTDOMAINMARKERData dmData) throws cfmRunTimeException {
	double dbl;
	try {
		dbl = Double.parseDouble(dmData.getValue());
	} catch (NumberFormatException nfe) {
		throw newRunTimeException("the CFCHARTDOMAINMARKER value attribute must be numeric for scale charts");
	}
	ValueMarker domainMarker = new ValueMarker(dbl);
	boolean drawAsLine = true; // XY charts currently only support drawing
															// domain markers as lines
	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);
}
 
開發者ID:OpenBD,項目名稱:openbd-core,代碼行數:67,代碼來源:cfCHART.java

示例6: formatMarker

import org.jfree.chart.plot.ValueMarker; //導入方法依賴的package包/類
private void formatMarker(ValueMarker marker) {
    marker.setStroke(Styles.ANNOTATION_STROKE);
    marker.setPaint(Styles.ANNOTATION_COLOR);
    marker.setLabelFont(Styles.ANNOTATION_FONT);
    marker.setLabelPaint(Styles.ANNOTATION_COLOR);
}
 
開發者ID:nmonvisualizer,項目名稱:nmonvisualizer,代碼行數:7,代碼來源:LineChartAnnotationDialog.java


注:本文中的org.jfree.chart.plot.ValueMarker.setLabelFont方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。