import React from 'react'; import { NoContent } from 'UI'; import { Styles, AvgLabel } from '../../common'; import { AreaChart, Area, BarChart, Bar, CartesianGrid, Tooltip, LineChart, Line, Legend, ResponsiveContainer, XAxis, YAxis } from 'recharts'; import { NO_METRIC_DATA } from 'App/constants/messages' interface Props { data: any metric?: any } function FPS(props: Props) { const { data, metric } = props; const gradientDef = Styles.gradientDef(); return ( <>
{gradientDef} Styles.tickFormatter(val)} label={{ ...Styles.axisLabelLeft, value: "Frames Per Second" }} />
); } export default FPS;