Does anyone know how to create a doughnut chart similar to the one in Google Fit.
I also wanted this, but the best answer i could find was "make your own". So I did.
This is pretty basic (I'm new to android) and unfinished, but it should give you the idea.
Basically, you just set up your paint objects
paintPrimary = new Paint();
paintPrimary.setAntiAlias(true);
paintPrimary.setColor(colorPrimary);
paintPrimary.setStyle(Paint.Style.STROKE);
paintPrimary.setStrokeCap(Paint.Cap.ROUND);
and call canvas.drawArc
class FitDoughnutView extends View {
private RectF _oval;
public FitDoughnutView(Context ctx) {
super(ctx);
}
@Override
protected void onDraw(Canvas canvas) {
super.onDraw(canvas);
canvas.drawArc(_oval, 0, 360, false, paintSecondary);
canvas.drawArc(_oval, 270, percentDeg, false, paintPrimary);
}
@Override
protected void onSizeChanged(int w, int h, int oldw, int oldh) {
_oval = new RectF(width, width, w - width, h - width);
}
}
Full source here: github.com/tehmantra/fitdoughnut
Someone's tutorial: hmkcode.com/android-canvas-how-to-draw-2d-donut-chart/
I would recommend this library because it's actively maintained and has a lot of options.
It has a guide of how to use it in Kotlin, but you also can use it in Java like this:
In your layout file:
<app.futured.donut.DonutProgressView
android:id="@+id/dpvChart"
android:layout_width="200dp"
android:layout_height="200dp"
android:layout_marginTop="8dp"
app:donut_bgLineColor="@color/grey"
app:donut_gapAngle="270"
app:donut_gapWidth="20"
app:donut_strokeWidth="16dp"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent" />
Then in your Java Activity:
private DonutProgressView dpvChart;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity);
dpvChart = findViewById(R.id.dpvChart);
DonutSection section = new DonutSection("Section 1 Name", Color.parseColor("#f44336"), 80.0f);
dpvChart.setCap(100f);
dpvChart.submitData(new ArrayList<>(Collections.singleton(section)));
}
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With