IChartExternLegend.Clear

Syntax

Clear;

Description

The Clear method removes all charts from the list of charts connected to the external legend.

Example

Executing the example requires a regular report with the Report identifier. The report includes the following objects: a chart and an external legend.

Sub Main;
Var
    mb: IMetabase;
    rep: IPrxReport;
    legend: IPrxChartLegend;
    chartlegend: IChartExternLegend;
    items: IChartExternLegendItems;
Begin
    mb:= MetabaseClass.Active;
    rep:= mb.ItemById("OBJ42859").Edit As IPrxReport;
    legend:= (rep.ActiveSheet As IprxTable).TabSheet.Objects.Item(1).Extension As IPrxChartLegend;
    chartlegend:= legend As IChartExternLegend;
    chartlegend.AxisIcon:= ChartLegendAxisIcon.Axis;
    items:= chartlegend.InternalItems;
    items.Swap(0,3);
   chartlegend.Clear;
    (rep As IMetabaseObject).Save;
End Sub Main;

After executing the example all charts are removed from the list of charts connected to the external legend.

See also:

IChartExternLegend