bfarrgaynor

Results 15 comments of bfarrgaynor

> @CrashMJ I managed to make it work on Android. You have to ask user about permissions, otherwise you will see empty view. Please look at this solution: > https://github.com/Syntx-io/RN-Livestream-Example...

I (sort-of) found a solution to this - but had to hack the hell out of it. Go into LineChart.js and adjust the render to use a drawLines with two...

Using that approach I was able to get this: But had to hack in support for my own line colours. With a colours array. ``` _drawLine = (lineData, colour) =>...

Yes will post later today when I get a moment.

``` /* @flow */ import React, { Component } from 'react'; import { Animated, ART, View } from 'react-native'; const { Surface, Shape, Path } = ART; // import Morph...

I basically made data accept an array of arrays in the params for the component. From there, I looped through the param array of data like this: ``` for(var lineData...

``` 'data': [ [ ["Mon", 35], ["Tue", 35], ["Wed", 10], ["Thu", 30], ["Fri", 15], ["Sat", 15], ["Sun", 25], ], [ ["Mon", 30], ["Tue", 10], ["Wed", 15], ["Thu", 16], ["Fri", 18],...

Hi Guys, I got multi-line half sort-of working with the code I provided. But I gave up on it after a while because it was clear it wasn't going to...

The first point is treated distinctly from the rest in the series and I feel like that whole thing should be thrown out. All points should go through the same...

> I honestly didn't get too far. I didn't want to go down a road only to find that the repo had been abandoned (which it seems like it might...