1 diff --git offapi/com/sun/star/chart2/data/DataProvider.idl offapi/com/sun/star/chart2/data/DataProvider.idl
2 index c83199e..d07cf8d 100644
3 --- offapi/com/sun/star/chart2/data/DataProvider.idl
4 +++ offapi/com/sun/star/chart2/data/DataProvider.idl
5 @@ -57,6 +57,10 @@ service DataProvider
6 internally into valid XML.
8 [optional] interface ::com::sun::star::chart2::data::XRangeXMLConversion;
10 + /** If set to false <FALSE/>, values from hidden cells are not returned.
12 + [optional, property] boolean IncludeHiddenCells;
16 diff --git offapi/com/sun/star/chart2/data/DataSequence.idl offapi/com/sun/star/chart2/data/DataSequence.idl
17 index 9702545..c97f179 100644
18 --- offapi/com/sun/star/chart2/data/DataSequence.idl
19 +++ offapi/com/sun/star/chart2/data/DataSequence.idl
20 @@ -140,14 +140,11 @@ service DataSequence
22 [property] DataSequenceRole Role;
24 - /** If <TRUE/>, the values are hidden, and should therefore not be
25 - used. This may result in omitting a complete data series
26 - object on rendering.
27 + /** If set to false <FALSE/>, values from hidden cells are not returned.
29 - [optional, property] boolean IsHidden;
30 + [optional, property] boolean IncludeHiddenCells;
32 - /** a sequence of indexes that identify data points that should
33 - not be rendered, because they are hidden in the underlying
34 + /** a sequence of indexes that identify values that are hidden in the underlying
37 [optional, property] sequence< long > HiddenValues;