Lines Matching refs:xSeriesProperties
157 Reference< beans::XPropertySet > xSeriesProperties( xSeries, uno::UNO_QUERY ); in lcl_insertOrDeleteDataLabelsToSeriesAndAllPoints() local
158 if( xSeriesProperties.is() ) in lcl_insertOrDeleteDataLabelsToSeriesAndAllPoints()
161 xSeriesProperties->getPropertyValue( C2U( "Label" ) ) >>= aLabelAtSeries; in lcl_insertOrDeleteDataLabelsToSeriesAndAllPoints()
168 xSeriesProperties->setPropertyValue( C2U( "Label" ), uno::makeAny( aLabelAtSeries ) ); in lcl_insertOrDeleteDataLabelsToSeriesAndAllPoints()
170 …if( xSeriesProperties->getPropertyValue( C2U( "AttributedDataPoints" ) ) >>= aAttributedDataPointI… in lcl_insertOrDeleteDataLabelsToSeriesAndAllPoints()
549 void switchSymbolsOnOrOff( const Reference< beans::XPropertySet > & xSeriesProperties, in switchSymbolsOnOrOff() argument
552 if( !xSeriesProperties.is() ) in switchSymbolsOnOrOff()
556 if( (xSeriesProperties->getPropertyValue( C2U( "Symbol" )) >>= aSymbProp ) ) in switchSymbolsOnOrOff()
565 xSeriesProperties->setPropertyValue( C2U( "Symbol" ), uno::makeAny( aSymbProp )); in switchSymbolsOnOrOff()
570 void switchLinesOnOrOff( const Reference< beans::XPropertySet > & xSeriesProperties, bool bLinesOn ) in switchLinesOnOrOff() argument
572 if( !xSeriesProperties.is() ) in switchLinesOnOrOff()
579 if( (xSeriesProperties->getPropertyValue( C2U( "LineStyle" )) >>= eLineStyle ) && in switchLinesOnOrOff()
582 …xSeriesProperties->setPropertyValue( C2U( "LineStyle" ), uno::makeAny( drawing::LineStyle_SOLID ) … in switchLinesOnOrOff()
586 …xSeriesProperties->setPropertyValue( C2U( "LineStyle" ), uno::makeAny( drawing::LineStyle_NONE ) ); in switchLinesOnOrOff()
589 void makeLinesThickOrThin( const Reference< beans::XPropertySet > & xSeriesProperties, bool bThick ) in makeLinesThickOrThin() argument
591 if( !xSeriesProperties.is() ) in makeLinesThickOrThin()
596 if( (xSeriesProperties->getPropertyValue( C2U( "LineWidth" )) >>= nOldValue ) && in makeLinesThickOrThin()
600 xSeriesProperties->setPropertyValue( C2U( "LineWidth" ), uno::makeAny( nNewValue ) ); in makeLinesThickOrThin()
607 Reference< beans::XPropertySet > xSeriesProperties( xSeries, uno::UNO_QUERY ); in setPropertyAlsoToAllAttributedDataPoints() local
608 if( !xSeriesProperties.is() ) in setPropertyAlsoToAllAttributedDataPoints()
611 xSeriesProperties->setPropertyValue( rPropertyName, rPropertyValue ); in setPropertyAlsoToAllAttributedDataPoints()
613 …if( xSeriesProperties->getPropertyValue( C2U( "AttributedDataPoints" ) ) >>= aAttributedDataPointI… in setPropertyAlsoToAllAttributedDataPoints()
628 Reference< beans::XPropertySet > xSeriesProperties( xSeries, uno::UNO_QUERY ); in hasAttributedDataPointDifferentValue() local
629 if( !xSeriesProperties.is() ) in hasAttributedDataPointDifferentValue()
633 …if( xSeriesProperties->getPropertyValue( C2U( "AttributedDataPoints" ) ) >>= aAttributedDataPointI… in hasAttributedDataPointDifferentValue()
802 Reference< beans::XPropertySet > xSeriesProperties( xSeries, uno::UNO_QUERY ); in hasDataLabelsAtPoints() local
803 if( xSeriesProperties.is() ) in hasDataLabelsAtPoints()
806 …if( xSeriesProperties->getPropertyValue( C2U( "AttributedDataPoints" ) ) >>= aAttributedDataPointI… in hasDataLabelsAtPoints()
836 Reference< beans::XPropertySet > xSeriesProperties( xSeries, uno::UNO_QUERY ); in hasDataLabelAtPoint() local
837 if( xSeriesProperties.is() ) in hasDataLabelAtPoint()
840 …if( xSeriesProperties->getPropertyValue( C2U( "AttributedDataPoints" ) ) >>= aAttributedDataPointI… in hasDataLabelAtPoint()
847 xProp = xSeriesProperties; in hasDataLabelAtPoint()