update credits
[LibreOffice.git] / oox / source / drawingml / chart / seriesmodel.cxx
blob4466d97da22b1e76cc7837505acf0b434bddc096
1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2 /*
3 * This file is part of the LibreOffice project.
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/.
9 * This file incorporates work covered by the following license notice:
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 .
20 #include "oox/drawingml/chart/seriesmodel.hxx"
22 namespace oox {
23 namespace drawingml {
24 namespace chart {
26 // ============================================================================
28 DataLabelModelBase::DataLabelModelBase() :
29 mbDeleted( false )
33 DataLabelModelBase::~DataLabelModelBase()
37 // ============================================================================
39 DataLabelModel::DataLabelModel() :
40 mnIndex( -1 )
44 DataLabelModel::~DataLabelModel()
48 // ============================================================================
50 DataLabelsModel::DataLabelsModel() :
51 mbShowLeaderLines( false )
55 DataLabelsModel::~DataLabelsModel()
59 // ============================================================================
61 PictureOptionsModel::PictureOptionsModel() :
62 mfStackUnit( 1.0 ),
63 mnPictureFormat( XML_stretch ),
64 mbApplyToFront( false ),
65 mbApplyToSides( false ),
66 mbApplyToEnd( false )
70 PictureOptionsModel::~PictureOptionsModel()
74 // ============================================================================
76 ErrorBarModel::ErrorBarModel() :
77 mfValue( 0.0 ),
78 mnDirection( XML_y ),
79 mnTypeId( XML_both ),
80 mnValueType( XML_fixedVal ),
81 mbNoEndCap( false )
85 ErrorBarModel::~ErrorBarModel()
89 // ============================================================================
91 TrendlineLabelModel::TrendlineLabelModel()
95 TrendlineLabelModel::~TrendlineLabelModel()
99 // ============================================================================
101 TrendlineModel::TrendlineModel() :
102 mnOrder( 2 ),
103 mnPeriod( 2 ),
104 mnTypeId( XML_linear ),
105 mbDispEquation( false ),
106 mbDispRSquared( false )
110 TrendlineModel::~TrendlineModel()
114 // ============================================================================
116 DataPointModel::DataPointModel() :
117 mnIndex( -1 ),
118 mbInvertNeg( false )
122 DataPointModel::~DataPointModel()
126 // ============================================================================
128 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 mbSmooth( false )
140 SeriesModel::~SeriesModel()
144 // ============================================================================
146 } // namespace chart
147 } // namespace drawingml
148 } // namespace oox
150 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */