⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 categorylabelpositions.java

📁 这是一个segy数据显示程序
💻 JAVA
📖 第 1 页 / 共 2 页
字号:
/* =========================================================== * JFreeChart : a free chart library for the Java(tm) platform * =========================================================== * * (C) Copyright 2000-2004, by Object Refinery Limited and Contributors. * * Project Info:  http://www.jfree.org/jfreechart/index.html * * This library is free software; you can redistribute it and/or modify it under the terms * of the GNU Lesser General Public License as published by the Free Software Foundation; * either version 2.1 of the License, or (at your option) any later version. * * This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; * without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. * See the GNU Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public License along with this * library; if not, write to the Free Software Foundation, Inc., 59 Temple Place, Suite 330, * Boston, MA 02111-1307, USA. * * [Java is a trademark or registered trademark of Sun Microsystems, Inc.  * in the United States and other countries.] * * --------------------------- * CategoryLabelPositions.java * --------------------------- * (C) Copyright 2004, by Object Refinery Limited and Contributors. * * Original Author:  David Gilbert (for Object Refinery Limited); * Contributor(s):   -; * * $Id: CategoryLabelPositions.java,v 1.5 2004/03/23 15:53:26 mungady Exp $ * * Changes * ------- * 06-Jan-2004 : Version 1 (DG); * 17-Feb-2004 : Added equals() method (DG); * */package org.jfree.chart.axis;import java.io.Serializable;import org.jfree.text.TextBlockAnchor;import org.jfree.ui.RectangleAnchor;import org.jfree.ui.RectangleEdge;import org.jfree.ui.TextAnchor;/** * Records the label positions for a category axis.  Instances of this class are immutable. */public class CategoryLabelPositions implements Serializable {    /** STANDARD category label positions. */    public static final CategoryLabelPositions STANDARD = new CategoryLabelPositions(        new CategoryLabelPosition(            RectangleAnchor.BOTTOM, TextBlockAnchor.BOTTOM_CENTER        ), // TOP        new CategoryLabelPosition(            RectangleAnchor.TOP, TextBlockAnchor.TOP_CENTER        ), // BOTTOM        new CategoryLabelPosition(            RectangleAnchor.RIGHT, TextBlockAnchor.CENTER_RIGHT, CategoryLabelWidthType.RANGE, 0.30f        ), // LEFT        new CategoryLabelPosition(            RectangleAnchor.LEFT, TextBlockAnchor.CENTER_LEFT, CategoryLabelWidthType.RANGE, 0.30f        ) // RIGHT    );        /** UP_90 category label positions. */    public static final CategoryLabelPositions UP_90 = new CategoryLabelPositions(        new CategoryLabelPosition(            RectangleAnchor.BOTTOM, TextBlockAnchor.CENTER_LEFT,             TextAnchor.CENTER_LEFT, -Math.PI / 2.0,            CategoryLabelWidthType.RANGE, 1.0f        ), // TOP        new CategoryLabelPosition(            RectangleAnchor.TOP, TextBlockAnchor.CENTER_RIGHT,             TextAnchor.CENTER_RIGHT, -Math.PI / 2.0,            CategoryLabelWidthType.RANGE, 1.0f        ), // BOTTOM        new CategoryLabelPosition(            RectangleAnchor.RIGHT, TextBlockAnchor.BOTTOM_CENTER,             TextAnchor.BOTTOM_CENTER, -Math.PI / 2.0,            CategoryLabelWidthType.CATEGORY, 0.9f        ), // LEFT        new CategoryLabelPosition(            RectangleAnchor.LEFT, TextBlockAnchor.TOP_CENTER,             TextAnchor.TOP_CENTER, -Math.PI / 2.0,            CategoryLabelWidthType.CATEGORY, 0.90f        ) // RIGHT    );        /** DOWN_90 category label positions. */    public static final CategoryLabelPositions DOWN_90 = new CategoryLabelPositions(        new CategoryLabelPosition(            RectangleAnchor.BOTTOM, TextBlockAnchor.CENTER_RIGHT,             TextAnchor.CENTER_RIGHT, Math.PI / 2.0,            CategoryLabelWidthType.RANGE, 0.30f        ), // TOP        new CategoryLabelPosition(            RectangleAnchor.TOP, TextBlockAnchor.CENTER_LEFT,             TextAnchor.CENTER_LEFT, Math.PI / 2.0,            CategoryLabelWidthType.RANGE, 0.30f        ), // BOTTOM        new CategoryLabelPosition(            RectangleAnchor.RIGHT, TextBlockAnchor.TOP_CENTER,             TextAnchor.TOP_CENTER, Math.PI / 2.0,            CategoryLabelWidthType.CATEGORY, 0.90f        ), // LEFT        new CategoryLabelPosition(            RectangleAnchor.LEFT, TextBlockAnchor.BOTTOM_CENTER,             TextAnchor.BOTTOM_CENTER, Math.PI / 2.0,            CategoryLabelWidthType.CATEGORY, 0.90f        ) // RIGHT    );        /** UP_45 category label positions. */    public static final CategoryLabelPositions UP_45         = createUpRotationLabelPositions(Math.PI / 4.0);        /** DOWN_45 category label positions. */    public static final CategoryLabelPositions DOWN_45         = createDownRotationLabelPositions(Math.PI / 4.0);        /**     * Creates a new instance where the category labels angled upwards by the specified amount.     *      * @param angle  the rotation angle (should be < Math.PI / 2.0).     *      * @return A category label position specification.     */    public static CategoryLabelPositions createUpRotationLabelPositions(double angle) {        return new CategoryLabelPositions(            new CategoryLabelPosition(                RectangleAnchor.BOTTOM, TextBlockAnchor.BOTTOM_LEFT,                 TextAnchor.BOTTOM_LEFT, -angle,                CategoryLabelWidthType.RANGE, 0.50f            ), // TOP            new CategoryLabelPosition(                RectangleAnchor.TOP, TextBlockAnchor.TOP_RIGHT,                 TextAnchor.TOP_RIGHT, -angle,                CategoryLabelWidthType.RANGE, 0.50f            ), // BOTTOM            new CategoryLabelPosition(                RectangleAnchor.RIGHT, TextBlockAnchor.BOTTOM_RIGHT,                 TextAnchor.BOTTOM_RIGHT, -angle,                CategoryLabelWidthType.RANGE, 0.50f            ), // LEFT            new CategoryLabelPosition(                RectangleAnchor.LEFT, TextBlockAnchor.TOP_LEFT,                 TextAnchor.TOP_LEFT, -angle,                CategoryLabelWidthType.RANGE, 0.50f            ) // RIGHT        );    }        /**     * Creates a new instance where the category labels angled downwards by the specified amount.     *      * @param angle  the rotation angle (should be < Math.PI / 2.0).     *      * @return A category label position specification.     */    public static CategoryLabelPositions createDownRotationLabelPositions(double angle) {        return new CategoryLabelPositions(            new CategoryLabelPosition(                RectangleAnchor.BOTTOM, TextBlockAnchor.BOTTOM_RIGHT,                 TextAnchor.BOTTOM_RIGHT, angle,                CategoryLabelWidthType.RANGE, 0.50f            ), // TOP            new CategoryLabelPosition(                RectangleAnchor.TOP, TextBlockAnchor.TOP_LEFT,                 TextAnchor.TOP_LEFT, angle,                CategoryLabelWidthType.RANGE, 0.50f            ), // BOTTOM            new CategoryLabelPosition(                RectangleAnchor.RIGHT, TextBlockAnchor.TOP_RIGHT,                 TextAnchor.TOP_RIGHT, angle,                CategoryLabelWidthType.RANGE, 0.50f            ), // LEFT            new CategoryLabelPosition(                RectangleAnchor.LEFT, TextBlockAnchor.BOTTOM_LEFT,                 TextAnchor.BOTTOM_LEFT, angle,                CategoryLabelWidthType.RANGE, 0.50f            ) // RIGHT        );    }        /** The label positioning details used when an axis is at the top of a chart. */    private CategoryLabelPosition positionForAxisAtTop;        /** The label positioning details used when an axis is at the bottom of a chart. */    private CategoryLabelPosition positionForAxisAtBottom;        /** The label positioning details used when an axis is at the left of a chart. */    private CategoryLabelPosition positionForAxisAtLeft;        /** The label positioning details used when an axis is at the right of a chart. */    private CategoryLabelPosition positionForAxisAtRight;     /**

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -