stackedAreaChart.tsx 366 B

123456789101112
  1. import {Component} from 'react';
  2. import type {AreaChartProps} from 'sentry/components/charts/areaChart';
  3. import {AreaChart} from 'sentry/components/charts/areaChart';
  4. class StackedAreaChart extends Component<AreaChartProps> {
  5. render() {
  6. return <AreaChart tooltip={{filter: val => val > 0}} {...this.props} stacked />;
  7. }
  8. }
  9. export default StackedAreaChart;