Add piechart to builtInPlugins

This commit is contained in:
corpglory-dev
2019-02-19 20:24:50 +03:00
parent eaf60d3eb8
commit a053fb5908
@@ -26,6 +26,7 @@ import * as tablePanel from 'app/plugins/panel/table/module';
import * as singlestatPanel from 'app/plugins/panel/singlestat/module';
import * as gettingStartedPanel from 'app/plugins/panel/gettingstarted/module';
import * as gaugePanel from 'app/plugins/panel/gauge/module';
import * as piechartPanel from 'app/plugins/panel/piechart/module';
const builtInPlugins = {
'app/plugins/datasource/graphite/module': graphitePlugin,
@@ -56,6 +57,7 @@ const builtInPlugins = {
'app/plugins/panel/singlestat/module': singlestatPanel,
'app/plugins/panel/gettingstarted/module': gettingStartedPanel,
'app/plugins/panel/gauge/module': gaugePanel,
'app/plugins/panel/piechart/module': piechartPanel,
};
export default builtInPlugins;