Hi Kathy
You must record a macro which does the cutomizing to your chart. Copy the macro to the Chartsheet calculate event. Every time you change your Pivot chart the Chart calculate event runs the code.
Here is some example:
Private Sub Chart_Calculate()
ActiveChart.SeriesCollection(2).Select
ActiveChart.SeriesCollection(2).ChartType = xlLine
End Sub
-vemaju