1. Why Chart shows only one series when is3D = true? When is3D = false it displays all series :
Code: Select all
with XLS.Sheets[0].AddChart do
begin
PlotArea.ChartType := xctLine;
PlotArea.HasLegend := true;
PlotArea.Is3D := true;
Col1 := 1;
Col2 := 10;
Row1 := 4;
Row2 := 24;
Series[0].Values := '''1''!$A$2:$A$10';
Series[0].Category := '''1''!$B$2:$B$10';
Series.Add;
Series[1].Values := '''1''!$C$2:$C$10';
Series[1].Category := '''1''!$B$2:$B$10';
end;
Code: Select all
TChartStyleLine(PlotArea.ChartStyle).Chart3D.SeriesSpace := 10;