diff options
author | Nikhil Walvekar <nikhil.walvekar@synerzip.com> | 2013-12-12 17:47:55 +0530 |
---|---|---|
committer | Markus Mohrhard <markus.mohrhard@googlemail.com> | 2013-12-19 03:55:05 +0100 |
commit | ba76bf5c7b705d3f5e8d807346a34d9da34127d3 (patch) | |
tree | a9508935c79156952509169b6509f6467a0eff23 /include/oox/drawingml/chart/plotareamodel.hxx | |
parent | 20bb1e6854c42df50536238414d93993ad764999 (diff) |
fdo#72304 Added properties to store Chart data table information, during import.
Change-Id: I77c458828b86bc31fae533e2e632d57237e44e6f
Diffstat (limited to 'include/oox/drawingml/chart/plotareamodel.hxx')
-rw-r--r-- | include/oox/drawingml/chart/plotareamodel.hxx | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/include/oox/drawingml/chart/plotareamodel.hxx b/include/oox/drawingml/chart/plotareamodel.hxx index 262bf19df922..7852ba868278 100644 --- a/include/oox/drawingml/chart/plotareamodel.hxx +++ b/include/oox/drawingml/chart/plotareamodel.hxx @@ -60,17 +60,30 @@ struct WallFloorModel // ============================================================================ +struct DataTableModel +{ + bool mbShowHBorder; /// Show Horizontal Border + bool mbShowVBorder; /// Show Verticle Border + bool mbShowOutline; /// Show outline + explicit DataTableModel(); + ~DataTableModel(); +}; + +// ============================================================================ + struct PlotAreaModel { typedef ModelVector< TypeGroupModel > TypeGroupVector; typedef ModelVector< AxisModel > AxisVector; typedef ModelRef< Shape > ShapeRef; typedef ModelRef< LayoutModel > LayoutRef; + typedef ModelRef< DataTableModel > DataTableRef; TypeGroupVector maTypeGroups; /// All chart type groups contained in the chart. AxisVector maAxes; /// All axes contained in the chart. ShapeRef mxShapeProp; /// Plot area frame formatting. LayoutRef mxLayout; /// Layout/position of the plot area. + DataTableRef mxDataTable; /// Data table of the plot area. explicit PlotAreaModel(); ~PlotAreaModel(); |