jFreeChart中横坐标为CategryAxis类型,设置坐标间隔显示 思路: CategryAxis中并没有之间的方法可以使用。 思路转化:对不不想显示的坐标刻度标记(label)设置为白色,就是不可见了。 public void setDomainAxis(CategoryAxis domainAxis,String[] categories){ // 设置标签可见 domainAxis.setTickLabelsVisible(true);