Skip to content
This repository has been archived by the owner on Sep 17, 2021. It is now read-only.

Commit

Permalink
feature: add interaction on line chart. (#221)
Browse files Browse the repository at this point in the history
  • Loading branch information
Guangyao Miao authored and marzolfb committed Jan 17, 2018
1 parent f77d86d commit bbc881d
Show file tree
Hide file tree
Showing 5 changed files with 454 additions and 16 deletions.
6 changes: 6 additions & 0 deletions example/src/App.js
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,7 @@ import StockLineChartBasic from './stockline/StockLineChartBasic'
import StockLineChartStaticTickLabels from './stockline/StockLineChartStaticTickLabels'
import StockLineChartDynamicTickLabels from './stockline/StockLineChartDynamicTickLabels'
import StockLineChartDynamicLineRendering from './stockline/StockLineChartDynamicLineRendering'
import StockLineChartGesture from './stockline/StockLineChartGesture'

import SmoothLineChartBasic from './smoothline/SmoothLineChartBasic'
import SmoothLineChartRegions from './smoothline/SmoothLineChartRegions'
Expand Down Expand Up @@ -86,6 +87,10 @@ class HomeScreen extends React.Component {
onPress={() => navigate('StockLineChartDynamicLineRendering')}
title="StockLine - Dynamic Line Rendering"
/>
<Button
onPress={() => navigate('StockLineChartGesture')}
title="StockLine - Gesture"
/>
<Button
onPress={() => navigate('SmoothLineChartBasic')}
title="SmoothLine - Basic"
Expand Down Expand Up @@ -123,6 +128,7 @@ const App = StackNavigator({
StockLineChartStaticTickLabels: { screen: StockLineChartStaticTickLabels },
StockLineChartDynamicTickLabels: { screen: StockLineChartDynamicTickLabels },
StockLineChartDynamicLineRendering: { screen: StockLineChartDynamicLineRendering },
StockLineChartGesture: { screen: StockLineChartGesture },
SmoothLineChartBasic: { screen: SmoothLineChartBasic },
SmoothLineChartRegions: { screen: SmoothLineChartRegions },
SmoothLineChartRegionsExtended: { screen: SmoothLineChartRegionsExtended },
Expand Down
314 changes: 314 additions & 0 deletions example/src/stockline/StockLineChartGesture.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,314 @@
/*
Copyright 2016 Capital One Services, LLC
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and limitations under the License.
SPDX-Copyright: Copyright (c) Capital One Services, LLC
SPDX-License-Identifier: Apache-2.0
*/

'use strict';

import React, { Component } from 'react';
import { View, StyleSheet, Text } from 'react-native';

import { StockLine } from 'react-native-pathjs-charts';

const data = [
[{
"x": 0,
"y": 47782
}, {
"x": 1,
"y": 48497
}, {
"x": 2,
"y": 77128
}, {
"x": 3,
"y": 73413
}, {
"x": 4,
"y": 58257
}, {
"x": 5,
"y": 40579
}, {
"x": 6,
"y": 72893
}, {
"x": 7,
"y": 60663
}, {
"x": 8,
"y": 15715
}, {
"x": 9,
"y": 40305
}, {
"x": 10,
"y": 68592
}, {
"x": 11,
"y": 95664
}, {
"x": 12,
"y": 17908
}, {
"x": 13,
"y": 22838
}, {
"x": 14,
"y": 32153
}, {
"x": 15,
"y": 56594
}, {
"x": 16,
"y": 76348
}, {
"x": 17,
"y": 46222
}, {
"x": 18,
"y": 59304
}],
[{
"x": 0,
"y": 132189
}, {
"x": 1,
"y": 61705
}, {
"x": 2,
"y": 154976
}, {
"x": 3,
"y": 81304
}, {
"x": 4,
"y": 172572
}, {
"x": 5,
"y": 140656
}, {
"x": 6,
"y": 148606
}, {
"x": 7,
"y": 53010
}, {
"x": 8,
"y": 110783
}, {
"x": 9,
"y": 196446
}, {
"x": 10,
"y": 117057
}, {
"x": 11,
"y": 186765
}, {
"x": 12,
"y": 174908
}, {
"x": 13,
"y": 75247
}, {
"x": 14,
"y": 192894
}, {
"x": 15,
"y": 150356
}, {
"x": 16,
"y": 180360
}, {
"x": 17,
"y": 175697
}, {
"x": 18,
"y": 114967
}],
[{
"x": 0,
"y": 125797
}, {
"x": 1,
"y": 256656
}, {
"x": 2,
"y": 222260
}, {
"x": 3,
"y": 265642
}, {
"x": 4,
"y": 263902
}, {
"x": 5,
"y": 113453
}, {
"x": 6,
"y": 289461
}, {
"x": 7,
"y": 293850
}, {
"x": 8,
"y": 206079
}, {
"x": 9,
"y": 240859
}, {
"x": 10,
"y": 152776
}, {
"x": 11,
"y": 297282
}, {
"x": 12,
"y": 175177
}, {
"x": 13,
"y": 169233
}, {
"x": 14,
"y": 237827
}, {
"x": 15,
"y": 242429
}, {
"x": 16,
"y": 218230
}, {
"x": 17,
"y": 161511
}, {
"x": 18,
"y": 153227
}]
];

const styles = StyleSheet.create({
container: {
flex: 1,
justifyContent: 'center',
alignItems: 'center',
backgroundColor: '#f7f7f7',
},
});

class StockLineChartBasic extends Component {

constructor(props) {
super(props);
this.state = {};
}

componentWillMount () {
this._panHandlerStart = this._panHandlerStart.bind(this);
this._panHandlerMove = this._panHandlerStart.bind(this);
this._panHandlerEnd = this._panHandlerEnd.bind(this);
}

static navigationOptions = ({ navigation }) => ({
title: `StockLine - Gesture`,
});

_panHandlerStart(cursorPositionX) {
this.setState({
selectedDataPointPosition: String(Math.floor(cursorPositionX * (data[0].length - 1)))
});
}
_panHandlerMove(cursorPositionX) {
this.setState({
selectedDataPointPosition: String(Math.floor(cursorPositionX * (data[0].length - 1)))
});
}
_panHandlerEnd(cursorPositionX) {
this.setState({
selectedDataPointPosition: ""
});
}

render() {

const options = {
width: 250,
height: 250,
color: '#2980B9',
margin: {
top: 10,
left: 35,
bottom: 30,
right: 10
},
animate: {
type: 'delayed',
duration: 200
},
axisX: {
showAxis: true,
showLines: true,
showLabels: true,
showTicks: true,
zeroAxis: false,
orient: 'bottom',
tickValues: [],
label: {
fontFamily: 'Arial',
fontSize: 8,
fontWeight: true,
fill: '#34495E'
}
},
axisY: {
showAxis: true,
showLines: true,
showLabels: true,
showTicks: true,
zeroAxis: false,
orient: 'left',
tickValues: [],
label: {
fontFamily: 'Arial',
fontSize: 8,
fontWeight: true,
fill: '#34495E'
}
},
interaction: true,
cursorLine: {
stroke: 'white',
strokeWidth: 2
}
};

return (
<View style={styles.container}>
<Text> Data point index: { this.state.selectedDataPointPosition }</Text>
<StockLine
panHandlerStart={this._panHandlerStart}
panHandlerMove={this._panHandlerMove}
panHandlerEnd={this._panHandlerEnd}
data={data}
options={options}
xKey='x'
yKey='y' />
</View>
);
}
}

export default StockLineChartBasic;
Loading

0 comments on commit bbc881d

Please sign in to comment.