Lines Matching refs:xPointProp

174 …Reference< beans::XPropertySet > xPointProp( xSeries->getDataPointByIndex(aAttributedDataPointInde…  in lcl_insertOrDeleteDataLabelsToSeriesAndAllPoints()  local
175 if( xPointProp.is() ) in lcl_insertOrDeleteDataLabelsToSeriesAndAllPoints()
178 xPointProp->getPropertyValue( C2U( "Label" ) ) >>= aLabel; in lcl_insertOrDeleteDataLabelsToSeriesAndAllPoints()
185 xPointProp->setPropertyValue( C2U( "Label" ), uno::makeAny( aLabel ) ); in lcl_insertOrDeleteDataLabelsToSeriesAndAllPoints()
617 …Reference< beans::XPropertySet > xPointProp( xSeries->getDataPointByIndex(aAttributedDataPointInde… in setPropertyAlsoToAllAttributedDataPoints() local
618 if(!xPointProp.is()) in setPropertyAlsoToAllAttributedDataPoints()
620 xPointProp->setPropertyValue( rPropertyName, rPropertyValue ); in setPropertyAlsoToAllAttributedDataPoints()
637 …Reference< beans::XPropertySet > xPointProp( xSeries->getDataPointByIndex(aAttributedDataPointInde… in hasAttributedDataPointDifferentValue() local
638 if(!xPointProp.is()) in hasAttributedDataPointDifferentValue()
640 uno::Any aPointValue( xPointProp->getPropertyValue( rPropertyName ) ); in hasAttributedDataPointDifferentValue()
810 …Reference< beans::XPropertySet > xPointProp( xSeries->getDataPointByIndex(aAttributedDataPointInde… in hasDataLabelsAtPoints() local
811 if( xPointProp.is() ) in hasDataLabelsAtPoints()
814 if( (xPointProp->getPropertyValue( C2U( "Label" ) ) >>= aLabel) ) in hasDataLabelsAtPoints()
875 void insertDataLabelToPoint( const Reference< beans::XPropertySet >& xPointProp ) in insertDataLabelToPoint() argument
879 if( xPointProp.is() ) in insertDataLabelToPoint()
882 xPointProp->getPropertyValue( C2U( "Label" ) ) >>= aLabel; in insertDataLabelToPoint()
884 xPointProp->setPropertyValue( C2U( "Label" ), uno::makeAny( aLabel ) ); in insertDataLabelToPoint()
893 void deleteDataLabelsFromPoint( const Reference< beans::XPropertySet >& xPointProp ) in deleteDataLabelsFromPoint() argument
897 if( xPointProp.is() ) in deleteDataLabelsFromPoint()
900 xPointProp->getPropertyValue( C2U( "Label" ) ) >>= aLabel; in deleteDataLabelsFromPoint()
904 xPointProp->setPropertyValue( C2U( "Label" ), uno::makeAny( aLabel ) ); in deleteDataLabelsFromPoint()