diff --git a/src/components/Panel.tsx b/src/components/Panel.tsx index 6bf5f7b..8508b51 100644 --- a/src/components/Panel.tsx +++ b/src/components/Panel.tsx @@ -11,6 +11,8 @@ import { ChartwerkGaugePod } from '@chartwerk/gauge-pod'; import { ChartwerkBarPod } from '@chartwerk/bar-pod'; import { PanelData, TimeRange, PanelProps } from '@grafana/data'; +import { VizLegend } from '@grafana/ui'; +import { LegendDisplayMode } from '@grafana/schema'; import React, { useRef } from 'react'; import { css } from 'emotion'; @@ -52,17 +54,27 @@ export function Panel({ options, data, width, height, timeRange, onChangeTimeRan } window.open(options.gauge.link, '_self'); }; - + const legendItems = [ + { label: 'metric1', yAxis: 100, color: 'red' }, + { label: 'metric2', yAxis: 200, color: 'green' }, + ]; return ( -
+