index.tsx 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  1. /*
  2. * <<
  3. * Davinci
  4. * ==
  5. * Copyright (C) 2016 - 2017 EDP
  6. * ==
  7. * Licensed under the Apache License, Version 2.0 (the "License");
  8. * you may not use this file except in compliance with the License.
  9. * You may obtain a copy of the License at
  10. *
  11. * http://www.apache.org/licenses/LICENSE-2.0
  12. *
  13. * Unless required by applicable law or agreed to in writing, software
  14. * distributed under the License is distributed on an "AS IS" BASIS,
  15. * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  16. * See the License for the specific language governing permissions and
  17. * limitations under the License.
  18. * >>
  19. */
  20. import { IChartInfo } from 'containers/Widget/components/Widget'
  21. import table from './table'
  22. import line from './line'
  23. import bar from './bar'
  24. import scatter from './scatter'
  25. import pie from './pie'
  26. import funnel from './funnel'
  27. import radar from './radar'
  28. import sankey from './sankey'
  29. import parallel from './parallel'
  30. import map from './map'
  31. import wordCloud from './wordCloud'
  32. import waterfall from './waterfall'
  33. import scorecard from './scorecard'
  34. import gauge from './gauge'
  35. import iframe from './iframe'
  36. import richText from './richText'
  37. import doubleYAxis from './doubleYAxis'
  38. const widgetlibs: IChartInfo[] = [
  39. table,
  40. scorecard,
  41. line,
  42. bar,
  43. scatter,
  44. pie,
  45. funnel,
  46. radar,
  47. sankey,
  48. parallel,
  49. map,
  50. wordCloud,
  51. waterfall,
  52. iframe,
  53. richText,
  54. doubleYAxis,
  55. gauge
  56. ]
  57. export default widgetlibs