diff options
author | Kohei Yoshida <kohei.yoshida@collabora.com> | 2014-10-31 23:59:27 -0400 |
---|---|---|
committer | Kohei Yoshida <kohei.yoshida@collabora.com> | 2014-11-04 12:30:41 -0500 |
commit | f281d2d24c2a368c58d32b1b50acf83e0f056d90 (patch) | |
tree | 6c7eab72bdea6185087c675344bbe60fc429548b /oox | |
parent | e296b3d25e7d78544d3abd87780f9680e56efa26 (diff) |
Actually we shouldn't always set Overlap flag on for all xlsx charts...
The correct fix unfortunately would require making the axis label layout
smarter, to avoid overlapping of angled text label objects.
Change-Id: I92198dbb90fd4a206ee226307992343d064f733a
Diffstat (limited to 'oox')
-rw-r--r-- | oox/source/drawingml/chart/axismodel.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/oox/source/drawingml/chart/axismodel.cxx b/oox/source/drawingml/chart/axismodel.cxx index cbd66b789a2a..d4163bca151f 100644 --- a/oox/source/drawingml/chart/axismodel.cxx +++ b/oox/source/drawingml/chart/axismodel.cxx @@ -46,7 +46,7 @@ AxisModel::AxisModel( sal_Int32 nTypeId ) : mnMinorTimeUnit( XML_days ), mnOrientation( XML_minMax ), mnTickLabelPos( XML_nextTo ), - mnTickLabelSkip( 1 ), + mnTickLabelSkip( 0 ), mnTickMarkSkip( 0 ), mnTypeId( nTypeId ), mbAuto( false ), |