diff options
author | Markus Mohrhard <markus.mohrhard@googlemail.com> | 2015-04-21 03:26:24 +0200 |
---|---|---|
committer | Markus Mohrhard <markus.mohrhard@googlemail.com> | 2015-04-21 06:44:31 +0200 |
commit | e001998cb11ce865f2ea8925a058245a04d9e701 (patch) | |
tree | 9211771f6bfd3d81a43b7774ed82113abb4a2845 /oox | |
parent | 7438087a1db55aba395b241df24b4908c9491a32 (diff) |
not every PieChart uses VaryColorsByPoint
Change-Id: Ia2d30c185ecf45335c0ec00ad24bb9c117bb8aef
Diffstat (limited to 'oox')
-rw-r--r-- | oox/source/drawingml/chart/seriesconverter.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/oox/source/drawingml/chart/seriesconverter.cxx b/oox/source/drawingml/chart/seriesconverter.cxx index d116359b7027..b5ccede3228a 100644 --- a/oox/source/drawingml/chart/seriesconverter.cxx +++ b/oox/source/drawingml/chart/seriesconverter.cxx @@ -638,7 +638,7 @@ Reference< XDataSeries > SeriesConverter::createDataSeries( const TypeGroupConve // set the (unused) property default value used by the Chart2 templates (true for pie/doughnut charts) bool bIsPie = rTypeInfo.meTypeCategory == TYPECATEGORY_PIE; - aSeriesProp.setProperty( PROP_VaryColorsByPoint, bIsPie ); + aSeriesProp.setProperty( PROP_VaryColorsByPoint, bVaryColorsByPoint ); // own area formatting for every data point (TODO: varying line color not supported) // #i91271# always set area formatting for every point in pie/doughnut charts to override their automatic point formatting |