Layered charts do not work, we need a native multi-line chart that can allow multiple lines to be on the same Y scale.
If one set of data is a multiple of another set of data. They show as overlapping lines, which is not correct. It is also very difficult to get this to work when adding in X and Y axes
<View style={{ height: 200 }}>
<LineChart
style={{ flex: 1 }}
data={[1,2,3,4,5]}>
<Grid />
</LineChart>
<LineChart
style={StyleSheet.absoluteFill}
data={[2,4,6,8,10]}>
</LineChart>
</View>
@holtc
check out #205. They have included the functionality to draw multiple line charts with one LineChart component itself. The problem is that this change hasn't been pushed to npm for some odd reason.
What I did for a work-around is that:
Works for me!
@holtc IMHO you should configure your package.json to target latest commit instead of dupplicating sources in your project. No proper release on npm is never a real issue.

I'll try to get a release going ASAP 鈿★笍
I found a way to make this work. The trick is to give the charts the same y-bounds (yMin and yMax) and so they will use the same scale. Also use the same min-max on the YAxis to adjust the ticks
Most helpful comment
I'll try to get a release going ASAP 鈿★笍