Example usage for org.jfree.chart.axis CategoryAxis3D setTickMarksVisible

List of usage examples for org.jfree.chart.axis CategoryAxis3D setTickMarksVisible

Introduction

In this page you can find the example usage for org.jfree.chart.axis CategoryAxis3D setTickMarksVisible.

Prototype

public void setTickMarksVisible(boolean flag) 

Source Link

Document

Sets the flag that indicates whether or not the tick marks are showing and sends an AxisChangeEvent to all registered listeners.

Usage

From source file:org.sonar.plugins.abacus.chart.BarChart3D.java

private void configureDomainAxis(CategoryPlot plot, Font font) {
    CategoryAxis3D categoryAxis = new CategoryAxis3D();
    categoryAxis.setTickMarksVisible(true);
    categoryAxis.setTickLabelFont(font);
    categoryAxis.setTickLabelPaint(OUTLINE_COLOR);
    plot.setDomainAxis(categoryAxis);/*from w  w  w  .  j  av a  2s .  c  om*/
    plot.setDomainGridlinesVisible(false);
}