IXlsChartLegend
COM interface ( getting help with interfaces )

 

interface IXlsChartLegend : IDispatch
{
  [id(1),propput] HRESULT Show([in]enumChartLegend show);
  [id(1),propget] HRESULT Show([out, retval]enumChartLegend* show);
  [id(2),propput] HRESULT HorizontalOrientation([in]BOOL horizontal);
  [id(2),propget] HRESULT HorizontalOrientation([out, retval]BOOL* horizontal);
  [id(3),propget] HRESULT Options([out, retval]IXlsChartOptions** options);
  [id(4),propput] HRESULT Overlap([in]BOOL overlap);
  [id(4),propget] HRESULT Overlap([out, retval]BOOL* overlap);
}

 

HRESULT Show([in]enumChartLegend show);
sets whether the legend is displayed.

HRESULT Show([out, retval]enumChartLegend* show);
returns whether the legend is displayed.

HRESULT HorizontalOrientation([in]BOOL horizontal);
sets whether the legend is displayed horizontally.

HRESULT HorizontalOrientation([out, retval]BOOL* horizontal);
returns whether the legend is displayed horizontally.

HRESULT Options([out, retval]IXlsChartOptions** options);
returns the chart options object.

HRESULT Overlap([in]BOOL overlap);
sets whether the legend is allowed to overlap the plot area. Default is : FALSE.

HRESULT Overlap([out, retval]BOOL* overlap);
returns whether the legend is allowed to overlap the plot area. Default is : FALSE.