Ask a Question related to Macromedia Flex General Discussion, Design and Development.
-
Mission2k #1
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 array, the chart doesnt update to reflect the
changes. I have debugged it and confirmed that the array has in fact changed
but the chart doesnt show the new changes.
Mission2k 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... -
Chart Hit Data
I've got an issue with a chart control which is positioned far right on the screen of a dashboard. When hovering over a column data series, the... -
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. ... -
Update excel chart object on form
Hi Joanne, To place an Excel chart on an Access form and have the chart automatically change when the chart in Excel changes, do the following: ... -
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 =... -
justria #2
Re: Refreshing chart data doesnt update chart
Please post, how you bound the dataprovider to the DataGrid.
justria Guest
-
Mission2k #3
Re: Refreshing chart data doesnt update chart
Sure, here you go. The initScoreboard you see is an array that contains my data.
<mx:ColumnChart y="10" id="chartScoreboard" width="95%" height="80%"
dataProvider="{initScoreboard}" horizontalCenter="0">
<mx:horizontalAxis>
<mx:CategoryAxis
dataProvider="{initScoreboard}"
categoryField="Creditor"
/>
</mx:horizontalAxis>
<mx:verticalAxis>
<mx:LinearAxis
title="Balance"
labelFunction="defineVerticalLabel"
/>
</mx:verticalAxis>
<mx:series>
<mx:ColumnSeries
xField="Creditor"
yField="CB"
displayName="Debt List"
/>
</mx:series>
</mx:ColumnChart>
Mission2k Guest



Reply With Quote

