RadialGauge: (#111841)
* Radial gauge * Update * Update * Update * Updated * Progress * Spotlight * Glow * More effects * Update * Update * Update * Update * Fix overflow * Progress * Progress * Barwidth factor * Update * segmemnted * Update * Update * Update * Display processor * Progress * Updated * Update * rounded bars option * added option for rounded * Fixed gauge shape and segments * Updated text and sparkline placmeent * progress * New spotlight effect is working * refactorings * Update * hue working in gauge mode * Update * Update * Progress * Refactorings and sizing improvements * Refactorings * Progress * Unify arc path * Thresholdsbar * Update * Progress * Update * Close to mergable * Unit tests * Update * Update * Fix * Update * update * simple test * Fix * Minor tweak * added icon to shape * Progress on color simplification * progress on new color system * Simplify color gradient modes around a single auto mode * Progress on text sizing * Fixes * Update * Update * Hook up manual font size * Restore old behavior in old panel
This commit is contained in:
@@ -278,6 +278,16 @@ func GetComposableKinds() ([]ComposableKind, error) {
|
||||
CueFile: piechartCue,
|
||||
})
|
||||
|
||||
radialbarCue, err := loadCueFileWithCommon(root, filepath.Join(root, "./public/app/plugins/panel/radialbar/panelcfg.cue"))
|
||||
if err != nil {
|
||||
return nil, err
|
||||
}
|
||||
kinds = append(kinds, ComposableKind{
|
||||
Name: "radialbar",
|
||||
Filename: "panelcfg.cue",
|
||||
CueFile: radialbarCue,
|
||||
})
|
||||
|
||||
statCue, err := loadCueFileWithCommon(root, filepath.Join(root, "./public/app/plugins/panel/stat/panelcfg.cue"))
|
||||
if err != nil {
|
||||
return nil, err
|
||||
|
||||
@@ -241,6 +241,7 @@ func verifyCorePluginCatalogue(t *testing.T, ctx context.Context, ps *pluginstor
|
||||
"welcome": {},
|
||||
"xychart": {},
|
||||
"datagrid": {},
|
||||
"radialbar": {},
|
||||
}
|
||||
|
||||
expDataSources := map[string]struct{}{
|
||||
|
||||
Reference in New Issue
Block a user