Java Code Examples for com.github.mikephil.charting.charts.PieChart#setRotationAngle()
The following examples show how to use
com.github.mikephil.charting.charts.PieChart#setRotationAngle() .
You can vote up the ones you like or vote down the ones you don't like,
and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example 1
Source File: ChartUtils.java From AccountBook with GNU General Public License v3.0 | 6 votes |
/** * 初始化饼状图 * @param chart pieChart */ public static void initPieChart(PieChart chart){ chart.setNoDataText(UiUtils.getString(R.string.empty_data)); chart.setUsePercentValues(true); chart.getDescription().setEnabled(false); chart.setExtraOffsets(5, 10, 5, 5); chart.setDragDecelerationFrictionCoef(0.95f); chart.setDrawHoleEnabled(true); chart.setDrawEntryLabels(false);// 设置条目标签 chart.setHoleColor(Color.WHITE); chart.setTransparentCircleColor(Color.WHITE); chart.setTransparentCircleAlpha(110); chart.setHoleRadius(58f); chart.setTransparentCircleRadius(61f); chart.setDrawCenterText(true); chart.setRotationAngle(0); chart.setRotationEnabled(true); chart.setHighlightPerTapEnabled(true); chart.getLegend().setEnabled(false); }
Example 2
Source File: PredictionsFragment.java From SEAL-Demo with MIT License | 5 votes |
@Override public View onCreateView(LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState) { // Inflate the layout for this fragment View v = inflater.inflate(R.layout.fragment_predictions_layout, container, false); ((AppCompatActivity) getActivity()).getSupportActionBar().setTitle(R.string.title_fragment_predictions); mChart = (PieChart) v.findViewById(R.id.chart); mHighPercentage = (TextView) v.findViewById(R.id.highClassificationValue); mMediumPercentage = (TextView) v.findViewById(R.id.mediumClassificationValue); mLowPercentage = (TextView) v.findViewById(R.id.lowClassificationValue); mProgressBar = (ProgressBar) v.findViewById(R.id.predictionProgress); // chart settings mChart.setUsePercentValues(true); mChart.getDescription().setEnabled(false); mChart.setExtraOffsets(10, 10, 10, 10); mChart.setDragDecelerationFrictionCoef(0.95f); mChart.setDrawHoleEnabled(false); mChart.setDrawCenterText(false); mChart.setRotationAngle(0); mChart.animateY(400, Easing.EasingOption.EaseInOutQuad); // enable rotation of the mChart by touch mChart.setRotationEnabled(true); mChart.setHighlightPerTapEnabled(true); mChart.getLegend().setEnabled(false); asyncGetIntensities(); return v; }
Example 3
Source File: ColorDetectionActivity.java From FaceT with Mozilla Public License 2.0 | 5 votes |
private void seteffect(PieChart colorPie) { colorPie.animateXY(2000, 2000, Easing.EasingOption.EaseInBounce, Easing.EasingOption.EaseInBounce); colorPie.invalidate(); colorPie.setDrawHoleEnabled(true); colorPie.setExtraOffsets(10, 10, 10, 10); colorPie.setContentDescription(""); colorPie.setDragDecelerationFrictionCoef(0.95f); colorPie.setDrawCenterText(true); colorPie.setRotationAngle(0); // enable rotation of the chart by touch colorPie.setRotationEnabled(true); colorPie.setHighlightPerTapEnabled(true); colorPie.setDrawHoleEnabled(true); colorPie.setHoleColor(Color.WHITE); //disable the label and description colorPie.getDescription().setEnabled(false); colorPie.getLegend().setEnabled(false); colorPie.setTransparentCircleColor(Color.WHITE); colorPie.setTransparentCircleAlpha(80); colorPie.setElevation(10f); colorPie.setHoleRadius(60f); colorPie.setTransparentCircleRadius(61f); // add a selection listener colorPie.setOnChartValueSelectedListener(this); }
Example 4
Source File: ProductDetailActivity.java From FaceT with Mozilla Public License 2.0 | 5 votes |
private void setEffectPieChart(PieChart colorPie) { colorPie.animateXY(1500, 1500, Easing.EasingOption.EaseInBounce, Easing.EasingOption.EaseInBounce); colorPie.invalidate(); colorPie.setDrawHoleEnabled(true); colorPie.setExtraOffsets(10, 10, 10, 10); colorPie.setContentDescription(""); colorPie.setDragDecelerationFrictionCoef(0.95f); colorPie.setDrawCenterText(true); colorPie.setRotationAngle(0); // enable rotation of the chart by touch colorPie.setRotationEnabled(true); colorPie.setHighlightPerTapEnabled(true); colorPie.setDrawHoleEnabled(true); colorPie.setHoleColor(Color.WHITE); colorPie.getLegend().setFormSize(10f); colorPie.getLegend().setFormToTextSpace(5f); //disable the label and description colorPie.getDescription().setEnabled(false); colorPie.getLegend().setEnabled(false); colorPie.setTransparentCircleColor(Color.WHITE); colorPie.setTransparentCircleAlpha(80); colorPie.setElevation(10f); colorPie.setHoleRadius(90f); colorPie.setTransparentCircleRadius(61f); // add a selection listener colorPie.setOnChartValueSelectedListener(this); }
Example 5
Source File: PieChartActivity.java From Stayfit with Apache License 2.0 | 4 votes |
@Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); getWindow().setFlags(WindowManager.LayoutParams.FLAG_FULLSCREEN, WindowManager.LayoutParams.FLAG_FULLSCREEN); setContentView(R.layout.activity_piechart); tvX = (TextView) findViewById(R.id.tvXMax); tvY = (TextView) findViewById(R.id.tvYMax); mSeekBarX = (SeekBar) findViewById(R.id.seekBar1); mSeekBarY = (SeekBar) findViewById(R.id.seekBar2); mSeekBarY.setProgress(10); mSeekBarX.setOnSeekBarChangeListener(this); mSeekBarY.setOnSeekBarChangeListener(this); mChart = (PieChart) findViewById(R.id.chart1); mChart.setUsePercentValues(true); mChart.setDescription(""); mChart.setExtraOffsets(5, 10, 5, 5); mChart.setDragDecelerationFrictionCoef(0.95f); tf = Typeface.createFromAsset(getAssets(), "OpenSans-Regular.ttf"); mChart.setCenterTextTypeface(Typeface.createFromAsset(getAssets(), "OpenSans-Light.ttf")); mChart.setCenterText(generateCenterSpannableText()); mChart.setDrawHoleEnabled(true); mChart.setHoleColor(Color.WHITE); mChart.setTransparentCircleColor(Color.WHITE); mChart.setTransparentCircleAlpha(110); mChart.setHoleRadius(58f); mChart.setTransparentCircleRadius(61f); mChart.setDrawCenterText(true); mChart.setRotationAngle(0); // enable rotation of the chart by touch mChart.setRotationEnabled(true); mChart.setHighlightPerTapEnabled(true); // mChart.setUnit(" €"); // mChart.setDrawUnitsInChart(true); // add a selection listener mChart.setOnChartValueSelectedListener(this); setData(3, 100); mChart.animateY(1400, Easing.EasingOption.EaseInOutQuad); // mChart.spin(2000, 0, 360); Legend l = mChart.getLegend(); l.setPosition(LegendPosition.RIGHT_OF_CHART); l.setXEntrySpace(7f); l.setYEntrySpace(0f); l.setYOffset(0f); }