import React, { Component } from 'react'; import { Surface, CartesianAxis, Label } from 'recharts'; export default class Demo extends Component { static displayName = 'CartesianAxisDemo'; render () { let ticks = [ { value: 10, coordinate: 50 }, { value: 1000, coordinate: 100 }, { value: 20, coordinate: 150 }, { value: 40, coordinate: 200 }, { value: 90, coordinate: 250 } ]; return ( ); } }