Alpha panel: new Timeline/Discrete panel (#31973)

This commit is contained in:
Leon Sorokin
2021-04-06 18:06:46 -05:00
committed by GitHub
parent ea202513cd
commit 6082a9360e
15 changed files with 1389 additions and 5 deletions

View File

@@ -40,6 +40,7 @@ const tempoPlugin = async () =>
import * as textPanel from 'app/plugins/panel/text/module';
import * as timeseriesPanel from 'app/plugins/panel/timeseries/module';
import * as timelinePanel from 'app/plugins/panel/timeline/module';
import * as graphPanel from 'app/plugins/panel/graph/module';
import * as xyChartPanel from 'app/plugins/panel/xychart/module';
import * as dashListPanel from 'app/plugins/panel/dashlist/module';
@@ -86,6 +87,7 @@ const builtInPlugins: any = {
'app/plugins/panel/text/module': textPanel,
'app/plugins/panel/timeseries/module': timeseriesPanel,
'app/plugins/panel/timeline/module': timelinePanel,
'app/plugins/panel/graph/module': graphPanel,
'app/plugins/panel/xychart/module': xyChartPanel,
'app/plugins/panel/dashlist/module': dashListPanel,