import React, { Component } from 'react'; export default class Demo extends Component { static displayName = 'CustomLineDotDemo'; render() { const { cx, cy, stroke, payload } = this.props; if (cx !== +cx || cy !== +cy) { return null; } if (payload.value > 250) { return ( ); } return ( ); } }