如何更改 JFreeChart 上的轴值字体

发布于 2024-12-02 15:49:47 字数 98 浏览 2 评论 0原文

正如标题所述,如果我有一个 JFreeChart (或想要创建一个),如何指定用于轴上的值的字体?不是轴标签,而是实际值。具体来说,我只是想让字体更大一点。

Just as the title says, if I have a JFreeChart (or want to create one) how do I specify the font that is used for the values on the axis? Not the axis label, but the actual values. Specifically I just want to make the font a little bigger.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

白衬杉格子梦 2024-12-09 15:49:47

对于 Range Axis

 CategoryPlot p = chart.getCategoryPlot(); 
 ValueAxis axis = p.getRangeAxis();

对于 Domian Axis

 CategoryPlot p = chart.getCategoryPlot(); 
 CategoryAxis axis = p.getDomainAxis();

然后设置字体,例如

Font font = new Font("Dialog", Font.PLAIN, 30);
axis.setTickLabelFont(font)

For Range Axis

 CategoryPlot p = chart.getCategoryPlot(); 
 ValueAxis axis = p.getRangeAxis();

For Domian Axis

 CategoryPlot p = chart.getCategoryPlot(); 
 CategoryAxis axis = p.getDomainAxis();

then set the font like

Font font = new Font("Dialog", Font.PLAIN, 30);
axis.setTickLabelFont(font)
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文