Welcome to the LiveChart Repository
LiveChart is an open-source Android library to draw beautiful yet powerful charts. The library allows for color and data display customization, in an easy to learn, descriptive API.
Draw from a simple line to a fully tagged chart with bounds and baseline. The library is perfect (and started out) to draw financial charts where the baseline and color of the chart matters.
Add it to your app
To get LiveChart into your build:
Step 1. Add the JitPack repository to your build file
Add it in your root build.gradle at the end of repositories:
allprojects {
repositories {
...
maven { url 'https://jitpack.io' }
}
}
Step 2. Add the dependency
dependencies {
implementation 'com.github.Pfuster12:LiveChart:1.2.2'
}
Contributing
Anybody is welcome to contribute! The repository is Commitizen friendly, please refer to their guidelines on commit messages.
Roadmap
The LiveChart library has just started out. Have a look at the roadmap for new features in the horizon. Have a request? Open up an issue with a feature tag.
How to Use
You'll need a reference to a LiveChart
view first, either through XML or programmatically:
<?xml version="1.0" encoding="utf-8"?>
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:clipChildren="false"
tools:context=".MainActivity">
<com.yabu.livechart.view.LiveChart
android:id="@+id/live_chart"
android:layout_width="match_parent"
android:layout_height="300dp"/>
</FrameLayout>
val liveChart = findViewById(R.id.live_chart)
LiveChart knows how to draw from a Dataset
only. Create a new dataset containing a list of DataPoint
's:
val liveChart = findViewById(R.id.live_chart)
val dataset = Dataset(mutableListOf(DataPoint(0f, 1f),
DataPoint(1f, 3f),
DataPoint(2f, 6f)))
In order to begin the draw operation, the library uses a chainable, descriptive public API:
val liveChart = findViewById(R.id.live_chart)
val dataset = Dataset(mutableListOf(DataPoint(0f, 1f),
DataPoint(1f, 3f),
DataPoint(2f, 6f)))
// set dataset, display options, and ... draw!
livechart.setDataset(dataset)
.drawYBounds()
.drawBaseline()
.drawFill()
.drawDataset()
Draw Options
The chart can be as simple as drawing a line on a blank canvas:
val dataset = Dataset(mutableListOf(DataPoint(0f, 1f),
DataPoint(1f, 3f),
DataPoint(2f, 6f)))
livechart.setDataset(dataset)
.drawDataset()
Or provide the full set of display capabilities by adding a baseline, a gradient fill and
the axis bounds with data labels:
val dataset = Dataset(mutableListOf(DataPoint(0f, 1f),
DataPoint(1f, 3f),
DataPoint(2f, 6f)))
livechart.setDataset(dataset)
// Draws the Y Axis bounds with Text data points.
.drawYBounds()
// Draws a customizable base line from the first point of the dataset or manually set a data point
.drawBaseline()
// Set manually the data point from where the baseline draws,
.setBaselineManually(1.5f)
// Draws a fill on the chart line. You can set whether to draw with a transparent gradient
// or a solid fill. Defaults to gradient.
.drawFill(withGradient = true)
// draws the color of the path and fill conditional to being above/below the baseline datapoint
.drawBaselineConditionalColor()
.drawDataset()
Refer to the screenshot to view the different options and color change on below baseline/above baseline.
You can find all the possible draw options under the API reference.
Styling
Style Programmatically
Since v1.1.0
LiveChart supports custom styling of almost all its interface
through the LiveChartStyle
class. The style object contains all available styling options as
properties you can change:
val style = LiveChartStyle().apply {
textColor = Color.BLUE
textHeight = 30f
mainColor = Color.GREEN
mainFillColor = Color.MAGENTA
baselineColor = Color.BLUE
pathStrokeWidth = 12f
baselineStrokeWidth = 6f
}
// Pass the styling object to the view through the method setLiveChartStyle(style: LiveChartStyle)
livechart.setDataset(dataset)
.setLiveChartStyle(style)
.drawBaseline()
.drawFill(withGradient = true)
.drawYBounds()
.drawDataset()
The above example would result in a rather horrible (yet accurate) view of:
For the full set of attributes available to customise refer to the LiveChartStyle
reference.
Any attributes not explicitly set fallback to the LiveChartAttributes
object defaults you can view in the
reference too.
Style with XML
You can also style a number of attributes through the XML layout attributes. For example:
<com.yabu.livechart.view.LiveChart
android:id="@+id/live_chart"
android:layout_width="match_parent"
android:layout_height="300dp"
app:labelTextColor="@color/colorAccent"
app:pathColor="@color/colorAccent"
app:pathStrokeWidth="4dp"
app:baselineStrokeWidth="4dp"
app:baselineDashGap="8dp"
app:labelTextHeight="14sp"
app:baselineColor="@color/colorPrimaryDark"
app:overlayCircleColor="@color/colorPrimaryDark"
app:overlayLineColor="@color/colorPrimary"
app:overlayCircleDiameter="8dp"/>
For a full set of available attributes you can check the LiveChartView
reference.
Second Dataset
The library allows for data comparisons by drawing a second dataset on the same chart. The
second dataset defaults to a grey color but you can set the color manually through the style object:
val firstDataset = Dataset(mutableListOf(DataPoint(0f, 1f),
DataPoint(1f, 2f),
DataPoint(2f, 3f),
DataPoint(3f, 4f),
DataPoint(4f, 5f),
DataPoint(5f, 8f),
DataPoint(6f, 13f),
DataPoint(7f, 21f)
))
val secondDataset = Dataset(mutableListOf(DataPoint(0f, 0f),
DataPoint(1f, 1f),
DataPoint(2f, 2f),
DataPoint(3f, 3f),
DataPoint(4f, 4f),
DataPoint(5f, 5f),
DataPoint(6f, 10f),
DataPoint(7f, 18f)
))
val style = LiveChartStyle().apply {
mainColor = Color.GRAY
secondColor = Color.MAGENTA
pathStrokeWidth = 8f
secondPathStrokeWidth = 8f
}
livechart.setDataset(firstDataset)
.setSecondDataset(secondDataset)
.setLiveChartStyle(style)
.drawYBounds()
.drawDataset()
This results in the following chart:
NOTE Want more than two datasets? Don't worry, the project roadmap intends to support drawing
an unlimited number of datasets provided in a list.
Touch Events
Since v1.2.0 LiveChart supports touch events and can draw a visual DataPoint slider that moves with your finger.
The touch overlay is built in to the LiveChart
class. You can style the vertical slider and
circle through the LiveChartStyle
object or through the XML attributes (See above):
val chartStyle = LiveChartStyle().apply {
overlayLineColor = Color.BLUE
overlayCircleDiameter = 32f
overlayCircleColor = Color.GREEN
}
livechart.setDataset(dataset)
.setLiveChartStyle(chartStyle)
.drawDataset()
Just drawing the horizontal slider doesn't tell us much though. We can add a listener to get the current
DataPoint
of the touch event with the LiveChart.OnTouchCallback
:
val textView = findViewById(R.id.text_view)
livechart.setDataset(dataset)
.setLiveChartStyle(chartStyle)
.setOnTouchCallbackListener(object : LiveChart.OnTouchCallback {
override fun onTouchCallback(point: DataPoint) {
textView.text = "(${"%.2f".format(point.x)}, ${"%.2f".format(point.y)})"
}
})
.drawDataset()
This allows us to show the current point the user is dragging along.
Disabling the touch overlay
If you don't want the touch overlay it can be disabled easily:
livechart.setDataset(dataset)
.disableTouchOverlay()
.drawDataset()
You might want to do this when the chart view is too small to benefit from touch interactions,
or if you require extra optimization in your view drawing and would require as little overhead as
possible.
Things to consider
LiveChart tries to leave a minimal footprint as possible, extending from the built-in Android View
class to perform the draw operations. It follows best practice advice to only perform draw ops
and avoid setting any variables to memory during the onDraw()
call.
HOWEVER, drawing big datasets is a costly operation and the Android UI will appear 'janky' if you
are not careful with the amount of data you feed in.
A good Android citizen will only draw the necessary data points, avoid calling drawDataset()
repeatedly
and not animate the LiveChartView
excessively.
Using LiveChartView only
Even though the main entry point to this library is the LiveChart
layout class which contains extra
touch functionality, the base View
class LiveChartView
that actually performs the drawing is kept
public in case there is performance requirements and you don't need want the touch overlay views
overhead (You can also disable it, see above).
It also allows to override it and add custom functionality to this base class, as LiveChart is kept final.
The View has the exact same public API and xml attributes as the LiveChart
class so they are almost
interchangeable.