Kaydet (Commit) d7728bb6 authored tarafından Markus Mohrhard's avatar Markus Mohrhard

add missing data bar axis import, fdo#59578

Change-Id: Id035741b2372c76f9afe54f59f2203c5edfbb0ae
üst dc44862f
...@@ -254,6 +254,14 @@ ScXMLDataBarFormatContext::ScXMLDataBarFormatContext( ScXMLImport& rImport, sal_ ...@@ -254,6 +254,14 @@ ScXMLDataBarFormatContext::ScXMLDataBarFormatContext( ScXMLImport& rImport, sal_
else else
mpFormatData->mbNeg = false; mpFormatData->mbNeg = false;
if(!sAxisPosition.isEmpty())
{
if(sAxisPosition == "middle")
mpFormatData->meAxisPosition = databar::MIDDLE;
else if (sAxisPosition == "none")
mpFormatData->meAxisPosition = databar::NONE;
}
if(!sAxisColor.isEmpty()) if(!sAxisColor.isEmpty())
{ {
sal_Int32 nColor = 0; sal_Int32 nColor = 0;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment