D
Denver
I have this code which works fine
function configurePivot()
{
pvt = document.all.PivotData;
vew = pvt.ActiveView;
vew.ColumnAxis.InsertFieldSet(vew.FieldSets("Aging Bracket"));
vew.RowAxis.InsertFieldSet(vew.FieldSets("Customer"));
vew.DataAxis.InsertTotal(vew.Totals("Invoice Amount"))
}
So here I am setting the Row (.RowAxis.), Column (.ColumnAxis.) and
Data (.DataAxis.) of the Pivot TABLE, can you tell me what I would put
here for the Pivot CHART, i.e Series, Categories and Data
Thanks
Denver
function configurePivot()
{
pvt = document.all.PivotData;
vew = pvt.ActiveView;
vew.ColumnAxis.InsertFieldSet(vew.FieldSets("Aging Bracket"));
vew.RowAxis.InsertFieldSet(vew.FieldSets("Customer"));
vew.DataAxis.InsertTotal(vew.Totals("Invoice Amount"))
}
So here I am setting the Row (.RowAxis.), Column (.ColumnAxis.) and
Data (.DataAxis.) of the Pivot TABLE, can you tell me what I would put
here for the Pivot CHART, i.e Series, Categories and Data
Thanks
Denver