update readme
This commit is contained in:
parent
73570100e3
commit
cd12da9679
|
|
@ -75,12 +75,16 @@ npm start
|
||||||
|
|
||||||
运行截图:
|
运行截图:
|
||||||
|
|
||||||

|

|
||||||
|
|
||||||
### Android
|
### Android
|
||||||
|
|
||||||
使用Android studio打开Android目录,点击run
|
使用Android studio打开Android目录,点击run
|
||||||
|
|
||||||
|
运行截图:
|
||||||
|
|
||||||
|

|
||||||
|
|
||||||
## License
|
## License
|
||||||
|
|
||||||
native-echarts is released under the MIT license.
|
native-echarts is released under the MIT license.
|
||||||
|
|
|
||||||
Binary file not shown.
|
After Width: | Height: | Size: 80 KiB |
|
Before Width: | Height: | Size: 34 KiB After Width: | Height: | Size: 34 KiB |
|
|
@ -9,36 +9,71 @@ import {
|
||||||
AppRegistry,
|
AppRegistry,
|
||||||
StyleSheet,
|
StyleSheet,
|
||||||
Text,
|
Text,
|
||||||
View
|
View,
|
||||||
|
TouchableOpacity
|
||||||
} from 'react-native';
|
} from 'react-native';
|
||||||
import Echarts from 'native-echarts';
|
import Echarts from 'native-echarts';
|
||||||
|
|
||||||
export default class app2 extends Component {
|
export default class app2 extends Component {
|
||||||
render() {
|
constructor(props) {
|
||||||
const option = {
|
super(props);
|
||||||
title: {
|
|
||||||
text: 'ECharts 入门示例'
|
this.state = {
|
||||||
|
option : {
|
||||||
|
title: {
|
||||||
|
text: 'ECharts 入门示例'
|
||||||
|
},
|
||||||
|
tooltip: {},
|
||||||
|
legend: {
|
||||||
|
data:['销量']
|
||||||
|
},
|
||||||
|
xAxis: {
|
||||||
|
data: ["衬衫","羊毛衫","雪纺衫","裤子","高跟鞋","袜子"]
|
||||||
|
},
|
||||||
|
yAxis: {},
|
||||||
|
series: [{
|
||||||
|
name: '销量',
|
||||||
|
type: 'bar',
|
||||||
|
data: [5, 20, 36, 10, 10, 20]
|
||||||
|
}]
|
||||||
},
|
},
|
||||||
tooltip: {},
|
text: 'test'
|
||||||
legend: {
|
|
||||||
data:['销量']
|
|
||||||
},
|
|
||||||
xAxis: {
|
|
||||||
data: ["衬衫","羊毛衫","雪纺衫","裤子","高跟鞋","袜子"]
|
|
||||||
},
|
|
||||||
yAxis: {},
|
|
||||||
series: [{
|
|
||||||
name: '销量',
|
|
||||||
type: 'bar',
|
|
||||||
data: [5, 20, 36, 10, 10, 20]
|
|
||||||
}]
|
|
||||||
};
|
};
|
||||||
|
}
|
||||||
|
|
||||||
|
changeOption() {
|
||||||
|
this.setState({
|
||||||
|
option: {
|
||||||
|
title: {
|
||||||
|
text: 'New Chart'
|
||||||
|
},
|
||||||
|
tooltip: {},
|
||||||
|
legend: {
|
||||||
|
data:['销量']
|
||||||
|
},
|
||||||
|
xAxis: {
|
||||||
|
data: ["衬衫","羊毛衫","雪纺衫","裤子","高跟鞋","袜子"]
|
||||||
|
},
|
||||||
|
yAxis: {},
|
||||||
|
series: [{
|
||||||
|
name: '销量',
|
||||||
|
type: 'line',
|
||||||
|
data: [5, 20, 36, 10, 10, 20]
|
||||||
|
}]
|
||||||
|
}
|
||||||
|
})
|
||||||
|
}
|
||||||
|
|
||||||
|
render() {
|
||||||
return (
|
return (
|
||||||
<View style={styles.container}>
|
<View style={styles.container}>
|
||||||
<Text style={styles.welcome}>
|
<Text style={styles.welcome}>
|
||||||
Welcome to React Native Echarts!
|
Welcome to React Native Echarts!
|
||||||
</Text>
|
</Text>
|
||||||
<Echarts option={option} height={300} />
|
<TouchableOpacity style={styles.button} onPress={this.changeOption.bind(this)}>
|
||||||
|
<Text style={{color: '#fff'}}>change state</Text>
|
||||||
|
</TouchableOpacity>
|
||||||
|
<Echarts option={this.state.option} height={300} />
|
||||||
</View>
|
</View>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
@ -56,6 +91,12 @@ const styles = StyleSheet.create({
|
||||||
textAlign: 'center',
|
textAlign: 'center',
|
||||||
margin: 30,
|
margin: 30,
|
||||||
},
|
},
|
||||||
|
button: {
|
||||||
|
backgroundColor: '#d9534f',
|
||||||
|
padding: 8,
|
||||||
|
borderRadius: 4,
|
||||||
|
marginBottom: 20
|
||||||
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
AppRegistry.registerComponent('app2', () => app2);
|
AppRegistry.registerComponent('app2', () => app2);
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"name": "native-echarts",
|
"name": "native-echarts",
|
||||||
"version": "0.2.0",
|
"version": "0.3.0",
|
||||||
"description": "echarts for react-native",
|
"description": "echarts for react-native",
|
||||||
"main": "src/index.js",
|
"main": "src/index.js",
|
||||||
"directories": {
|
"directories": {
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue