123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209 |
- // Import to ensure echarts components are loaded.
- import './components/markPoint';
- import {useTheme} from '@emotion/react';
- import type {GridComponentOption} from 'echarts';
- import set from 'lodash/set';
- import {formatAbbreviatedNumber} from 'sentry/utils/formatters';
- import {BarChart, BarChartProps, BarChartSeries} from './barChart';
- import type BaseChart from './baseChart';
- type ChartProps = React.ComponentProps<typeof BaseChart>;
- interface Props extends Omit<ChartProps, 'css' | 'colors' | 'series' | 'height'> {
- /**
- * Chart height
- */
- height: number;
- /**
- * Colors to use on the chart.
- */
- colors?: string[];
- /**
- * A list of colors to use on hover.
- * By default hover state will shift opacity from 0.6 to 1.0.
- * You can use this prop to also shift colors on hover.
- */
- emphasisColors?: string[];
- /**
- * Override the default grid padding
- */
- grid?: GridComponentOption;
- /**
- * Delay time for hiding tooltip, in ms.
- */
- hideDelay?: number;
- /**
- * Show max/min values on yAxis
- */
- labelYAxisExtents?: boolean;
- series?: BarChartProps['series'];
- /**
- * Whether not we show a MarkLine label
- */
- showMarkLineLabel?: boolean;
- /**
- * Whether not the series should be stacked.
- *
- * Some of our stats endpoints return data where the 'total' series includes
- * breakdown data (issues). For these results `stacked` should be false.
- * Other endpoints return decomposed results that need to be stacked (outcomes).
- */
- stacked?: boolean;
- /**
- * Function to format tooltip values
- */
- tooltipFormatter?: (value: number) => string;
- /**
- * Whether timestamps are should be shown in UTC or local timezone.
- */
- utc?: boolean;
- }
- export function getYAxisMaxFn(height: number) {
- return (value: {max: number; min: number}) => {
- // This keeps small datasets from looking 'scary'
- // by having full bars for < 10 values.
- if (value.max < 10) {
- return 10;
- }
- // Adds extra spacing at the top of the chart canvas, ensuring the series doesn't hit the ceiling, leaving more empty space.
- // When the user hovers over an empty space, a tooltip with all series information is displayed.
- return (value.max * (height + 10)) / height;
- };
- }
- function MiniBarChart({
- emphasisColors,
- series,
- hideDelay,
- tooltipFormatter,
- colors,
- stacked = false,
- labelYAxisExtents = false,
- showMarkLineLabel = false,
- height,
- grid,
- ...props
- }: Props) {
- const {ref: _ref, ...barChartProps} = props;
- const theme = useTheme();
- const colorList = Array.isArray(colors)
- ? colors
- : [theme.gray200, theme.purple300, theme.purple300];
- let chartSeries: BarChartSeries[] = [];
- // Ensure bars overlap and that empty values display as we're disabling the axis lines.
- if (series?.length) {
- chartSeries = series.map((original, i: number) => {
- const updated: BarChartSeries = {
- ...original,
- cursor: 'normal',
- type: 'bar',
- };
- if (i === 0) {
- updated.barMinHeight = 1;
- if (stacked === false) {
- updated.barGap = '-100%';
- }
- }
- if (stacked) {
- updated.stack = 'stack1';
- }
- set(updated, 'itemStyle.color', colorList[i]);
- set(updated, 'itemStyle.opacity', 0.6);
- set(updated, 'emphasis.itemStyle.opacity', 1.0);
- set(updated, 'emphasis.itemStyle.color', emphasisColors?.[i] ?? colorList[i]);
- return updated;
- });
- }
- const yAxisOptions = labelYAxisExtents
- ? {
- showMinLabel: true,
- showMaxLabel: true,
- interval: Infinity,
- axisLabel: {
- formatter(value: number) {
- if (tooltipFormatter) {
- return tooltipFormatter(value);
- }
- return formatAbbreviatedNumber(value);
- },
- },
- }
- : {
- axisLabel: {
- show: false,
- },
- };
- const chartOptions: Omit<BarChartProps, 'series'> = {
- tooltip: {
- trigger: 'axis',
- hideDelay,
- valueFormatter: tooltipFormatter
- ? (value: number) => tooltipFormatter(value)
- : undefined,
- },
- yAxis: {
- max: getYAxisMaxFn(height),
- splitLine: {
- show: false,
- },
- ...yAxisOptions,
- },
- grid: grid ?? {
- // Offset to ensure there is room for the marker symbols at the
- // default size.
- top: labelYAxisExtents || showMarkLineLabel ? 6 : 0,
- bottom: labelYAxisExtents || showMarkLineLabel ? 4 : 0,
- left: showMarkLineLabel ? 35 : 4,
- right: 0,
- },
- xAxis: {
- axisLine: {
- show: false,
- },
- axisTick: {
- show: false,
- alignWithLabel: true,
- },
- axisLabel: {
- show: false,
- },
- axisPointer: {
- type: 'line' as const,
- label: {
- show: false,
- },
- lineStyle: {
- width: 0,
- },
- },
- },
- options: {
- animation: false,
- },
- };
- return (
- <BarChart series={chartSeries} height={height} {...chartOptions} {...barChartProps} />
- );
- }
- export default MiniBarChart;
|