- 使用 Spring Initializr 创建 Spring Boot 应用程序
- 在Spring Boot中配置Cassandra
- 在 Spring Boot 上配置 Tomcat 连接池
- 将Camel消息路由到嵌入WildFly的Artemis上
本文整理了Java中org.jfree.chart.annotations.XYTextAnnotation.setFont()
方法的一些代码示例,展示了XYTextAnnotation.setFont()
的具体用法。这些代码示例主要来源于Github
/Stackoverflow
/Maven
等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。XYTextAnnotation.setFont()
方法的具体详情如下:
包路径:org.jfree.chart.annotations.XYTextAnnotation
类名称:XYTextAnnotation
方法名:setFont
[英]Sets the font for the annotation and sends an AnnotationChangeEvent to all registered listeners.
[中]设置批注的字体,并向所有注册的侦听器发送AnnotationChangeEvent。
代码示例来源:origin: org.codehaus.jtstand/jtstand-chart
/**
* Applies the settings of this theme to the specified annotation.
*
* @param annotation the annotation.
*/
protected void applyToXYAnnotation(XYAnnotation annotation) {
if (annotation == null) {
throw new IllegalArgumentException("Null 'annotation' argument.");
}
if (annotation instanceof XYTextAnnotation) {
XYTextAnnotation xyta = (XYTextAnnotation) annotation;
xyta.setFont(this.smallFont);
xyta.setPaint(this.itemLabelPaint);
}
}
代码示例来源:origin: jfree/jfreechart
/**
* Applies the settings of this theme to the specified annotation.
*
* @param annotation the annotation.
*/
protected void applyToXYAnnotation(XYAnnotation annotation) {
Args.nullNotPermitted(annotation, "annotation");
if (annotation instanceof XYTextAnnotation) {
XYTextAnnotation xyta = (XYTextAnnotation) annotation;
xyta.setFont(this.smallFont);
xyta.setPaint(this.itemLabelPaint);
}
}
代码示例来源:origin: GrammarViz2/grammarviz2_src
a.setOutlineVisible(true);
a.setFont(new java.awt.Font("SansSerif", java.awt.Font.BOLD, 14));
代码示例来源:origin: superad/pdf-kit
text1.setFont(FontUtil.getFont(Font.PLAIN, 18));
text1.setPaint(new Color(255,165,0));
XYTextAnnotation text2 = new XYTextAnnotation("待发展共识区", 10, 3);
text2.setFont(FontUtil.getFont(Font.PLAIN, 18));
text2.setPaint(new Color(253, 88, 72));
XYTextAnnotation text3 = new XYTextAnnotation("潜能区", 96, 3);
text3.setFont(FontUtil.getFont(Font.PLAIN, 18));
text3.setPaint(new Color(45, 139, 251));
XYTextAnnotation text4 = new XYTextAnnotation("优势共识区", 93, 98);
text4.setFont(FontUtil.getFont(Font.PLAIN, 18));
text4.setPaint(new Color(20, 149, 134));
代码示例来源:origin: matsim-org/matsim
annotation0.setFont(new Font("SansSerif", Font.BOLD, 11));
plot.addAnnotation(annotation0);
XYTextAnnotation annotation1=new XYTextAnnotation("count", maxCountValue, maxCountValue);
annotation1.setFont(new Font("SansSerif", Font.BOLD, 11));
plot.addAnnotation(annotation1);
XYTextAnnotation annotation2=new XYTextAnnotation("0.5 count",maxCountValue, 0.5*maxCountValue);
annotation2.setFont(new Font("SansSerif", Font.BOLD, 11));
plot.addAnnotation(annotation2);
代码示例来源:origin: matsim-org/matsim
annotation0.setFont(new Font("SansSerif", Font.BOLD, 11));
plot.addAnnotation(annotation0);
XYTextAnnotation annotation1=new XYTextAnnotation("count",13000.0, 10000.0);
annotation1.setFont(new Font("SansSerif", Font.BOLD, 11));
plot.addAnnotation(annotation1);
XYTextAnnotation annotation2=new XYTextAnnotation("0.5 count",11000.0, 3500.0);
annotation2.setFont(new Font("SansSerif", Font.BOLD, 11));
plot.addAnnotation(annotation2);
代码示例来源:origin: matsim-org/matsim
annotation0.setFont(new Font("SansSerif", Font.BOLD, 11));
plot.addAnnotation(annotation0);
XYTextAnnotation annotation1 = new XYTextAnnotation("count", 13000.0,
10000.0);
annotation1.setFont(new Font("SansSerif", Font.BOLD, 11));
plot.addAnnotation(annotation1);
XYTextAnnotation annotation2 = new XYTextAnnotation("0.5 count",
11000.0, 3500.0);
annotation2.setFont(new Font("SansSerif", Font.BOLD, 11));
plot.addAnnotation(annotation2);
代码示例来源:origin: org.zaproxy/zap
new XYTextAnnotation(plugin.getName(),
plugin.getTimeStarted().getTime(), center);
updateLabel.setFont(FontUtils.getFont("Sans Serif"));
updateLabel.setRotationAnchor(TextAnchor.BASELINE_CENTER);
代码示例来源:origin: GrammarViz2/grammarviz2_src
a.setOutlineVisible(true);
a.setFont(new java.awt.Font("SansSerif", java.awt.Font.BOLD, 14));
我正在制作一个程序,我需要在其中设置 FontMetrics 对象中的字体。我之前已经创建了 fontmetrics,但现在我不能再访问 Graphics 对象了。然而,我想更改 FontMetric
我正在尝试使用 setFont() 方法来设置应用程序范围内更改的字体。我尝试了以下方法: qApp->setFont(); 然而,setFont()不是qApp的一个方法。我不确定如何为整个应用程序
我正在尝试使用 setFont() 方法来设置应用程序范围内更改的字体。我尝试了以下方法: qApp->setFont(); 然而,setFont()不是qApp的一个方法。我不确定如何为整个应用程序
我有两个按钮来编辑文本中的字体。粗体按钮和斜体按钮,单独使用时效果很好,但组合在一起时效果不佳。如何让按钮协同工作? (粗体+斜体) final JToggleButton boldbuttonpag
为什么这样写时setFont不起作用?我想绘制消息(字体粗体,大小 20),并在其下方绘制一个带有蓝色小数字的乘法表。 //this is a separate class public class
我的问题更多的是好奇 我试图让我的应用程序在用户更改 iOS 字体大小时做出响应。 为此,我将以下观察者放入 viewWillAppear 函数中: [[NSNotificationCenter de
我收到一条警告说 setFont 已弃用? [button setFont:[UIFont boldSystemFontOfSize:13]]; 任何建议如何把它拿走请.. 最佳答案 由于 UIBut
我在使用 TCPDF 时遇到问题。我的自定义字体(和任何其他包含的字体)在使用 writeHTML 时不起作用。 $tcpdf = tcpdf_get_instance(); $fontname =
从 10.9 开始,NSButtonCell 的 setFont 方法似乎不再可用。 有没有任何方法(或类别)来(重新)实现它? 我不知道为什么苹果在按钮上强制采用自己的样式。 我花了 2 天的时间尝
我有一段非常简单的代码来为我的 wxFrame 设置三倍大的字体: MainWin::MainWin() : wxFrame(NULL, wxID_ANY,wxEmptyString,
我目前有一个设定大小的JTextArea,但是如果我更改该区域的字体,该区域的大小也会发生变化。 textArea = new JTextArea(20,40); textArea.s
我需要你的帮助来解决这个问题...... 我有一个 JFrame,它的某些组件具有 setFont(font) 函数。 setFont 函数导致 JFrame 加载太慢。有没有替代品。或者我应该在 j
请帮助我。我想更改 NSButton 文本的字体大小。 [myButon setFont:[[NSFont fontWithName:@"Arial" size:20]]]; 但是没有成功。 我还有一
但是,我很高兴能够在 iOS5 应用程序中使用外观代理来自定义系统范围内的 NavigationController UI 元素: 我的应用程序中有很多嵌套表格,我希望能够更改所有表格单元格的字体。它
在布局管理器中,当我使用 setPreferedSize 时,它增加了 JLabel 的大小,但在之后仅显示一个单词,例如 (JLabel = Name)使用setPreferedSize JLabe
我已经看到了一些与此相关的问题,但它们要么涉及重复创建Fonts,要么涉及paintComponent()。我的项目两者都没有。我创建了一个可运行的测试用例来显示延迟(随着后续在不同 JCompone
我有一个标准的 MFC SDI 应用程序。在“关于”对话框(使用 MFC 向导创建)中,我试图更改一些静态文本格式(标签)。这是我的代码: BOOL CAboutDlg::OnInitDialog()
我创建了 UILabel 类别,它会在字体属性更改时做额外的工作。 我选择了类别而不是分类,所以我不必更改所有 XIB 文件中所有标签的类别。我只是将这个类别声明添加到前缀标题中,类别在整个项目范围内
我在界面生成器中添加了按钮并引用了它们,然后我想更改它们的标题字体,但它确实有效。当我使用时: [_button setFont:[UIFont fontWithName:APP_FONT_FUTUR
我正在使用 Qt 框架构建一个支持多种语言的应用程序。默认字体从 StyleSheet 加载。 我覆盖了 paintEvent() 方法,并且 setFont() 方法适用于除 QLabel 和 QC
我是一名优秀的程序员,十分优秀!