|  | 
| IXlsChartDynamicDataSourceSeries | 
|  | 
COM interface ( getting help with interfaces )
 
interface IXlsChartDynamicDataSourceSeries : IDispatch
{
  [id(1),propput] HRESULT DataLabelsFormula([in]BSTR datalabels);
  [id(1),propget] HRESULT DataLabelsFormula([out,retval]BSTR* datalabels);
  [id(2),propput] HRESULT SeriesTitlesFormula([in]BSTR seriestitles);
  [id(2),propget] HRESULT SeriesTitlesFormula([out,retval]BSTR* seriestitles);
  [id(3),propput] HRESULT SeriesValuesFormula([in]BSTR seriesvalues);
  [id(3),propget] HRESULT SeriesValuesFormula([out,retval]BSTR* seriesvalues);
  [id(4),propput] HRESULT SeriesSecondaryValuesFormula([in]BSTR seriesvalues);
  [id(4),propget] HRESULT SeriesSecondaryValuesFormula([out,retval]BSTR* seriesvalues);
  [id(5),       ] HRESULT Delete();
}
 
HRESULT DataLabelsFormula([in]BSTR datalabels);
adds a formula defining the data labels for the current series.
HRESULT DataLabelsFormula([out,retval]BSTR* datalabels);
returns the formula defining the data labels for the current series.
HRESULT SeriesTitlesFormula([in]BSTR seriestitles);
adds a formula defining the titles for the current series.
HRESULT SeriesTitlesFormula([out,retval]BSTR* seriestitles);
returns the formula defining the titles for the current series.
HRESULT SeriesValuesFormula([in]BSTR seriesvalues);
adds a formula defining the values for the current series.
HRESULT SeriesValuesFormula([out,retval]BSTR* seriesvalues);
returns the formula defining the values for the current series.
HRESULT SeriesSecondaryValuesFormula([in]BSTR seriesvalues);
adds a formula defining the secondary values for the current series. Only applies to bubble charts in order to define bubble sizes.
HRESULT SeriesSecondaryValuesFormula([out,retval]BSTR* seriesvalues);
returns the formula defining the secondary values for the current series. Only applies to bubble charts in order to define bubble sizes.
HRESULT Delete();
deletes the current series.