diff options
author | Markus Mohrhard <markus.mohrhard@collabora.co.uk> | 2014-06-21 03:19:42 +0200 |
---|---|---|
committer | Markus Mohrhard <markus.mohrhard@collabora.co.uk> | 2014-06-21 04:21:39 +0200 |
commit | d3e15ac8df0d6a2bc634686c1f2993f5abbd9451 (patch) | |
tree | 21d5cffd607cefba494efdd12212cf6346aaf742 /chart2 | |
parent | 0c7c8aa5f690a4e751076a774feffcf6f95769f7 (diff) |
add disabled code for square bars
Change-Id: I4b315d9a4a6fb384eaec4d58c53291e473fb6d85
Diffstat (limited to 'chart2')
-rw-r--r-- | chart2/source/view/charttypes/GL3DBarChart.cxx | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/chart2/source/view/charttypes/GL3DBarChart.cxx b/chart2/source/view/charttypes/GL3DBarChart.cxx index 29a6fbd18f4c..1de3a3ad2a03 100644 --- a/chart2/source/view/charttypes/GL3DBarChart.cxx +++ b/chart2/source/view/charttypes/GL3DBarChart.cxx @@ -70,8 +70,13 @@ const size_t STEPS = 200; const sal_uLong TIMEOUT = 5; const sal_uInt32 ID_STEP = 10; +#if 0 +const float BAR_SIZE_X = 15.0f; +const float BAR_SIZE_Y = 15.0f; +#else const float BAR_SIZE_X = 30.0f; const float BAR_SIZE_Y = 5.0f; +#endif const float BAR_DISTANCE_X = 5.0f; const float BAR_DISTANCE_Y = 5.0; |