makit/LegendPosition.ENUM.js

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.LegendPosition.
7       jQuery.sap.declare("sap.apb.makit.LegendPosition");
8       
9       /**
10       * @class Enumeration for legend position.
11       *
12       * @version 1.0
13       * @static
14       * @public
15       */
16      sap.apb.makit.LegendPosition = {
17        
18          /**
19           * Legend location is on the top of the chart 
20           * @public
21           */
22          Top : "Top",
23      
24          /**
25           * Legend location is on the left of the chart 
26           * @public
27           */
28          Left : "Left",
29      
30          /**
31           * Legend location is on the bottom of the chart 
32           * @public
33           */
34          Bottom : "Bottom",
35      
36          /**
37           * Legend location is on the right of the chart 
38           * @public
39           */
40          Right : "Right",
41      
42          /**
43           * Hide the legend 
44           * @public
45           */
46          None : "None"
47      
48        };
49        
50