import React from 'react'; import PropTypes from 'prop-types'; import { createMuiTheme, withStyles } from '@material-ui/core/styles'; import ThemePallete from 'ba-api/themePalette'; import { ScatterChart, Scatter, XAxis, YAxis, ZAxis, CartesianGrid, Tooltip, Legend, ResponsiveContainer } from 'recharts'; import { data8, data9 } from './sampleData'; const theme = createMuiTheme(ThemePallete.skyBlueTheme); const color = ({ primary: theme.palette.primary.main, secondary: theme.palette.secondary.main, }); const styles = { chartFluid: { width: '100%', height: 450 } }; function ScatterResponsive(props) { const { classes } = props; return (