123456789101112131415161718192021222324252627282930313233 |
- import type {Series} from 'sentry/types/echarts';
- import {AVG_COLOR} from 'sentry/views/insights/colors';
- import Chart, {ChartType} from 'sentry/views/insights/common/components/chart';
- import ChartPanel from 'sentry/views/insights/common/components/chartPanel';
- import {getDurationChartTitle} from 'sentry/views/insights/common/views/spans/types';
- import {CHART_HEIGHT} from 'sentry/views/insights/database/settings';
- interface Props {
- isLoading: boolean;
- series: Series[];
- error?: Error | null;
- }
- export function DurationChart({series, isLoading, error}: Props) {
- return (
- <ChartPanel title={getDurationChartTitle('db')}>
- <Chart
- height={CHART_HEIGHT}
- grid={{
- left: '0',
- right: '0',
- top: '8px',
- bottom: '0',
- }}
- data={series}
- loading={isLoading}
- error={error}
- chartColors={[AVG_COLOR]}
- type={ChartType.LINE}
- />
- </ChartPanel>
- );
- }
|