import { ChartPie } from '@patternfly/react-charts/victory'; interface PetData { x?: string; y?: number; name?: string; } export const ChartPieBasicRightLegend: React.FunctionComponent = () => { const data: PetData[] = [ { x: 'Cats', y: 35 }, { x: 'Dogs', y: 55 }, { x: 'Birds', y: 10 } ]; const legendData: PetData[] = [{ name: 'Cats: 35' }, { name: 'Dogs: 55' }, { name: 'Birds: 10' }]; return (
`${datum.x}: ${datum.y}`} legendData={legendData} legendOrientation="vertical" legendPosition="right" name="chart1" padding={{ bottom: 20, left: 20, right: 140, // Adjusted to accommodate legend top: 20 }} width={350} />
); };