Android Open Source - EazeGraph Pie Model






From Project

Back to project page EazeGraph.

License

The source code is released under:

Apache License

If you think the Android project EazeGraph listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.

Java Source Code

/**
 *//ww  w. ja v  a  2 s  .c o  m
 *   Copyright (C) 2014 Paul Cech
 *
 *   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 org.eazegraph.lib.models;

/**
 * Model for the {@link org.eazegraph.lib.charts.PieChart}
 */
public class PieModel extends BaseModel implements Comparable {

    public PieModel(String _legendLabel, float _value, int _color) {
        super(_legendLabel);
        mValue = _value;
        mColor = _color;
    }

    public PieModel(float _value, int _color) {
        super("");
        mValue = _value;
        mColor = _color;
    }

    public PieModel() {
    }

    public float getValue() {
        return mValue;
    }

    public void setValue(float _Value) {
        mValue = _Value;
    }

    public int getColor() {
        return mColor;
    }

    public void setColor(int _Color) {
        mColor = _Color;
    }

    public int getHighlightedColor() {
        return mHighlightedColor;
    }

    public void setHighlightedColor(int _HighlightedColor) {
        mHighlightedColor = _HighlightedColor;
    }

    public int getStartAngle() {
        return mStartAngle;
    }

    public void setStartAngle(int _StartAngle) {
        mStartAngle = _StartAngle;
    }

    public int getEndAngle() {
        return mEndAngle;
    }

    public void setEndAngle(int _EndAngle) {
        mEndAngle = _EndAngle;
    }

    @Override
    public int compareTo(Object o) {
        PieModel pie = (PieModel) o;
        if (this.mValue > pie.getValue()) {
            return 1;
        }
        else if (this.mValue == pie.getValue()) {
            return 0;
        }
        else {
            return -1;
        }
    }

    /**
     * Value of the Pie Slice
     */
    private float mValue;

    /**
     * The color in which the pie slice will be drawn.
     */
    private int   mColor;

    /**
     * The highlighted mColor value.
     */
    private int   mHighlightedColor;

    /**
     * Start angle in the PieChart
     */
    private int   mStartAngle;

    /**
     * End angle in the PieChart
     */
    private int   mEndAngle;

}




Java Source Code List

org.eazegraph.lib.charts.BarChart.java
org.eazegraph.lib.charts.BaseBarChart.java
org.eazegraph.lib.charts.BaseChart.java
org.eazegraph.lib.charts.PieChart.java
org.eazegraph.lib.charts.StackedBarChart.java
org.eazegraph.lib.charts.ValueLineChart.java
org.eazegraph.lib.communication.IOnBarClickedListener.java
org.eazegraph.lib.communication.IOnItemFocusChangedListener.java
org.eazegraph.lib.communication.IOnPointFocusedListener.java
org.eazegraph.lib.models.BarModel.java
org.eazegraph.lib.models.BaseModel.java
org.eazegraph.lib.models.LegendModel.java
org.eazegraph.lib.models.PieModel.java
org.eazegraph.lib.models.Point2D.java
org.eazegraph.lib.models.StackedBarModel.java
org.eazegraph.lib.models.StandardValue.java
org.eazegraph.lib.models.ValueLinePoint.java
org.eazegraph.lib.models.ValueLineSeries.java
org.eazegraph.lib.utils.ScaleGestureDetectorCompat.java
org.eazegraph.lib.utils.Utils.java
org.eazegraph.showcase.ApplicationTest.java
org.eazegraph.showcase.ChartActivity.java
org.eazegraph.showcase.NavigationDrawerFragment.java
org.eazegraph.showcase.fragments.BarChartFragment.java
org.eazegraph.showcase.fragments.ChartFragment.java
org.eazegraph.showcase.fragments.CubicValueLineChartFragment.java
org.eazegraph.showcase.fragments.PieChartFragment.java
org.eazegraph.showcase.fragments.StackedBarChartFragment.java
org.eazegraph.showcase.fragments.ValueLineChartFragment.java