Back to project page Android-Charts.
The source code is released under:
Apache License??Version 2.0, January 2004??http://www.apache.org/licenses/ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION 1. Definitions. "License" shall mean the terms and condi...
If you think the Android project Android-Charts listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
/* * Quadrant.java//from w ww .j a va2 s. c om * Android-Charts * * Created by limc on 2014. * * Copyright 2011 limc.cn All rights reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package cn.limc.androidcharts.common; import cn.limc.androidcharts.view.GridChart; /** * <p>en</p> * <p>jp</p> * <p>cn</p> * * @author limc * @version v1.0 2014/06/24 17:29:01 * */ public abstract class Quadrant implements IQuadrant{ protected GridChart inChart; public Quadrant(GridChart inChart) { this.inChart = inChart; } /** * <p> * Margin of the axis to the top border * </p> * <p> * ????????????? * </p> * <p> * ?????? * </p> */ protected float paddingTop = DEFAULT_PADDING_TOP; /** * <p> * Margin of the axis to the right border * </p> * <p> * ??????????????? * </p> * <p> * ???????? * </p> */ protected float paddingLeft = DEFAULT_PADDING_LEFT; protected float paddingBottom = DEFAULT_PADDING_BOTTOM; /** * <p> * Margin of the axis to the right border * </p> * <p> * ??????????????? * </p> * <p> * ???????? * </p> */ protected float paddingRight = DEFAULT_PADDING_RIGHT; /** * @return the paddingTop */ public float getPaddingTop() { return paddingTop; } /** * @param paddingTop * the paddingTop to set */ public void setPaddingTop(float quadrantPaddingTop) { this.paddingTop = quadrantPaddingTop; } /** * @return the paddingLeft */ public float getPaddingLeft() { return paddingLeft; } /** * @param paddingLeft * the paddingLeft to set */ public void setPaddingLeft(float quadrantPaddingLeft) { this.paddingLeft = quadrantPaddingLeft; } /** * @return the paddingBottom */ public float getPaddingBottom() { return paddingBottom; } /** * @param paddingBottom * the paddingBottom to set */ public void setPaddingBottom(float quadrantPaddingBottom) { this.paddingBottom = quadrantPaddingBottom; } /** * @return the paddingRight */ public float getPaddingRight() { return paddingRight; } /** * @param paddingRight * the paddingRight to set */ public void setPaddingRight(float quadrantPaddingRight) { this.paddingRight = quadrantPaddingRight; } /** * @param padding * the paddingTop paddingBottom * paddingLeft paddingRight to set * */ public void setQuadrantPadding(float padding) { this.paddingTop = padding; this.paddingLeft = padding; this.paddingBottom = padding; this.paddingRight = padding; } /** * @param topnbottom * the paddingTop paddingBottom to set * @param leftnright * the paddingLeft paddingRight to set * */ public void setQuadrantPadding(float topnbottom, float leftnright) { this.paddingTop = topnbottom; this.paddingLeft = leftnright; this.paddingBottom = topnbottom; this.paddingRight = leftnright; } /** * @param top * the paddingTop to set * @param right * the paddingLeft to set * @param bottom * the paddingBottom to set * @param left * the paddingRight to set * */ public void setQuadrantPadding(float top, float right, float bottom, float left) { this.paddingTop = top; this.paddingLeft = right; this.paddingBottom = bottom; this.paddingRight = left; } public float getQuadrantEndX(){ return getQuadrantStartX() + getQuadrantWidth(); } public float getQuadrantEndY(){ return getQuadrantStartY() + getQuadrantHeight(); } public float getQuadrantPaddingStartX() { return getQuadrantStartX() + paddingLeft; } public float getQuadrantPaddingEndX() { return getQuadrantEndX() - paddingRight; } public float getQuadrantPaddingStartY() { return getQuadrantStartY() + paddingTop; } public float getQuadrantPaddingEndY() { return getQuadrantEndY() - paddingBottom; } public float getQuadrantPaddingWidth() { return getQuadrantWidth() - paddingLeft - paddingRight; } public float getQuadrantPaddingHeight() { return getQuadrantHeight() - paddingTop - paddingBottom; } }