 |
| IXlsChartDataElement |
 |
COM interface ( getting help with interfaces )
interface IXlsChartDataElement : IDispatch
{
[id(1),propget] HRESULT Options([out, retval]IXlsChartOptions** options);
[id(2),propget] HRESULT PieExplodedSliceDistance([out, retval]int* slicedistance);
[id(2),propput] HRESULT PieExplodedSliceDistance([in]int slicedistance);
}
HRESULT Options([out, retval]IXlsChartOptions** options);
returns the options object for the data element.
HRESULT PieExplodedSliceDistance([out, retval]int* slicedistance);
returns the pie exploded slice distance from center, in percent of the pie diameter. Default is : 0. Only applies to pie charts.
HRESULT PieExplodedSliceDistance([in]int slicedistance);
sets the pie exploded slice distance from center, in percent of the pie diameter. Default is : 0. Only applies to pie charts.