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
7fded69f
Kaydet (Commit)
7fded69f
authored
Mar 10, 2012
tarafından
Rafael Dominguez
Kaydeden (comit)
Markus Mohrhard
Mar 23, 2012
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Add a function to get X error bar properties.
üst
a3d71e97
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
13 additions
and
0 deletions
+13
-0
VDataSeries.hxx
chart2/source/view/inc/VDataSeries.hxx
+3
-0
VDataSeries.cxx
chart2/source/view/main/VDataSeries.cxx
+10
-0
No files found.
chart2/source/view/inc/VDataSeries.hxx
Dosyayı görüntüle @
7fded69f
...
@@ -121,6 +121,9 @@ public:
...
@@ -121,6 +121,9 @@ public:
::
com
::
sun
::
star
::
chart2
::
Symbol
*
::
com
::
sun
::
star
::
chart2
::
Symbol
*
getSymbolProperties
(
sal_Int32
index
)
const
;
getSymbolProperties
(
sal_Int32
index
)
const
;
::
com
::
sun
::
star
::
uno
::
Reference
<
::
com
::
sun
::
star
::
beans
::
XPropertySet
>
getXErrorBarProperties
(
sal_Int32
index
)
const
;
::
com
::
sun
::
star
::
uno
::
Reference
<
::
com
::
sun
::
star
::
beans
::
XPropertySet
>
::
com
::
sun
::
star
::
uno
::
Reference
<
::
com
::
sun
::
star
::
beans
::
XPropertySet
>
getYErrorBarProperties
(
sal_Int32
index
)
const
;
getYErrorBarProperties
(
sal_Int32
index
)
const
;
...
...
chart2/source/view/main/VDataSeries.cxx
Dosyayı görüntüle @
7fded69f
...
@@ -816,6 +816,16 @@ Symbol* VDataSeries::getSymbolProperties( sal_Int32 index ) const
...
@@ -816,6 +816,16 @@ Symbol* VDataSeries::getSymbolProperties( sal_Int32 index ) const
return
pRet
;
return
pRet
;
}
}
uno
::
Reference
<
beans
::
XPropertySet
>
VDataSeries
::
getXErrorBarProperties
(
sal_Int32
index
)
const
{
uno
::
Reference
<
beans
::
XPropertySet
>
xErrorBarProp
;
uno
::
Reference
<
beans
::
XPropertySet
>
xPointProp
(
this
->
getPropertiesOfPoint
(
index
));
if
(
xPointProp
.
is
()
)
xPointProp
->
getPropertyValue
(
C2U
(
"ErrorBarX"
))
>>=
xErrorBarProp
;
return
xErrorBarProp
;
}
uno
::
Reference
<
beans
::
XPropertySet
>
VDataSeries
::
getYErrorBarProperties
(
sal_Int32
index
)
const
uno
::
Reference
<
beans
::
XPropertySet
>
VDataSeries
::
getYErrorBarProperties
(
sal_Int32
index
)
const
{
{
uno
::
Reference
<
beans
::
XPropertySet
>
xErrorBarProp
;
uno
::
Reference
<
beans
::
XPropertySet
>
xErrorBarProp
;
...
...
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