Skip to content

Commit

Permalink
feat: add radar type
Browse files Browse the repository at this point in the history
  • Loading branch information
SeptiawanAjiP committed Sep 14, 2023
1 parent a042c95 commit c036fa0
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ class MainActivity : AppCompatActivity() {
setContentView(binding.root)

binding.androidChart1.setChart(
ChartType.PIE,
ChartType.RADAR,
arrayOf("Sunday", "Monday", "Tuesday", "Wednesday", "Thursday"),
arrayOf(10, 3, 5, 8, 9),
"of quantity")
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,5 +17,6 @@ class ChartType {
val DOUGHNUT = "doughnut"
val POLAR_AREA = "polarArea"
val BUBBLE = "radar"
val RADAR = "radar"
}
}

0 comments on commit c036fa0

Please sign in to comment.