Skip to content

Commit

Permalink
doc: update readme file
Browse files Browse the repository at this point in the history
  • Loading branch information
SeptiawanAjiP committed Sep 24, 2023
1 parent 212c8f7 commit 41b9937
Showing 1 changed file with 10 additions and 1 deletion.
11 changes: 10 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,15 @@ binding.androidChart1.setChart(
arrayOf("Sunday", "Monday", "Tuesday", "Wednesday", "Thursday"),
arrayOf(10, 3, 5, 8, 9),
"of quantity")

// set bubble chart
binding.androidChart1.setBubbleChart(
arrayOf(
BubbleEntity(10,20,30),
BubbleEntity(25, 45, 20),
BubbleEntity(15, 25, 5)
),
"of quantity")
```
### Chart Types
- [x] Bar Chart
Expand All @@ -57,4 +66,4 @@ binding.androidChart1.setChart(
- [x] Doughnut Chart
- [x] Polar Area
- [x] Radar
- [ ] Bubble Chart
- [x] Bubble Chart

0 comments on commit 41b9937

Please sign in to comment.