// Libraries import React, { PureComponent } from 'react'; // Components import { Switch, PanelOptionsGroup } from '@grafana/ui'; // Types import { FormField, PanelEditorProps } from '@grafana/ui'; import { GaugeOptions } from './types'; export class GaugeOptionsBox extends PureComponent> { labelWidth = 8; onToggleThresholdLabels = () => this.props.onOptionsChange({ ...this.props.options, showThresholdLabels: !this.props.options.showThresholdLabels }); onToggleThresholdMarkers = () => this.props.onOptionsChange({ ...this.props.options, showThresholdMarkers: !this.props.options.showThresholdMarkers, }); onMinValueChange = ({ target }) => this.props.onOptionsChange({ ...this.props.options, minValue: target.value }); onMaxValueChange = ({ target }) => this.props.onOptionsChange({ ...this.props.options, maxValue: target.value }); render() { const { options } = this.props; const { maxValue, minValue, showThresholdLabels, showThresholdMarkers } = options; return ( ); } }