summaryrefslogtreecommitdiff
path: root/chart2/source/view/axes/VCartesianCoordinateSystem.hxx
diff options
context:
space:
mode:
authorTomaž Vajngerl <tomaz.vajngerl@collabora.co.uk>2022-05-06 16:04:47 +0900
committerTomaž Vajngerl <quikee@gmail.com>2022-07-17 09:19:11 +0200
commit53c71a0fa29b98d997ced6c9684c627442cfff94 (patch)
tree49b74f0c66f99e71cc206b5177c87ae76e4b8cc0 /chart2/source/view/axes/VCartesianCoordinateSystem.hxx
parent3c8e81669f2311dd35aa6787cbf3e5a6a0520433 (diff)
chart2: add initial code for rendering the Data Table
Create a (svx) table with the data from the chart and place it below the x-axis line. Data table rendering is disabled in the code until the data table properties are available. Change-Id: I07d282c0b5e8df6b843516c8bdad538862d6575e Reviewed-on: https://gerrit.libreoffice.org/c/core/+/136788 Tested-by: Tomaž Vajngerl <quikee@gmail.com> Reviewed-by: Tomaž Vajngerl <quikee@gmail.com>
Diffstat (limited to 'chart2/source/view/axes/VCartesianCoordinateSystem.hxx')
-rw-r--r--chart2/source/view/axes/VCartesianCoordinateSystem.hxx9
1 files changed, 5 insertions, 4 deletions
diff --git a/chart2/source/view/axes/VCartesianCoordinateSystem.hxx b/chart2/source/view/axes/VCartesianCoordinateSystem.hxx
index e9d684821445..4b7acf227867 100644
--- a/chart2/source/view/axes/VCartesianCoordinateSystem.hxx
+++ b/chart2/source/view/axes/VCartesianCoordinateSystem.hxx
@@ -31,10 +31,11 @@ public:
virtual ~VCartesianCoordinateSystem() override;
virtual void createVAxisList(
- const rtl::Reference<::chart::ChartModel> &ChartDoc
- , const css::awt::Size& rFontReferenceSize
- , const css::awt::Rectangle& rMaximumSpaceForLabels
- , bool bLimitSpaceForLabels ) override;
+ const rtl::Reference<::chart::ChartModel> &ChartDoc,
+ const css::awt::Size& rFontReferenceSize,
+ const css::awt::Rectangle& rMaximumSpaceForLabels,
+ bool bLimitSpaceForLabels,
+ std::vector<std::unique_ptr<VSeriesPlotter>>& rSeriesPlotterList) override;
virtual void initVAxisInList() override;
virtual void updateScalesAndIncrementsOnAxes() override;