import React, { Component } from 'react'; import { Text } from 'recharts'; class TextDemo extends Component { state = { exampleText: 'This is really long text', x: 0, y: 0, width: 300, height: 200, angle: 0, scaleToFit: false, textAnchor: 'start', verticalAnchor: 'start', fontSize: '1em', fontFamily: 'Arial', lineHeight: '1em', showAnchor: true, resizeSvg: true, }; render() { const styles = { exampleText: { width: 200, }, range: { marginLeft: 25, width: 275, }, svg: { height: 200, display: 'block', border: '1px solid #aaa', marginBottom: 10, }, }; return (