diff options
author | Rüdiger Timm <rt@openoffice.org> | 2008-07-30 10:54:58 +0000 |
---|---|---|
committer | Rüdiger Timm <rt@openoffice.org> | 2008-07-30 10:54:58 +0000 |
commit | 2649239416c939259ec3b015acfd47c01e273b69 (patch) | |
tree | 71ee27e964220b93254506e5116da44ab48d9244 | |
parent | ae39c2194d989583ca294299911054fcf3225061 (diff) |
INTEGRATION: CWS chart22 (1.21.2); FILE MERGED
2008/06/10 11:12:21 iha 1.21.2.3: RESYNC: (1.22-1.24); FILE MERGED
2008/04/17 11:30:43 iha 1.21.2.2: RESYNC: (1.21-1.22); FILE MERGED
2008/02/21 16:53:21 iha 1.21.2.1: #i65549# Plotting of missing values
-rw-r--r-- | chart2/source/model/main/Diagram.cxx | 12 |
1 files changed, 10 insertions, 2 deletions
diff --git a/chart2/source/model/main/Diagram.cxx b/chart2/source/model/main/Diagram.cxx index 5839969dd645..3d2ae5875ed9 100644 --- a/chart2/source/model/main/Diagram.cxx +++ b/chart2/source/model/main/Diagram.cxx @@ -8,7 +8,7 @@ * * $RCSfile: Diagram.cxx,v $ * - * $Revision: 1.24 $ + * $Revision: 1.25 $ * * This file is part of OpenOffice.org. * @@ -83,7 +83,8 @@ enum PROP_DIAGRAM_RIGHT_ANGLED_AXES, PROP_DIAGRAM_PERSPECTIVE, PROP_DIAGRAM_ROTATION_HORIZONTAL, - PROP_DIAGRAM_ROTATION_VERTICAL + PROP_DIAGRAM_ROTATION_VERTICAL, + PROP_DIAGRAM_MISSING_VALUE_TREATMENT }; void lcl_AddPropertiesToVector( @@ -155,6 +156,13 @@ void lcl_AddPropertiesToVector( PROP_DIAGRAM_ROTATION_VERTICAL, ::getCppuType( reinterpret_cast< const sal_Int32 * >(0)), beans::PropertyAttribute::MAYBEVOID )); + + rOutProperties.push_back( + Property( C2U( "MissingValueTreatment" ), + PROP_DIAGRAM_MISSING_VALUE_TREATMENT, + ::getCppuType( reinterpret_cast< const sal_Int32 * >(0)), + beans::PropertyAttribute::BOUND + | beans::PropertyAttribute::MAYBEVOID )); } void lcl_AddDefaultsToMap( |