Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
jfreechartでx軸とy軸の値を太字にするにはどうすればよいですか?
それらの1つを試しましたか:
yourAxis.setTickLabelFont(new Font("Arial", Font.BOLD, 10)); //to define a specific font
また
Font bold = yourAxis.getTickLabelFont().deriveFont(Font.BOLD); yourAxis.setTickLabelFont(bold); //to use the existing font, but bold