| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657 | /* * << * Davinci * == * Copyright (C) 2016 - 2017 EDP * == * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * *      http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. * >> */import line from './line'import bar from './bar'import scatter from './scatter'import pie from './pie'import area from './area'import funnel from './funnel'import map from './map'import radar from './radar'import sankey from './sankey'import parallel from './parallel'import wordCloud from './wordCloud'import waterfall from './waterfall'import doubleYAxis from './doubleYAxis'import gauge from './gauge'import { EChartOption } from 'echarts'import { IChartProps } from '../../components/Chart'export default function (type, chartProps: IChartProps, drillOptions?: any): EChartOption {  switch (type) {    case 'line': return line(chartProps, drillOptions)    // @ts-ignore    case 'bar': return bar(chartProps, drillOptions)    // @ts-ignore    case 'scatter': return scatter(chartProps, drillOptions)    case 'pie': return pie(chartProps, drillOptions)    case 'funnel': return funnel(chartProps, drillOptions)    // case 'area': return area(chartProps)    case 'radar': return radar(chartProps)    case 'sankey': return sankey(chartProps)    case 'parallel': return parallel(chartProps)    case 'map': return map(chartProps)    case 'wordCloud': return wordCloud(chartProps)    case 'waterfall': return waterfall(chartProps)    case 'doubleYAxis': return doubleYAxis(chartProps, drillOptions)    case 'gauge': return gauge(chartProps, drillOptions)  }}
 |