1/**************************************************************
2 *
3 * Licensed to the Apache Software Foundation (ASF) under one
4 * or more contributor license agreements.  See the NOTICE file
5 * distributed with this work for additional information
6 * regarding copyright ownership.  The ASF licenses this file
7 * to you under the Apache License, Version 2.0 (the
8 * "License"); you may not use this file except in compliance
9 * with the License.  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,
14 * software distributed under the License is distributed on an
15 * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
16 * KIND, either express or implied.  See the License for the
17 * specific language governing permissions and limitations
18 * under the License.
19 *
20 *************************************************************/
21
22module ooo { module vba { module excel {
23    constants XlChartType {
24        const long xl3DArea = -4098;
25        const long xl3DAreaStacked = 78;
26        const long xl3DAreaStacked100 = 79;
27        const long xl3DBarClustered = 60;
28        const long xl3DBarStacked = 61;
29        const long xl3DBarStacked100 = 62;
30        const long xl3DColumn = -4100;
31        const long xl3DColumnClustered = 54;
32        const long xl3DColumnStacked = 55;
33        const long xl3DColumnStacked100 = 56;
34        const long xl3DLine = -4101;
35        const long xl3DPie = -4102;
36        const long xl3DPieExploded = 70;
37        const long xlArea = 1;
38        const long xlAreaStacked = 76;
39        const long xlAreaStacked100 = 77;
40        const long xlBarClustered = 57;
41        const long xlBarOfPie = 71;
42        const long xlBarStacked = 58;
43        const long xlBarStacked100 = 59;
44        const long xlBubble = 15;
45        const long xlBubble3DEffect = 87;
46        const long xlColumnClustered = 51;
47        const long xlColumnStacked = 52;
48        const long xlColumnStacked100 = 53;
49        const long xlConeBarClustered = 102;
50        const long xlConeBarStacked = 103;
51        const long xlConeBarStacked100 = 104;
52        const long xlConeCol = 105;
53        const long xlConeColClustered = 99;
54        const long xlConeColStacked = 100;
55        const long xlConeColStacked100 = 101;
56        const long xlCylinderBarClustered = 95;
57        const long xlCylinderBarStacked = 96;
58        const long xlCylinderBarStacked100 = 97;
59        const long xlCylinderCol = 98;
60        const long xlCylinderColClustered = 92;
61        const long xlCylinderColStacked = 93;
62        const long xlCylinderColStacked100 = 94;
63        const long xlDoughnut = -4120;
64        const long xlDoughnutExploded = 80;
65        const long xlLine = 4;
66        const long xlLineMarkers = 65;
67        const long xlLineMarkersStacked = 66;
68        const long xlLineMarkersStacked100 = 67;
69        const long xlLineStacked = 63;
70        const long xlLineStacked100 = 64;
71        const long xlPie = 5;
72        const long xlPieExploded = 69;
73        const long xlPieOfPie = 68;
74        const long xlPyramidBarClustered = 109;
75        const long xlPyramidBarStacked = 110;
76        const long xlPyramidBarStacked100 = 111;
77        const long xlPyramidCol = 112;
78        const long xlPyramidColClustered = 106;
79        const long xlPyramidColStacked = 107;
80        const long xlPyramidColStacked100 = 108;
81        const long xlRadar = -4151;
82        const long xlRadarFilled = 82;
83        const long xlRadarMarkers = 81;
84        const long xlStockHLC = 88;
85        const long xlStockOHLC = 89;
86        const long xlStockVHLC = 90;
87        const long xlStockVOHLC = 91;
88        const long xlSurface = 83;
89        const long xlSurfaceTopView = 85;
90        const long xlSurfaceTopViewWireframe = 86;
91        const long xlSurfaceWireframe = 84;
92        const long xlXYScatter = -4169;
93        const long xlXYScatterLines = 74;
94        const long xlXYScatterLinesNoMarkers = 75;
95        const long xlXYScatterSmooth = 72;
96        const long xlXYScatterSmoothNoMarkers = 73;
97    };
98}; }; };
99