Example usage for org.jfree.chart.axis CategoryAxis subclass-usage

List of usage examples for org.jfree.chart.axis CategoryAxis subclass-usage

Introduction

In this page you can find the example usage for org.jfree.chart.axis CategoryAxis subclass-usage.

Usage

From source file dk.sdu.mmmi.featureous.views.codecharacterization.SparselyLabeledCategoryAxis.java

/**
* A category axis that only writes the tick labels on a few of the ticks.
*/
public class SparselyLabeledCategoryAxis extends CategoryAxis {

    /**

From source file org.openfaces.component.chart.impl.helpers.CategoryAxisAdapter.java

/**
 * @author Ekaterina Shliakhovetskaya
 */
public class CategoryAxisAdapter extends CategoryAxis {

    public CategoryAxisAdapter(String label, boolean visible, ChartCategoryAxis chartCategoryAxis,

From source file org.pentaho.plugin.jfreereport.reportcharts.backport.FormattedCategoryAxis.java

public class FormattedCategoryAxis extends CategoryAxis {
    private FastMessageFormat format;

    public FormattedCategoryAxis(final String label, final String formatString, final Locale locale) {
        super(label);
        format = new FastMessageFormat(formatString, locale);

From source file com.bdaum.zoom.report.internal.jfree.custom.SparseCategoryAxis.java

public class SparseCategoryAxis extends CategoryAxis {

    private static final long serialVersionUID = -9084199063790125884L;
    private int nth;

    /**

From source file com.newatlanta.bluedragon.CategoryAxis.java

/**
 * An axis that displays categories.
 */
public class CategoryAxis extends org.jfree.chart.axis.CategoryAxis implements Cloneable, Serializable {

    /** For serialization. */

From source file org.fhaes.fhrecorder.util.NumericCategoryAxis.java

/**
 * NumericCategoryAxis Class. This is a "Kludge class" to override a CatagoryAxis labels.
 * 
 * We are using categories for numeric data. Unfortunately the labels on a standard CategoryAxis are all painted and so we end up with
 * collisions when zoomed out. This class allows us to specify a period between categories which aren't painted using the
 * setLabelEveryXCategories() method. This class is only useful if the categories can be cast to Integers.

From source file hudson.util.NoOverlapCategoryAxis.java

/**
 * This class implements X-axis label skipping algorithm to
 * avoid drawing overlapping labels.
 * 
 * @author Kohsuke Kawaguchi
 */

From source file edu.jhuapl.graphs.jfreechart.utils.SparselyLabeledCategoryAxis.java

public class SparselyLabeledCategoryAxis extends CategoryAxis {

    private static final long serialVersionUID = -2491781030111769632L;

    // number of ticks to label
    private final int maxLabeledTicks;

From source file org.jfree.eastwood.GCategoryAxis.java

/**
 * A category axis with custom labelling.
 */
class GCategoryAxis extends CategoryAxis implements GLabelledAxis {

    /** Category labels. */

From source file org.cyberoam.iview.charts.CustomDomainAxis.java

class CustomDomainAxis extends CategoryAxis {
    public static int colCount = 1;
    public static int counter = 0;

    protected TextBlock createLabel(Comparable category, float width, RectangleEdge edge, Graphics2D g2) {
        CustomDomainAxis.counter++;