tango-chart
Version:
A slick charting library for react.
15 lines (12 loc) • 335 B
JavaScript
import React, {PropTypes, Component} from 'react';
export default class Circle extends Component {
render() {
const circleProps = {
cx: this.props.xScale(this.props.coords[0]),
cy: this.props.yScale(this.props.coords[1]),
r: 2,
key: this.props.index
};
return <circle {...circleProps} />;
}
}