chart name months at the botom and title of the X and Y axis

Questions and answers on how to use XLSReadWriteII 3/4/5.
Post Reply
agfcpc3
Posts: 3
Joined: Tue Aug 23, 2016 7:00 pm

chart name months at the botom and title of the X and Y axis

Post by agfcpc3 »

Hello, I use delphi7 and XLSReadWriteII5

I have some questions with charts, I test the CreateChartsSample

1) How I can put the name of the months at the Botom not at the Top of each point ?
for i := 0 to 11 do begin
// with Labels.Add(cltDataPoint) do begin
with XLS.BIFF[0].Charts[0].Labels.Add(cltDataPoint) do begin
DataPointIndex := i;
Text := ShortMonthNames[i + 1];
end;
end;

2) I Want not the numbers 0 2 4 6 8 10 in the botom line,
I only want the name of the months

3) How I can put the title of the X and Y axis ?


Thank you in advance
Fabian
Post Reply