我正在使用 jfreechart 绘制拨号图表,并且我想减小字体大小。
我怎样才能做到这一点?
我使用 jfreechart 为显示器生成表盘图像,上面有三种不同的字体。
不知道你在找哪一个,所以我会概述每一个。只需查看生成此代码的代码(它在 groovy 中),以下是每个代码的过程:
使用主类JFreeChart
的方法setTitle(java.awt.Font font)
方法。字体可以在构造函数中调整大小。
// Set the title font to bold SansSerif size 12.
JFreeChart chart = new JFreeChart(myplot);
chart.setTitle(
new org.jfree.chart.title.TextTitle("The title",
new java.awt.Font("SansSerif", java.awt.Font.BOLD, 12)
);
);
// Set the annotation font to bold Dialog size 8
DialTextAnnotation annotation = new DialTextAnnotation("My Annotation Text");
annotation.setFont(new java.awt.Font("Dialog", java.awt.Font.BOLD, 8));
// Add to the plot
myplot.addLayer(annotation);
// Create the dial scale
StandardDialScale scale = new StandardDialScale(.......
// Set the dial font to plain dialog size 14
scale.setTickLabelFont(new java.awt.Font("Dialog", java.awt.Font.PLAIN, 14));