diff options
author | Vladimir Glazounov <vg@openoffice.org> | 2007-05-22 17:35:03 +0000 |
---|---|---|
committer | Vladimir Glazounov <vg@openoffice.org> | 2007-05-22 17:35:03 +0000 |
commit | e38cefe1d5ac21f4f218a827bb6b57c6cb520522 (patch) | |
tree | 8386802e0501a0e6c87d6f855b77459163c5941f /chart2/source/model/main/DataSeriesProperties.hxx | |
parent | 3495e3ccdda9eb9c5284c0099025afae73f87774 (diff) |
INTEGRATION: CWS chart2mst3 (1.1.1.1.4); FILE MERGED
2007/04/20 08:06:44 iha 1.1.1.1.4.11: #i75393# Connect Bars per diagram not per series
2007/04/19 16:07:00 iha 1.1.1.1.4.10: #i76130# write attribute sort-by-x-values per plot-area not per series
2006/08/21 17:02:45 iha 1.1.1.1.4.9: #i46521# replace modal x value sorting dialog by a checkbox in the chartwizard; perform sorting in view only and not in the cached chart data (as there is no cached data in the model anymore)
2005/12/21 21:29:18 iha 1.1.1.1.4.8: remove identifiers from model objects and create an index based CID protocol instead for selection purposes
2005/11/28 15:35:41 bm 1.1.1.1.4.7: BarConnectors implemented the old way (all series at once) but model offers the property ConnectDataPoints for each series independently
2005/10/24 11:06:45 iha 1.1.1.1.4.6: coordinate system restructure
2005/10/07 11:53:44 bm 1.1.1.1.4.5: RESYNC: (1.1.1.1-1.2); FILE MERGED
2005/07/28 09:34:51 bm 1.1.1.1.4.4: usage of color schemes and the VaryColorsByPoint property to have correct pie colors and legend entries
2005/07/14 13:00:23 iha 1.1.1.1.4.3: remove unused parameter 'bIncludeStyleProperties' from series and point properties
2004/09/15 17:32:02 bm 1.1.1.1.4.2: API simplification
2004/02/13 16:51:29 bm 1.1.1.1.4.1: join from changes on branch bm_post_chart01
Diffstat (limited to 'chart2/source/model/main/DataSeriesProperties.hxx')
-rw-r--r-- | chart2/source/model/main/DataSeriesProperties.hxx | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/chart2/source/model/main/DataSeriesProperties.hxx b/chart2/source/model/main/DataSeriesProperties.hxx index 3910bd4007a3..7fac594d1cdd 100644 --- a/chart2/source/model/main/DataSeriesProperties.hxx +++ b/chart2/source/model/main/DataSeriesProperties.hxx @@ -4,9 +4,9 @@ * * $RCSfile: DataSeriesProperties.hxx,v $ * - * $Revision: 1.2 $ + * $Revision: 1.3 $ * - * last change: $Author: rt $ $Date: 2005-09-08 00:57:18 $ + * last change: $Author: vg $ $Date: 2007-05-22 18:35:03 $ * * The Contents of this file are made available subject to * the terms of GNU Lesser General Public License Version 2.1. @@ -52,16 +52,16 @@ class DataSeriesProperties public: enum { - PROP_DATASERIES_DATA_POINT_STYLE = FAST_PROPERTY_ID_START_DATA_SERIES, - PROP_DATASERIES_ATTRIBUTED_DATA_POINTS, - PROP_DATASERIES_IDENTIFIER + PROP_DATASERIES_ATTRIBUTED_DATA_POINTS = FAST_PROPERTY_ID_START_DATA_SERIES, + PROP_DATASERIES_STACKING_DIRECTION, + PROP_DATASERIES_VARY_COLORS_BY_POINT, + PROP_DATASERIES_ATTACHED_AXIS_INDEX }; static void AddPropertiesToVector( - ::std::vector< ::com::sun::star::beans::Property > & rOutProperties, - bool bIncludeStyleProperties = false ); + ::std::vector< ::com::sun::star::beans::Property > & rOutProperties ); - static void AddDefaultsToMap( helper::tPropertyValueMap & rOutMap, bool bIncludeStyleProperties = false ); + static void AddDefaultsToMap( tPropertyValueMap & rOutMap ); private: // not implemented |