Tspan不适用于使用ART的React Native

时间:2019-05-29 06:52:13

标签: react-native d3.js charts

我正在尝试使用“ tspan”在React-native中使用ART对齐文本,但是它根本不起作用。也许ART不支持tspan。

我想在图表X轴的中间对齐文本,所以我想要与http://jsfiddle.net/helderdarocha/e4bAh/类似的情况 我曾尝试在ART中导入(“ TSpan”和“ tspan”),但没有一个起作用。

import {View, ART} from 'react-native';
const {Surface,Group,Shape,Text,tspan,TSpan} = ART;

...

class Bars extends React.Component {
    render() {
      console.log(TSpan, tspan); // undefined undefined
      return(
      <View>
         <Surface width={100} height={100}>
          <Text y={20} fill="blue">
           <TSpan x="0" text-anchor="middle">
             Abc
           </TSpan>
          </Text>
         </Surface>
       </View>
      );
    }
}

谢谢。

0 个答案:

没有答案