Hello,
Inside this link the update and the registered of plugins not work :
-PanelProps | Grafana Labs
-PanelEditorProps | Grafana Labs
Where is possible have an example with plugin type panel with a editor , a module.ts and types.ts which works on Grafana 7.3?
Best Regards.
Are you trying to build a custom options editor? What errors are you getting?
Here,
the file module.ts with my customeditor:
export const plugin = new PanelPlugin<SimpleOptions>(SimplePanel).setPanelOptions((builder) => {
builder
.addCustomEditor({
id: ‘sizeField’,
path: ‘sizeField’,
name: ‘Size’,
description: ‘Field to use for size. Defaults to the first numeric field.’,
editor: SimpleEditor,
category: [‘Dimensions’],
settings: { },
})
But the problem i don’ t retrieve the different properties in the interface in the files types.ts in interface SimpleOptions here?
system
Closed
4
This topic was automatically closed 365 days after the last reply. New replies are no longer allowed.