You can't use a cell to position a chart. You can assign an (x, y) position.
use warnings;
use strict;
use Win32::OLE qw(in);
use Win32::OLE::Const 'Microsoft Excel';
use Win32::OLE::Const 'Microsoft Office .* Object Library';
my $excel = Win32::OLE->new('Excel.Application');
$excel->{Visible} = 1;
my $xls = $excel->Workbooks->Add;
my $chart = $excel->Charts->Add;
$chart->Location( xlLocationAsObject, 'Sheet1' );
# find the chart (it can only be moved via 'shape') <- this can be the
+ hard part!
# if it is the first chart, it will be named 'Chart 1'.
# If there has already been n charts on that sheet it'll be named
# 'Chart n+1'
my $shape;
foreach my $s ( in $excel->ActiveSheet->Shapes() ) {
$shape = $s;
last if $shape->type == msoChart; # msoChart == 3
}
# move the chart to (0, 0)
$shape->{Left} = 0;
$shape->{Top} = 0;
You can also move a chart relative amounts with IncrementLeft and IncrementTop.
Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
Read Where should I post X? if you're not absolutely sure you're posting in the right place.
Please read these before you post! —
Posts may use any of the Perl Monks Approved HTML tags:
- a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
|
For: |
|
Use: |
| & | | & |
| < | | < |
| > | | > |
| [ | | [ |
| ] | | ] |
Link using PerlMonks shortcuts! What shortcuts can I use for linking?
See Writeup Formatting Tips and other pages linked from there for more info.
|
|