我想知道如何在使用本机 iOS 时对图表进行动画处理,react-native-svg-charts或者是否有人可以帮助我找到另一个带有可视化数据的库图表。我尝试使用 的animate道具,StackedAreaChart但没有结果!
这是我的代码:
export default class LinksScreen extends React.Component {
static navigationOptions = {
title: 'react chart',
};
render() {
const data = [
{
month: new Date(2015, 0, 1),
apples: 3840,
bananas: 1920,
cherries: 960,
dates: 400,
},
{
month: new Date(2015, 1, 1),
apples: 1600,
bananas: 1440,
cherries: 960,
dates: 400,
},
{
month: new Date(2015, 2, 1),
apples: 640,
bananas: 960,
cherries: 3640,
dates: 400,
},
{
month: new …Run Code Online (Sandbox Code Playgroud)