Pie chart form resize

If we have a simple pie chart, when we maximize the parent form, the chart resizes ok (we have set all anchors to true), but the pie stays the same size. If we change the chart type to clLine and maximise, the chart AND the line series maximise ok.


Is it possible to 'anchor' the pie chart itself so it increases and decreases proportionately with the parent form size?
 

Hi, 


Have you tried

  AdvChartView1.Panes[0].Series[0].Pie.SizeType := pstPercentage;
  AdvChartView1.Panes[0].Series[0].Pie.Size := 80;

which will autosize the pie on 80 % of the size of the chart.