| 123456789101112131415161718192021222324252627282930313233343536373839 |
- // Libraries
- import _ from 'lodash';
- import React, { PureComponent } from 'react';
- import colors from 'app/core/utils/colors';
- // Components & Types
- import { Graph, PanelProps, NullValueMode, processTimeSeries } from '@grafana/ui';
- import { Options } from './types';
- interface Props extends PanelProps<Options> {}
- export class GraphPanel extends PureComponent<Props> {
- constructor(props) {
- super(props);
- }
- render() {
- const { timeSeries, timeRange, width, height } = this.props;
- const { showLines, showBars, showPoints } = this.props.options;
- const vmSeries = processTimeSeries({
- timeSeries: timeSeries,
- nullValueMode: NullValueMode.Ignore,
- colorPalette: colors,
- });
- return (
- <Graph
- timeSeries={vmSeries}
- timeRange={timeRange}
- showLines={showLines}
- showPoints={showPoints}
- showBars={showBars}
- width={width}
- height={height}
- />
- );
- }
- }
|