in reply to Re^13: Unable to create a Pivot chart with visiable Columns
in thread Unable to create a Pivot chart with visiable Columns
Just add the code before the $workbook->close. Adjust the row, col, width values to suit your data.
poj$row2 = 44; $col2 = 4; my $width = 4; for my $device (@device){ my $text = $workbook1->add_shape( type => 'rect', text => $device, l +ine=>1 ); $worksheet2->insert_shape( $row2, $col2, $text ); $col2 += $width; } $workbook1->close();
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^15: Unable to create a Pivot chart with visiable Columns
by chandantul (Scribe) on Sep 12, 2018 at 16:15 UTC | |
by poj (Abbot) on Sep 12, 2018 at 16:28 UTC | |
by chandantul (Scribe) on Sep 12, 2018 at 17:31 UTC | |
by poj (Abbot) on Sep 12, 2018 at 17:47 UTC | |
by chandantul (Scribe) on Sep 12, 2018 at 17:56 UTC | |
|