import { PanelPlugin } from '@grafana/data'; import { DrawStyle, GraphFieldConfig } from '@grafana/ui'; import { XYChartPanel } from './XYChartPanel'; import { Options } from './types'; import { XYDimsEditor } from './XYDimsEditor'; import { getGraphFieldConfig, defaultGraphConfig, addLegendOptions } from '../timeseries/config'; export const plugin = new PanelPlugin(XYChartPanel) .useFieldConfig( getGraphFieldConfig({ ...defaultGraphConfig, drawStyle: DrawStyle.Points, }) ) .setPanelOptions((builder) => { builder .addCustomEditor({ id: 'xyPlotConfig', path: 'dims', name: 'Data', editor: XYDimsEditor, }) .addRadio({ path: 'tooltipOptions.mode', name: 'Tooltip mode', description: '', defaultValue: 'single', settings: { options: [ { value: 'single', label: 'Single' }, { value: 'multi', label: 'All' }, { value: 'none', label: 'Hidden' }, ], }, }); addLegendOptions(builder); });