1

我有一个定制的风暴反应图节点:

this.engine.registerNodeFactory(new ExampleNodeFactory());

const node2 = new ExampleNodeModel();
const port2 = node2.addPort( new ExamplePortModel("left") );

我在 Widget 中的渲染方法如下所示:

render() { 
    return (
        <div className="grid-node" style={{textAlign: 'center', width: '140px'}}>            
            <ExampleIcon style={{width: '80px', height: '80px', position: 'relative', color: '#0d84b7'}} />            
        </div>
    );
}

我的问题:是否可以将 react-vis 仪表图元素添加到我的自定义节点?

结果将是渲染的节点,其周围有 react-vis 仪表元素。

无法弄清楚如何做到这一点......

4

1 回答 1

0

我认为您可能没有为您的用例使用正确的库。React-vis 是一个在浏览器上使用 react 进行 html 和 dom 操作的库。听起来您正在为 react-native 应用程序拍摄,我建议您使用类似victory-native 的东西(https://github.com/FormidableLabs/victory-native)。

于 2018-02-10T08:53:13.507 回答