Skip to content
Projeler
Gruplar
Parçacıklar
Yardım
Yükleniyor...
Oturum aç / Kaydol
Gezinmeyi değiştir
C
core
Proje
Proje
Ayrıntılar
Etkinlik
Cycle Analytics
Depo (repository)
Depo (repository)
Dosyalar
Kayıtlar (commit)
Dallar (branch)
Etiketler
Katkıda bulunanlar
Grafik
Karşılaştır
Grafikler
Konular (issue)
0
Konular (issue)
0
Liste
Pano
Etiketler
Kilometre Taşları
Birleştirme (merge) Talepleri
0
Birleştirme (merge) Talepleri
0
CI / CD
CI / CD
İş akışları (pipeline)
İşler
Zamanlamalar
Grafikler
Paketler
Paketler
Wiki
Wiki
Parçacıklar
Parçacıklar
Üyeler
Üyeler
Collapse sidebar
Close sidebar
Etkinlik
Grafik
Grafikler
Yeni bir konu (issue) oluştur
İşler
Kayıtlar (commit)
Konu (issue) Panoları
Kenar çubuğunu aç
LibreOffice
core
Commits
783a0757
Kaydet (Commit)
783a0757
authored
Şub 23, 2014
tarafından
Markus Mohrhard
Kaydeden (comit)
Markus Mohrhard
Şub 23, 2014
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
prevent invalid OOXML chart files, related #i75121#
Change-Id: I8e34fd2941ce98a30d27861db2c6a625ff873aa6
üst
c68ea7ef
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
14 additions
and
10 deletions
+14
-10
chartexport.cxx
oox/source/export/chartexport.cxx
+14
-10
No files found.
oox/source/export/chartexport.cxx
Dosyayı görüntüle @
783a0757
...
@@ -1758,16 +1758,20 @@ void ChartExport::exportSeries( Reference< chart2::XChartType > xChartType, sal_
...
@@ -1758,16 +1758,20 @@ void ChartExport::exportSeries( Reference< chart2::XChartType > xChartType, sal_
exportTrendlines
(
aSeriesSeq
[
nSeriesIdx
]
);
exportTrendlines
(
aSeriesSeq
[
nSeriesIdx
]
);
//export error bars here
if
(
eChartType
!=
chart
::
TYPEID_PIE
&&
Reference
<
XPropertySet
>
xSeriesPropSet
(
xSource
,
uno
::
UNO_QUERY
);
eChartType
!=
chart
::
TYPEID_RADARLINE
)
Reference
<
XPropertySet
>
xErrorBarYProps
;
{
xSeriesPropSet
->
getPropertyValue
(
"ErrorBarY"
)
>>=
xErrorBarYProps
;
//export error bars here
if
(
xErrorBarYProps
.
is
())
Reference
<
XPropertySet
>
xSeriesPropSet
(
xSource
,
uno
::
UNO_QUERY
);
exportErrorBar
(
xErrorBarYProps
,
true
);
Reference
<
XPropertySet
>
xErrorBarYProps
;
Reference
<
XPropertySet
>
xErrorBarXProps
;
xSeriesPropSet
->
getPropertyValue
(
"ErrorBarY"
)
>>=
xErrorBarYProps
;
xSeriesPropSet
->
getPropertyValue
(
"ErrorBarX"
)
>>=
xErrorBarXProps
;
if
(
xErrorBarYProps
.
is
())
if
(
xErrorBarXProps
.
is
())
exportErrorBar
(
xErrorBarYProps
,
true
);
exportErrorBar
(
xErrorBarXProps
,
false
);
Reference
<
XPropertySet
>
xErrorBarXProps
;
xSeriesPropSet
->
getPropertyValue
(
"ErrorBarX"
)
>>=
xErrorBarXProps
;
if
(
xErrorBarXProps
.
is
())
exportErrorBar
(
xErrorBarXProps
,
false
);
}
// export categories
// export categories
if
(
eChartType
!=
chart
::
TYPEID_SCATTER
&&
mxCategoriesValues
.
is
()
)
if
(
eChartType
!=
chart
::
TYPEID_SCATTER
&&
mxCategoriesValues
.
is
()
)
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment