Line data Source code
1 : /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2 : /*
3 : * This file is part of the LibreOffice project.
4 : *
5 : * This Source Code Form is subject to the terms of the Mozilla Public
6 : * License, v. 2.0. If a copy of the MPL was not distributed with this
7 : * file, You can obtain one at http://mozilla.org/MPL/2.0/.
8 : *
9 : * This file incorporates work covered by the following license notice:
10 : *
11 : * Licensed to the Apache Software Foundation (ASF) under one or more
12 : * contributor license agreements. See the NOTICE file distributed
13 : * with this work for additional information regarding copyright
14 : * ownership. The ASF licenses this file to you under the Apache
15 : * License, Version 2.0 (the "License"); you may not use this file
16 : * except in compliance with the License. You may obtain a copy of
17 : * the License at http://www.apache.org/licenses/LICENSE-2.0 .
18 : */
19 :
20 : #include "oox/drawingml/chart/seriesmodel.hxx"
21 :
22 : namespace oox {
23 : namespace drawingml {
24 : namespace chart {
25 :
26 :
27 :
28 0 : DataLabelModelBase::DataLabelModelBase() :
29 0 : mbDeleted( false )
30 : {
31 0 : }
32 :
33 0 : DataLabelModelBase::~DataLabelModelBase()
34 : {
35 0 : }
36 :
37 :
38 :
39 0 : DataLabelModel::DataLabelModel() :
40 0 : mnIndex( -1 )
41 : {
42 0 : }
43 :
44 0 : DataLabelModel::~DataLabelModel()
45 : {
46 0 : }
47 :
48 :
49 :
50 0 : DataLabelsModel::DataLabelsModel() :
51 0 : mbShowLeaderLines( false )
52 : {
53 0 : }
54 :
55 0 : DataLabelsModel::~DataLabelsModel()
56 : {
57 0 : }
58 :
59 :
60 :
61 0 : PictureOptionsModel::PictureOptionsModel() :
62 : mfStackUnit( 1.0 ),
63 : mnPictureFormat( XML_stretch ),
64 : mbApplyToFront( false ),
65 : mbApplyToSides( false ),
66 0 : mbApplyToEnd( false )
67 : {
68 0 : }
69 :
70 0 : PictureOptionsModel::~PictureOptionsModel()
71 : {
72 0 : }
73 :
74 :
75 :
76 0 : ErrorBarModel::ErrorBarModel() :
77 : mfValue( 0.0 ),
78 : mnDirection( XML_y ),
79 : mnTypeId( XML_both ),
80 : mnValueType( XML_fixedVal ),
81 0 : mbNoEndCap( false )
82 : {
83 0 : }
84 :
85 0 : ErrorBarModel::~ErrorBarModel()
86 : {
87 0 : }
88 :
89 :
90 :
91 0 : TrendlineLabelModel::TrendlineLabelModel()
92 : {
93 0 : }
94 :
95 0 : TrendlineLabelModel::~TrendlineLabelModel()
96 : {
97 0 : }
98 :
99 :
100 :
101 0 : TrendlineModel::TrendlineModel() :
102 : mnOrder( 2 ),
103 : mnPeriod( 2 ),
104 : mnTypeId( XML_linear ),
105 : mbDispEquation( false ),
106 0 : mbDispRSquared( false )
107 : {
108 0 : }
109 :
110 0 : TrendlineModel::~TrendlineModel()
111 : {
112 0 : }
113 :
114 :
115 :
116 0 : DataPointModel::DataPointModel() :
117 : mnIndex( -1 ),
118 0 : mbInvertNeg( false )
119 : {
120 0 : }
121 :
122 0 : DataPointModel::~DataPointModel()
123 : {
124 0 : }
125 :
126 :
127 :
128 0 : SeriesModel::SeriesModel() :
129 : mnExplosion( 0 ),
130 : mnIndex( -1 ),
131 : mnMarkerSize( 5 ),
132 : mnMarkerSymbol( XML_auto ),
133 : mnOrder( -1 ),
134 : mbBubble3d( false ),
135 : mbInvertNeg( false ),
136 0 : mbSmooth( false )
137 : {
138 0 : }
139 :
140 0 : SeriesModel::~SeriesModel()
141 : {
142 0 : }
143 :
144 :
145 :
146 : } // namespace chart
147 : } // namespace drawingml
148 0 : } // namespace oox
149 :
150 : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|