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 XlChartItem {
24        const long xlAxis = 21;
25        const long xlAxisTitle = 17;
26        const long xlChartArea = 2;
27        const long xlChartTitle = 4;
28        const long xlCorners = 6;
29        const long xlDataLabel = 0;
30        const long xlDataTable = 7;
31        const long xlDisplayUnitLabel = 30;
32        const long xlDownBars = 20;
33        const long xlDropLines = 26;
34        const long xlErrorBars = 9;
35        const long xlFloor = 23;
36        const long xlHiLoLines = 25;
37        const long xlLeaderLines = 29;
38        const long xlLegend = 24;
39        const long xlLegendEntry = 12;
40        const long xlLegendKey = 13;
41        const long xlMajorGridlines = 15;
42        const long xlMinorGridlines = 16;
43        const long xlNothing = 28;
44        const long xlPivotChartDropZone = 32;
45        const long xlPivotChartFieldButton = 31;
46        const long xlPlotArea = 19;
47        const long xlRadarAxisLabels = 27;
48        const long xlSeries = 3;
49        const long xlSeriesLines = 22;
50        const long xlShape = 14;
51        const long xlTrendline = 8;
52        const long xlUpBars = 18;
53        const long xlWalls = 5;
54        const long xlXErrorBars = 10;
55        const long xlYErrorBars = 11;
56    };
57}; }; };
58