Skip to content

Instantly share code, notes, and snippets.

Keybase proof

I hereby claim:

  • I am jpadilla1 on github.
  • I am jpadilla1293 (https://keybase.io/jpadilla1293) on keybase.
  • I have a public key whose fingerprint is 4CDA 2F2B A657 2CD9 F895 6F9A 8769 5D07 311B A2C2

To claim this, I am signing this object:

@Jpadilla1
Jpadilla1 / RadarChart.js
Created March 13, 2016 18:45
react-native-ios-charts RadarChart example
import React, {
AppRegistry,
Component,
StyleSheet,
View
} from 'react-native';
import { RadarChart } from 'react-native-ios-charts';
class charts extends Component {
@Jpadilla1
Jpadilla1 / PieChart.js
Last active December 14, 2016 03:01
react-native-ios-charts PieChart example
import React, {
AppRegistry,
Component,
StyleSheet,
View
} from 'react-native';
import { PieChart } from 'react-native-ios-charts';
class charts extends Component {
@Jpadilla1
Jpadilla1 / ScatterChart.js
Created March 13, 2016 17:48
react-native-ios-charts ScatterChart example
import React, {
AppRegistry,
Component,
StyleSheet,
View
} from 'react-native';
import { ScatterChart } from 'react-native-ios-charts';
class charts extends Component {
@Jpadilla1
Jpadilla1 / BubbleChart.js
Last active March 13, 2016 16:38
react-native-ios-charts BubbleChart example
import React, {
AppRegistry,
Component,
StyleSheet,
View
} from 'react-native';
import { BubbleChart } from 'react-native-ios-charts';
class charts extends Component {
@Jpadilla1
Jpadilla1 / CandleStickChart.js
Last active March 13, 2016 17:49
react-native-ios-charts CandleStickChart example
import React, {
AppRegistry,
Component,
StyleSheet,
View
} from 'react-native';
import { CandleStickChart } from 'react-native-ios-charts';
class charts extends Component {
@Jpadilla1
Jpadilla1 / LineChart.js
Created February 10, 2016 15:13
react-native-ios-charts LineChart example
import React, {
AppRegistry,
Component,
StyleSheet,
Text,
View
} from 'react-native';
import { LineChart } from 'react-native-ios-charts';
@Jpadilla1
Jpadilla1 / HorizontalBarChart.js
Last active May 30, 2019 10:31
react-native-ios-charts HorizontalBarChart example
import React, {
AppRegistry,
Component,
StyleSheet,
Text,
View
} from 'react-native';
import { HorizontalBarChart } from 'react-native-ios-charts';
@Jpadilla1
Jpadilla1 / BarChart.js
Last active March 27, 2016 04:07
react-native-ios-charts BarChart example
import React, {
Component,
StyleSheet,
View
} from 'react-native';
import { BarChart } from 'react-native-ios-charts';
class MyChart extends Component {
render() {
var data = [
{
id: 'canovanas',
fill: 'red',
stroke: 'yellow',
'stroke-width': 3
},
{
id: 'san_juan',
fill: 'green',