Ask a Question related to Macromedia Flex General Discussion, Design and Development.
-
FlexBeginner #1
Which chart was clicked on?
Hi,
event.target.name appears to give me what I'm after but is there a better
(more usual) way of obtaining the id/name of the chart that was clicked on? For
example, is there no way to derive it from event.hitData.chartItem?
Also, please tell me what the ActionScript equivilent of the following
JavaScript is: -
var myObj = document.getElementById(myVar);
Cheers Richard Maher
FlexBeginner Guest
-
stacked Bar chart/Line chart hybrid- Charting
Hi all, I have a requirement to have a stacked bar graph, with a line graph on the same chart. Has anyone here done this before? Apparently there... -
Refreshing chart data doesnt update chart
I must be missing something simple here. I have a column chart that is using an array for its dataprovider. However, when I update the underlying... -
Error in DBD::Chart (called from DBIx::Chart)
I'm receiving this error message when I run a PERL script: Use of uninitialized value in string ne at C:/Perl/site/lib/DBD/Chart.pm line 2491. ... -
Which cell was clicked
I would like to create a postBack when user click on the cell: In my dataGrid, I put the button column: <asp:buttoncolumn visible="false"... -
DBD::Chart: DBI->connect fails "DBD/Chart.pm did not return a true value"
Hello Group! I've got a problem with DBD::Chart (0.80). When I try to execute the following script: #!/usr/bin/perl -W use DBI; my $dbh =... -
jinx82002 #2
Re: Which chart was clicked on?
FlexBeginner,
event.currentTarget (rather than event.name) is always the better option to
ensure you're consistently getting the correct object that dispatched the click
event. Put a break point on the line in your event handler for that click and
you can check out all the props associated with the click event, they'll have
the info you're after.
jinx82002 Guest



Reply With Quote

