Skip to content

Instantly share code, notes, and snippets.

@PaulieScanlon
Created October 3, 2022 13:43
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save PaulieScanlon/1f67c99459655ab6ddf6b3ed92c56633 to your computer and use it in GitHub Desktop.
Save PaulieScanlon/1f67c99459655ab6ddf6b3ed92c56633 to your computer and use it in GitHub Desktop.
Creating the points array
import React from 'react';
import PropTypes from 'prop-types';
const LineChart = ({ data }) => {
...
+ const points = properties.map((point) => {
+ const { x, y } = point;
+ return `${x},${y}`;
+ });
return null
};
export default LineChart;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment