1234567891011121314151617181920212223242526272829303132333435363738394041 |
- import {useTheme} from '@emotion/react';
- import {AreaChart} from 'sentry/components/charts/areaChart';
- import {axisLabelFormatter} from 'sentry/utils/discover/charts';
- import {getDuration} from 'sentry/utils/formatters';
- type Props = React.ComponentPropsWithoutRef<typeof AreaChart>;
- function Chart(props: Props) {
- const theme = useTheme();
- return (
- <AreaChart
- grid={{left: '10px', right: '10px', top: '40px', bottom: '0px'}}
- xAxis={{
- type: 'category' as const,
- truncate: true,
- axisLabel: {
- showMinLabel: true,
- showMaxLabel: true,
- },
- axisTick: {
- interval: 0,
- alignWithLabel: true,
- },
- }}
- yAxis={{
- type: 'value' as const,
- axisLabel: {
- color: theme.chartLabel,
- // Use p50() to force time formatting.
- formatter: (value: number) => axisLabelFormatter(value, 'p50()'),
- },
- }}
- tooltip={{valueFormatter: value => getDuration(value / 1000, 2)}}
- {...props}
- />
- );
- }
- export default Chart;
|