Stacked bar 100% chart
Posted: Fri Jul 20, 2018 9:27 am
Dear all,
I'm using TXLSReadWriteII to create XLSX files where I would like to create chart. I am currently running some tests and I have trouve selecting the exact type of chart I need.
Here is my small sample .
I need to create a stacked bar chart for 100% and I don't know how to manage my chart properties.
Could you please help me or maybe give me a sample that could help me?
You will find here a screenshot of what I would need to create through your component.
[img]
https://drive.google.com/open?id=1r2_hG ... J1L9IxrQVA
[/img]
Thanks a lot
NoƩmie
I'm using TXLSReadWriteII to create XLSX files where I would like to create chart. I am currently running some tests and I have trouve selecting the exact type of chart I need.
Here is my small sample .
Code: Select all
Procedure CreateChart;
Var
RCells : TXLSRelCells;
ChartSpace: TCT_ChartSpace;
Begin
RCells:=xlsReadWrite[1].CreateRelativeCells;
//Data area
RCells.SetArea(0,9,1,12);
//Chart
ChartSpace:=xlsReadWrite[1].Drawing.Charts.MakeBarChart(RCells,0,15,True);
End;
I need to create a stacked bar chart for 100% and I don't know how to manage my chart properties.
Could you please help me or maybe give me a sample that could help me?
You will find here a screenshot of what I would need to create through your component.
[img]
https://drive.google.com/open?id=1r2_hG ... J1L9IxrQVA
[/img]
Thanks a lot
NoƩmie