Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@ import info.appdev.charting.components.Legend.LegendForm
import info.appdev.charting.components.LimitLine
import info.appdev.charting.components.LimitLine.LimitLabelPosition
import info.appdev.charting.components.LimitRange
import info.appdev.charting.components.XAxis
import info.appdev.charting.data.Entry
import info.appdev.charting.data.LineDataSet
import info.appdev.charting.highlight.Highlight
Expand Down Expand Up @@ -47,6 +48,8 @@ class LineChartActivity : DemoBase(), OnSeekBarChangeListener, OnChartValueSelec

// disable description text
binding.chart1.description.isEnabled = false
binding.chart1.legend.isEnabled = false
binding.chart1.xAxis.position = XAxis.XAxisPosition.BOTTOM

// enable touch gestures
binding.chart1.setTouchEnabled(true)
Expand Down
Loading