0

我正在使用“react-native-svg-chart”来创建饼图,但我面临的问题是它在饼图的中心呈现重复的文本(下图)。

在此处输入图像描述

这是我正在使用的代码

   <PieChart
            style={{height: 262}}
            valueAccessor={({item}) => item.amount}
            data={data}
            outerRadius={'95%'}>
            <Text
              style={{
                position: 'absolute',
                left: deviceWidth / 2.3 - labelWidth / 3,
                textAlign: 'center',
              }}>
              hello
            </Text>
            <Labels />
          </PieChart>
4

1 回答 1

1

尝试Text从 导入组件react-native-svg,例如

import { Text } from 'react-native-svg'
于 2022-02-14T11:01:12.227 回答