*** orig/chart2/source/model/template/ColumnLineChartTypeTemplate.cxx Fri Nov 23 20:01:02 2007 --- new/chart2/source/model/template/ColumnLineChartTypeTemplate.cxx Wed May 28 15:48:25 2008 *************** *** 270,275 **** --- 270,282 ---- aFlatSeriesSeq.getConstArray() + aFlatSeriesSeq.getLength(), aLineSeq.getArray()); xDSCnt->setDataSeries( aLineSeq ); + + for( sal_Int32 i = 0; i < aLineSeq.getLength(); i++ ) + { + Reference< beans::XPropertySet > xProp( aLineSeq[i], uno::UNO_QUERY_THROW ); + if( xProp.is() ) + DataSeriesHelper::switchLinesOnOrOff( xProp, true ); + } } } catch( uno::Exception & ex )