【发布时间】:2022-07-20 22:33:09
【问题描述】:
【问题讨论】:
标签: jfreechart
【问题讨论】:
标签: jfreechart
你可以像这样使用setTickLabelPaint():
Axis domain = plot.getDomainAxis();
domain.setTickLabelPaint(Color.blue);
Axis range = plot.getRangeAxis();
range.setTickLabelPaint(Color.red);
【讨论】: