IT-KIMI_SHI\SINOIT.KIMI
2018-12-07 50eb1d766c470dc6ff927199eaee934f972a8b70
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
/*************************************************************************
 * Copyright (C) Unpublished JiuDaoTech Software, Inc. All rights reserved.
 * JiuDaoTech Software, Inc., Confidential and Proprietary.
 * <p>
 * This software is subject to copyright protection
 * under the laws of the Public of China and other countries.
 * <p>
 * Unless otherwise explicitly stated, this software is provided
 * by JiuDaoTech "AS IS".
 *************************************************************************/
package service.chart;
 
import com.github.abel533.echarts.Option;
import model.chart.ChartBuilderParams;
 
/**
 * 图表构建接口
 *
 * @author CSJ
 */
public interface ChartOption {
 
    /**
     * 转换图表配置参数
     *
     * @param chartBuilderParams
     * @return
     */
    Option transform(ChartBuilderParams chartBuilderParams) throws Exception;
 
}