1 /* ----------------------------------------------------------------------------------
2 * Hint: This is a derived (generated) file. Changes should be done in the underlying
3 * source files only (*.type, *.js) or they will be lost after the next generation.
4 * ---------------------------------------------------------------------------------- */
5
6 // Provides enumeration sap.apb.makit.ChartType.
7 jQuery.sap.declare("sap.apb.makit.ChartType");
8
9 /**
10 * @class Enumeration for chart type
11 *
12 * @version 1.0
13 * @static
14 * @public
15 * @since 1.0
16 */
17 sap.apb.makit.ChartType = {
18
19 /**
20 * Column chart
21 * @public
22 */
23 Column : "Column",
24
25 /**
26 * Line chart
27 * @public
28 */
29 Line : "Line",
30
31 /**
32 * Bubble chart
33 * @public
34 */
35 Bubble : "Bubble",
36
37 /**
38 * Horizontal table bar chart
39 * @public
40 */
41 Bar : "Bar",
42
43 /**
44 * Pie chart
45 * @public
46 */
47 Pie : "Pie"
48
49 };
50
51