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

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

Introduction

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

Prototype

public void setTickLabelPaint(Paint paint) 

Source Link

Document

Sets the paint used to draw tick labels (if they 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  ww .j a  va2  s.  c  om*/
    plot.setDomainGridlinesVisible(false);
}