1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
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"
26 // ============================================================================
28 DataLabelModelBase::DataLabelModelBase() :
33 DataLabelModelBase::~DataLabelModelBase()
37 // ============================================================================
39 DataLabelModel::DataLabelModel() :
44 DataLabelModel::~DataLabelModel()
48 // ============================================================================
50 DataLabelsModel::DataLabelsModel() :
51 mbShowLeaderLines( false )
55 DataLabelsModel::~DataLabelsModel()
59 // ============================================================================
61 PictureOptionsModel::PictureOptionsModel() :
63 mnPictureFormat( XML_stretch
),
64 mbApplyToFront( false ),
65 mbApplyToSides( false ),
70 PictureOptionsModel::~PictureOptionsModel()
74 // ============================================================================
76 ErrorBarModel::ErrorBarModel() :
80 mnValueType( XML_fixedVal
),
85 ErrorBarModel::~ErrorBarModel()
89 // ============================================================================
91 TrendlineLabelModel::TrendlineLabelModel()
95 TrendlineLabelModel::~TrendlineLabelModel()
99 // ============================================================================
101 TrendlineModel::TrendlineModel() :
104 mnTypeId( XML_linear
),
105 mbDispEquation( false ),
106 mbDispRSquared( false )
110 TrendlineModel::~TrendlineModel()
114 // ============================================================================
116 DataPointModel::DataPointModel() :
122 DataPointModel::~DataPointModel()
126 // ============================================================================
128 SeriesModel::SeriesModel() :
132 mnMarkerSymbol( XML_auto
),
135 mbInvertNeg( false ),
140 SeriesModel::~SeriesModel()
144 // ============================================================================
147 } // namespace drawingml
150 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */