MikeT

Members
  • Content count

    27
  • Joined

  • Last visited

  • Days Won

    1

Everything posted by MikeT

  1. Using FusionCharts XT 3.4.0 I have a page with 2 charts in separate divs - a summary chart in chartSummaryDiv and a detail chart in chartDetailDiv. The detail chart has a lot of data and is quite slow to render. So my chartDetailDiv div has the property "display:none". The idea is that when the page renders the user will see the summary chart, but the detail chart will be rendering in the invisible div while they look at the summary. There is a pull-down menu on the page to select the detail chart - this just executes a simple javascript function that sets the chartSummaryDiv to "display:none" and the chartDetailDiv to "display:block" which should hide the summary chart and reveal the already rendered detail chart. It works fine except that the detail chart isn't already rendered. The detail div displays with its default text saying the data is being rendered, and after a few seconds the detail chart appears. I've tried every combination of "display:none" and "display:block" on these 2 divs and results are always the same - neither chart is rendered while the div's display property is set to "display:none". I can imagine someone coding this might have said "there's no point rendering the chart while it isn't visible" but it seems quite unlikely. So my question is: is this is a bug or is it known behavior? If it's designed that way, is there any way to override it? Thanks.
  2. Hide Dataset In Chart By Default

    Doesn't anyone care about all this SPAM?
  3. I know that the showShadow parameter was working at one time. I'm now using FusionCharts XT version 3.9 and it doesn't seem to be working. I understand from a previous forum post that it doesn't work on a per dataset basis but only for the whole chart, but that doesn't seem to be working either. The whole XML dataset is rather large, but this is how it starts: <chart caption='LCRD Cumulative Planned vs Actual / Projected Staffing (plan revision 8.0) - Funding = Project-only' baseFont='Verdana' baseFontSize='9' xAxisName='Month' yAxisName='Cumulative Staff Years (FTEs)' rotateNames='0' showValues='0' canvasBorderColor='bbbbbb' canvasBorderThickness='1' numberPrefix='' decimalPrecision='2' bgColor='f0f0f0' bgAlpha='70' showShadow='1' animation='0' adjustDiv='0' numDivLines='6' VdivLineColor='c5c5c5' VdivLineAlpha='60' showAlternateVGridColor='1' alternateVGridColor='f0f0f0' alternateVGridAlpha='60' yAxisMaxValue='70' showBorder='0' labelStep='1' plotGradientColor='' yAxisValuesPadding='5' canvasLeftMargin ='65' canvasRightMargin ='0' plotBorderThickness ='0'><categories><category label='Dec 2011' /><category label='Jan 2012'...
  4. showShadow parameter in multiple line chart

    Thanks for your reply. I'm aware that the parameter exists and where to declare it - the issue is that it is not working as advertised. I reduced my code to the simplest testcase that would still show the problem and turns out that it's very simple to reproduce. If the last value of a dataset is blank (e.g., <set value='' /> in XLM, or { "value": "" } in JSON) then the shadow for that line will not render. You can have blank data values at the start or in the middle without affecting the shadow, but not at the end. I'm working in XML but I verified the JSON effect using your JSFiddle sample - thanks for that! So it seems to be a simple bug. Since it's not actually an XML problem, I'll re-open this in a more general forum.
  5. Hide Dataset In Chart By Default

    Thanks, Swarnam, that fixes the problem.
  6. Hide Dataset In Chart By Default

    After reading this I upgraded to 3.3.1 and it worked beautifully - exactly what I needed. However, when I upgraded to version 3.4 this functionality stopped working. I just upgraded to version 3.9.0 and it still doesn't appear to work. Has something changed in the API?
  7. Hide Dataset In Chart By Default

    Beautiful - problem solved - thank you!
  8. Hide Dataset In Chart By Default

    This might explain it - I'm using Javascript rendering, but on version 3.2.2. Is an upgrade from 3.3.2 to 3.3.1 free? (I work for a government agency - there's no money for IT purchases in the immediate future.)
  9. Hide Dataset In Chart By Default

    Hmmm - not working for me. Tried: <dataset seriesName='Plan (rev. 3.0)' visible='0'... <dataset seriesName='Plan (rev. 3.0)' visibility='0'... <dataset seriesName='Plan (rev. 3.0)' showValues='0'... But none of them made any difference.
  10. Hide Dataset In Chart By Default

    That definitely sounds hopeful - I'll give it a try - thanks for the quick reply!
  11. Hide Dataset In Chart By Default

    Follow-up question: It seems that when a chart legend item is clicked, a FusionCharts javascript function would be called to toggle the visibility of the chosen dataset. Would it be possible to tell us the API of this function (name + arguments)? If so, we could implement the requested functionality ourselves by simply calling the function for every dataset that we don't want to see by default.
  12. Lots of posters seem to need sparse labels on the x-axis, and labelStep is the answer for them. I have the opposite problem. My x-axis consists of dynamically generated dates. I'm adding notations to the dates where the date coincides with a significant event. In FusionCharts free this worked fine, but now I've upgraded to XT which insists on skipping half of the labels. This means that significant event notations are also missing if they happen to fall on a skipped label. LabelSkip is supposed to default to 1, but apparently doesn't. Explicitly setting it to 1 doesn't help either. The only solution I have found is to set the font size lower. This works but is not comfortable for reading. So it seems that FusionCharts XT is over-riding labelSkip for certain font sizes, even in cases where the result would be perfectly acceptable. I think this is actually a bug - let me set labelSkip the way I want it and I'll decide if the result is aesthetically unacceptable.
  13. Labelstep (Not The Usual Problem)

    Bindhu, There is plenty of space so show the labels I want to show. FusionCharts is making an incorrect decision. It's saying: "Is there enough space to show EVERY label?" It should be saying: "Is there enough space to show the labels with showLabel=1?" This is a bug. While you are talking to the developers, please ask them why this works perfectly (the way it's supposed to) in FusionCharts free.
  14. Labelstep (Not The Usual Problem)

    Thanks for the clarification. However, I hope you realise how unsatisfactory it is. It seems that you have provided an API to allow the user to control the frequency of labels, but then you have chosen to ignore it and override the user's choices. It doesn't make any sense to me - I would still call it a bug. Why do you even have the showLabel parameter if it doesn't control whether labels are shown?
  15. Labelstep (Not The Usual Problem)

    Correct - this is what I intended. The x-axis labels are "-" characters (rotated) to mark the beginning of each month, with a month name in the middle of the month. I agree that "providing blank value in category labels and setting showLabel='1' does not make any sense", but I'm not doing that. I have showLabel='1' on the dashes, and on the month names. All other categories have showLabel='0'. The issue is that not all of the labels with showLabel='1' are being rendered. In fact most are being skipped.
  16. Labelstep (Not The Usual Problem)

    Thanks for the reply - I had missed the showLabels='0' in the chart element - unfortunately it did not make any difference. Please take a look at the attachments. Attachment 1 shows the XML data. As you can see, the first x-axis label with showLabel='1' is just a "-". The next is "Aug 09 ". Looking at the second attachment, you will see that the first label is rendered but the second is not. In fact there are 33 elements with showLabel='1', but only 6 of them are rendered. I tried this with and without labelDisplay='none', but it didn't make a difference. XML.xml ScreenHunter_3.bmp
  17. Labelstep (Not The Usual Problem)

    It doesn't help in the slightest. I'm reporting a bug - I merely mentioned FusionCharts Free to illustrate that one of your products does not have this bug, whereas FusionCharts XT does. Here's what I think is happening: XT is looking at the number of points on the x-axis, concluding that it doesn't have space to display them all, and going into label-skip (show every nth label) mode. This is wrong - it should be looking not at the number of points, but at the number of labels for which showLabel is non-zero. The points that have showLabel=0 are not going to be displayed anyway, so should not be considered. Also, if the user has set labelSkip=1, this algorithm should not even be executing - in this case XT should display ALL of the labels regardless of how crowded the axis becomes. If it's not readable the user has the choice to set labelSkip higher if appropriate.
  18. FusionCharts Free allowed either horizontal or vertical grids in multi-series column charts. The vertical grids were very useful in clustering certain types of charts (see first attachment). The same XML code rendered with FusionCharts XT ignores the vertical grid parameters and substitutes a default horzontal grid which makes the clustering very hard to see (see second attachment). At first I assumed that some parameter names must have changed and I would just have to fix them. However, even though the documentation says: "Divisional Lines are horizontal or vertical lines running through the canvas. Each divisional line signifies a smaller unit of the entire axis thus aiding the users in interpreting the chart." , there don't seem to be any parameters controlling vertical grids for column charts. Is it really possible that FusionCharts XT has LESS functionality than the free product in this area? ScreenHunter_1.bmp ScreenHunter_2.bmp
  19. Labelstep (Not The Usual Problem)

    Here's another example. The first screenshot shows how the x-axis is rendered by FusionCharts Free. The second is produced by the same (XML) code with FusionCharts XT. As you can see, XT is doing something very strange with the x-axis labels. (I think I omitted clicking "Attach This File" with my screenshot for yesterday's post - hopefully these will fully illustrate the problem.) ScreenHunter_1.bmp ScreenHunter_2.bmp
  20. Labelstep (Not The Usual Problem)

    I've encountered a different instance of (I believe) the same problem. In this case I'm generating a full set of daily date labels on the x-axis, but I only want to display Sundays, so I have showLabel='0' for each of the other days. For some reason FusionChartsXT doesn't show any of the dates. If I set the font size smaller (with no other changes) then it shows some of the Sundays, but not all. Here's the code (screenshot of the result attached): <script language="JavaScript" type="text/javascript"> FusionCharts.setCurrentRenderer('javascript'); var chartGB = new FusionCharts("/FusionCharts/ChartsXT/MSLine.swf ", "chartGBid", "900", "450"); chartGB.setDataXML("<graph caption='CM Backup Statistics - Gigabytes Saved for server: TLSERVER' subcaption='All Days (Full & Incrementals)' baseFont='Verdana' baseFontSize='9' xAxisName='Date' yAxisName='GB Saved' RotateNames='1' showValues='0' canvasBorderColor='BBBBBB' canvasBorderThickness='1' numberPrefix='' decimalPrecision='2' bgcolor='f0f0f0' bgAlpha='70' showColumnShadow='1' animation='0' numdivlines='19' Vdivlinecolor='c5c5c5' VdivLineAlpha='60' showAlternateVGridColor='1' alternateVGridColor='f0f0f0' alternateVGridAlpha='60' yAxisMaxValue='200' anchorSides = '8' hoverCapBgColor='ffff77' showBorder='0' connectNullData='1'><categories><category name='Sat 01/01/2011' showLabel = '0' /><category name='Sun 01/02/2011' /><category name='Mon 01/03/2011' showLabel = '0' /><category name='Tue 01/04/2011' showLabel = '0' /><category name='Wed 01/05/2011' showLabel = '0' /><category name='Thu 01/06/2011' showLabel = '0' /><category name='Fri 01/07/2011' showLabel = '0' /><category name='Sat 01/08/2011' showLabel = '0' /><category name='Sun 01/09/2011' /><category name='Mon 01/10/2011' showLabel = '0' /><category name='Tue 01/11/2011' showLabel = '0' /><category name='Wed 01/12/2011' showLabel = '0' /><category name='Thu 01/13/2011' showLabel = '0' /><category name='Fri 01/14/2011' showLabel = '0' /><category name='Sat 01/15/2011' showLabel = '0' /><category name='Sun 01/16/2011' /><category name='Mon 01/17/2011' showLabel = '0' /><category name='Tue 01/18/2011' showLabel = '0' /><category name='Wed 01/19/2011' showLabel = '0' /><category name='Thu 01/20/2011' showLabel = '0' /><category name='Fri 01/21/2011' showLabel = '0' /><category name='Sat 01/22/2011' showLabel = '0' /><category name='Sun 01/23/2011' /><category name='Mon 01/24/2011' showLabel = '0' /><category name='Tue 01/25/2011' showLabel = '0' /><category name='Wed 01/26/2011' showLabel = '0' /><category name='Thu 01/27/2011' showLabel = '0' /><category name='Fri 01/28/2011' showLabel = '0' /><category name='Sat 01/29/2011' showLabel = '0' /><category name='Sun 01/30/2011' /><category name='Mon 01/31/2011' showLabel = '0' /><category name='Tue 02/01/2011' showLabel = '0' /><category name='Wed 02/02/2011' showLabel = '0' /><category name='Thu 02/03/2011' showLabel = '0' /><category name='Fri 02/04/2011' showLabel = '0' /><category name='Sat 02/05/2011' showLabel = '0' /><category name='Sun 02/06/2011' /><category name='Mon 02/07/2011' showLabel = '0' /><category name='Tue 02/08/2011' showLabel = '0' /><category name='Wed 02/09/2011' showLabel = '0' /><category name='Thu 02/10/2011' showLabel = '0' /><category name='Fri 02/11/2011' showLabel = '0' /><category name='Sat 02/12/2011' showLabel = '0' /><category name='Sun 02/13/2011' /><category name='Mon 02/14/2011' showLabel = '0' /><category name='Tue 02/15/2011' showLabel = '0' /><category name='Wed 02/16/2011' showLabel = '0' /><category name='Thu 02/17/2011' showLabel = '0' /><category name='Fri 02/18/2011' showLabel = '0' /><category name='Sat 02/19/2011' showLabel = '0' /><category name='Sun 02/20/2011' /><category name='Mon 02/21/2011' showLabel = '0' /><category name='Tue 02/22/2011' showLabel = '0' /><category name='Wed 02/23/2011' showLabel = '0' /><category name='Thu 02/24/2011' showLabel = '0' /><category name='Fri 02/25/2011' showLabel = '0' /><category name='Sat 02/26/2011' showLabel = '0' /><category name='Sun 02/27/2011' /><category name='Mon 02/28/2011' showLabel = '0' /><category name='Tue 03/01/2011' showLabel = '0' /><category name='Wed 03/02/2011' showLabel = '0' /><category name='Thu 03/03/2011' showLabel = '0' /><category name='Fri 03/04/2011' showLabel = '0' /><category name='Sat 03/05/2011' showLabel = '0' /><category name='Sun 03/06/2011' /><category name='Mon 03/07/2011' showLabel = '0' /><category name='Tue 03/08/2011' showLabel = '0' /><category name='Wed 03/09/2011' showLabel = '0' /><category name='Thu 03/10/2011' showLabel = '0' /><category name='Fri 03/11/2011' showLabel = '0' /><category name='Sat 03/12/2011' showLabel = '0' /><category name='Sun 03/13/2011' /><category name='Mon 03/14/2011' showLabel = '0' /><category name='Tue 03/15/2011' showLabel = '0' /><category name='Wed 03/16/2011' showLabel = '0' /><category name='Thu 03/17/2011' showLabel = '0' /><category name='Fri 03/18/2011' showLabel = '0' /><category name='Sat 03/19/2011' showLabel = '0' /><category name='Sun 03/20/2011' /><category name='Mon 03/21/2011' showLabel = '0' /><category name='Tue 03/22/2011' showLabel = '0' /><category name='Wed 03/23/2011' showLabel = '0' /><category name='Thu 03/24/2011' showLabel = '0' /><category name='Fri 03/25/2011' showLabel = '0' /><category name='Sat 03/26/2011' showLabel = '0' /><category name='Sun 03/27/2011' /><category name='Mon 03/28/2011' showLabel = '0' /><category name='Tue 03/29/2011' showLabel = '0' /><category name='Wed 03/30/2011' showLabel = '0' /><category name='Thu 03/31/2011' showLabel = '0' /><category name='Fri 04/01/2011' showLabel = '0' /><category name='Sat 04/02/2011' showLabel = '0' /><category name='Sun 04/03/2011' /><category name='Mon 04/04/2011' showLabel = '0' /><category name='Tue 04/05/2011' showLabel = '0' /><category name='Wed 04/06/2011' showLabel = '0' /><category name='Thu 04/07/2011' showLabel = '0' /><category name='Fri 04/08/2011' showLabel = '0' /><category name='Sat 04/09/2011' showLabel = '0' /><category name='Sun 04/10/2011' /><category name='Mon 04/11/2011' showLabel = '0' /><category name='Tue 04/12/2011' showLabel = '0' /><category name='Wed 04/13/2011' showLabel = '0' /><category name='Thu 04/14/2011' showLabel = '0' /><category name='Fri 04/15/2011' showLabel = '0' /><category name='Sat 04/16/2011' showLabel = '0' /><category name='Sun 04/17/2011' /><category name='Mon 04/18/2011' showLabel = '0' /><category name='Tue 04/19/2011' showLabel = '0' /><category name='Wed 04/20/2011' showLabel = '0' /><category name='Thu 04/21/2011' showLabel = '0' /><category name='Fri 04/22/2011' showLabel = '0' /><category name='Sat 04/23/2011' showLabel = '0' /><category name='Sun 04/24/2011' /><category name='Mon 04/25/2011' showLabel = '0' /><category name='Tue 04/26/2011' showLabel = '0' /><category name='Wed 04/27/2011' showLabel = '0' /><category name='Thu 04/28/2011' showLabel = '0' /><category name='Fri 04/29/2011' showLabel = '0' /><category name='Sat 04/30/2011' showLabel = '0' /><category name='Sun 05/01/2011' /><category name='Mon 05/02/2011' showLabel = '0' /><category name='Tue 05/03/2011' showLabel = '0' /><category name='Wed 05/04/2011' showLabel = '0' /><category name='Thu 05/05/2011' showLabel = '0' /><category name='Fri 05/06/2011' showLabel = '0' /><category name='Sat 05/07/2011' showLabel = '0' /><category name='Sun 05/08/2011' /><category name='Mon 05/09/2011' showLabel = '0' /><category name='Tue 05/10/2011' showLabel = '0' /><category name='Wed 05/11/2011' showLabel = '0' /><category name='Thu 05/12/2011' showLabel = '0' /><category name='Fri 05/13/2011' showLabel = '0' /><category name='Sat 05/14/2011' showLabel = '0' /><category name='Sun 05/15/2011' /><category name='Mon 05/16/2011' showLabel = '0' /><category name='Tue 05/17/2011' showLabel = '0' /><category name='Wed 05/18/2011' showLabel = '0' /><category name='Thu 05/19/2011' showLabel = '0' /><category name='Fri 05/20/2011' showLabel = '0' /><category name='Sat 05/21/2011' showLabel = '0' /><category name='Sun 05/22/2011' /><category name='Mon 05/23/2011' showLabel = '0' /><category name='Tue 05/24/2011' showLabel = '0' /><category name='Wed 05/25/2011' showLabel = '0' /><category name='Thu 05/26/2011' showLabel = '0' /><category name='Fri 05/27/2011' showLabel = '0' /><category name='Sat 05/28/2011' showLabel = '0' /><category name='Sun 05/29/2011' /><category name='Mon 05/30/2011' showLabel = '0' /><category name='Tue 05/31/2011' showLabel = '0' /><category name='Wed 06/01/2011' showLabel = '0' /><category name='Thu 06/02/2011' showLabel = '0' /><category name='Fri 06/03/2011' showLabel = '0' /><category name='Sat 06/04/2011' showLabel = '0' /><category name='Sun 06/05/2011' /><category name='Mon 06/06/2011' showLabel = '0' /><category name='Tue 06/07/2011' showLabel = '0' /><category name='Wed 06/08/2011' showLabel = '0' /><category name='Thu 06/09/2011' showLabel = '0' /><category name='Fri 06/10/2011' showLabel = '0' /><category name='Sat 06/11/2011' showLabel = '0' /><category name='Sun 06/12/2011' /><category name='Mon 06/13/2011' showLabel = '0' /><category name='Tue 06/14/2011' showLabel = '0' /><category name='Wed 06/15/2011' showLabel = '0' /><category name='Thu 06/16/2011' showLabel = '0' /><category name='Fri 06/17/2011' showLabel = '0' /><category name='Sat 06/18/2011' showLabel = '0' /><category name='Sun 06/19/2011' /><category name='Mon 06/20/2011' showLabel = '0' /><category name='Tue 06/21/2011' showLabel = '0' /><category name='Wed 06/22/2011' showLabel = '0' /><category name='Thu 06/23/2011' showLabel = '0' /><category name='Fri 06/24/2011' showLabel = '0' /><category name='Sat 06/25/2011' showLabel = '0' /><category name='Sun 06/26/2011' /><category name='Mon 06/27/2011' showLabel = '0' /><category name='Tue 06/28/2011' showLabel = '0' /><category name='Wed 06/29/2011' showLabel = '0' /><category name='Thu 06/30/2011' showLabel = '0' /><category name='Fri 07/01/2011' showLabel = '0' /><category name='Sat 07/02/2011' showLabel = '0' /><category name='Sun 07/03/2011' /><category name='Mon 07/04/2011' showLabel = '0' /><category name='Tue 07/05/2011' showLabel = '0' /><category name='Wed 07/06/2011' showLabel = '0' /><category name='Thu 07/07/2011' showLabel = '0' /><category name='Fri 07/08/2011' showLabel = '0' /><category name='Sat 07/09/2011' showLabel = '0' /><category name='Sun 07/10/2011' /><category name='Mon 07/11/2011' showLabel = '0' /><category name='Tue 07/12/2011' showLabel = '0' /><category name='Wed 07/13/2011' showLabel = '0' /><category name='Thu 07/14/2011' showLabel = '0' /><category name='Fri 07/15/2011' showLabel = '0' /><category name='Sat 07/16/2011' showLabel = '0' /><category name='Sun 07/17/2011' /><category name='Mon 07/18/2011' showLabel = '0' /><category name='Tue 07/19/2011' showLabel = '0' /><category name='Wed 07/20/2011' showLabel = '0' /><category name='Thu 07/21/2011' showLabel = '0' /><category name='Fri 07/22/2011' showLabel = '0' /><category name='Sat 07/23/2011' showLabel = '0' /><category name='Sun 07/24/2011' /><category name='Mon 07/25/2011' showLabel = '0' /><category name='Tue 07/26/2011' showLabel = '0' /><category name='Wed 07/27/2011' showLabel = '0' /><category name='Thu 07/28/2011' showLabel = '0' /><category name='Fri 07/29/2011' showLabel = '0' /><category name='Sat 07/30/2011' showLabel = '0' /><category name='Sun 07/31/2011' /><category name='Mon 08/01/2011' showLabel = '0' /><category name='Tue 08/02/2011' showLabel = '0' /><category name='Wed 08/03/2011' showLabel = '0' /><category name='Thu 08/04/2011' showLabel = '0' /><category name='Fri 08/05/2011' showLabel = '0' /><category name='Sat 08/06/2011' showLabel = '0' /><category name='Sun 08/07/2011' /><category name='Mon 08/08/2011' showLabel = '0' /><category name='Tue 08/09/2011' showLabel = '0' /><category name='Wed 08/10/2011' showLabel = '0' /><category name='Thu 08/11/2011' showLabel = '0' /><category name='Fri 08/12/2011' showLabel = '0' /><category name='Sat 08/13/2011' showLabel = '0' /><category name='Sun 08/14/2011' /><category name='Mon 08/15/2011' showLabel = '0' /><category name='Tue 08/16/2011' showLabel = '0' /><category name='Wed 08/17/2011' showLabel = '0' /><category name='Thu 08/18/2011' showLabel = '0' /><category name='Fri 08/19/2011' showLabel = '0' /><category name='Sat 08/20/2011' showLabel = '0' /><category name='Sun 08/21/2011' /><category name='Mon 08/22/2011' showLabel = '0' /><category name='Tue 08/23/2011' showLabel = '0' /><category name='Wed 08/24/2011' showLabel = '0' /><category name='Thu 08/25/2011' showLabel = '0' /><category name='Fri 08/26/2011' showLabel = '0' /><category name='Sat 08/27/2011' showLabel = '0' /><category name='Sun 08/28/2011' /><category name='Mon 08/29/2011' showLabel = '0' /><category name='Tue 08/30/2011' showLabel = '0' /><category name='Wed 08/31/2011' showLabel = '0' /><category name='Thu 09/01/2011' showLabel = '0' /><category name='Fri 09/02/2011' showLabel = '0' /><category name='Sat 09/03/2011' showLabel = '0' /><category name='Sun 09/04/2011' /><category name='Mon 09/05/2011' showLabel = '0' /><category name='Tue 09/06/2011' showLabel = '0' /><category name='Wed 09/07/2011' showLabel = '0' /><category name='Thu 09/08/2011' showLabel = '0' /><category name='Fri 09/09/2011' showLabel = '0' /><category name='Sat 09/10/2011' showLabel = '0' /><category name='Sun 09/11/2011' /><category name='Mon 09/12/2011' showLabel = '0' /><category name='Tue 09/13/2011' showLabel = '0' /><category name='Wed 09/14/2011' showLabel = '0' /><category name='Thu 09/15/2011' showLabel = '0' /><category name='Fri 09/16/2011' showLabel = '0' /><category name='Sat 09/17/2011' showLabel = '0' /><category name='Sun 09/18/2011' /><category name='Mon 09/19/2011' showLabel = '0' /><category name='Tue 09/20/2011' showLabel = '0' /><category name='Wed 09/21/2011' showLabel = '0' /><category name='Thu 09/22/2011' showLabel = '0' /><category name='Fri 09/23/2011' showLabel = '0' /><category name='Sat 09/24/2011' showLabel = '0' /><category name='Sun 09/25/2011' /><category name='Mon 09/26/2011' showLabel = '0' /><category name='Tue 09/27/2011' showLabel = '0' /><category name='Wed 09/28/2011' showLabel = '0' /><category name='Thu 09/29/2011' showLabel = '0' /><category name='Fri 09/30/2011' showLabel = '0' /><category name='Sat 10/01/2011' showLabel = '0' /><category name='Sun 10/02/2011' /><category name='Mon 10/03/2011' showLabel = '0' /><category name='Tue 10/04/2011' showLabel = '0' /><category name='Wed 10/05/2011' showLabel = '0' /><category name='Thu 10/06/2011' showLabel = '0' /><category name='Fri 10/07/2011' showLabel = '0' /><category name='Sat 10/08/2011' showLabel = '0' /><category name='Sun 10/09/2011' /><category name='Mon 10/10/2011' showLabel = '0' /><category name='Tue 10/11/2011' showLabel = '0' /><category name='Wed 10/12/2011' showLabel = '0' /><category name='Thu 10/13/2011' showLabel = '0' /><category name='Fri 10/14/2011' showLabel = '0' /><category name='Sat 10/15/2011' showLabel = '0' /><category name='Sun 10/16/2011' /><category name='Mon 10/17/2011' showLabel = '0' /><category name='Tue 10/18/2011' showLabel = '0' /><category name='Wed 10/19/2011' showLabel = '0' /><category name='Thu 10/20/2011' showLabel = '0' /><category name='Fri 10/21/2011' showLabel = '0' /><category name='Sat 10/22/2011' showLabel = '0' /><category name='Sun 10/23/2011' /><category name='Mon 10/24/2011' showLabel = '0' /><category name='Tue 10/25/2011' showLabel = '0' /><category name='Wed 10/26/2011' showLabel = '0' /><category name='Thu 10/27/2011' showLabel = '0' /><category name='Fri 10/28/2011' showLabel = '0' /><category name='Sat 10/29/2011' showLabel = '0' /><category name='Sun 10/30/2011' /><category name='Mon 10/31/2011' showLabel = '0' /><category name='Tue 11/01/2011' showLabel = '0' /><category name='Wed 11/02/2011' showLabel = '0' /><category name='Thu 11/03/2011' showLabel = '0' /><category name='Fri 11/04/2011' showLabel = '0' /><category name='Sat 11/05/2011' showLabel = '0' /><category name='Sun 11/06/2011' /><category name='Mon 11/07/2011' showLabel = '0' /><category name='Tue 11/08/2011' showLabel = '0' /><category name='Wed 11/09/2011' showLabel = '0' /><category name='Thu 11/10/2011' showLabel = '0' /><category name='Fri 11/11/2011' showLabel = '0' /><category name='Sat 11/12/2011' showLabel = '0' /><category name='Sun 11/13/2011' /><category name='Mon 11/14/2011' showLabel = '0' /><category name='Tue 11/15/2011' showLabel = '0' /><category name='Wed 11/16/2011' showLabel = '0' /><category name='Thu 11/17/2011' showLabel = '0' /><category name='Fri 11/18/2011' showLabel = '0' /><category name='Sat 11/19/2011' showLabel = '0' /><category name='Sun 11/20/2011' /><category name='Mon 11/21/2011' showLabel = '0' /><category name='Tue 11/22/2011' showLabel = '0' /><category name='Wed 11/23/2011' showLabel = '0' /><category name='Thu 11/24/2011' showLabel = '0' /><category name='Fri 11/25/2011' showLabel = '0' /><category name='Sat 11/26/2011' showLabel = '0' /><category name='Sun 11/27/2011' /><category name='Mon 11/28/2011' showLabel = '0' /><category name='Tue 11/29/2011' showLabel = '0' /><category name='Wed 11/30/2011' showLabel = '0' /><category name='Thu 12/01/2011' showLabel = '0' /><category name='Fri 12/02/2011' showLabel = '0' /><category name='Sat 12/03/2011' showLabel = '0' /><category name='Sun 12/04/2011' /><category name='Mon 12/05/2011' showLabel = '0' /><category name='Tue 12/06/2011' showLabel = '0' /><category name='Wed 12/07/2011' showLabel = '0' /><category name='Thu 12/08/2011' showLabel = '0' /><category name='Fri 12/09/2011' showLabel = '0' /><category name='Sat 12/10/2011' showLabel = '0' /><category name='Sun 12/11/2011' /><category name='Mon 12/12/2011' showLabel = '0' /><category name='Tue 12/13/2011' showLabel = '0' /><category name='Wed 12/14/2011' showLabel = '0' /><category name='Thu 12/15/2011' showLabel = '0' /><category name='Fri 12/16/2011' showLabel = '0' /><category name='Sat 12/17/2011' showLabel = '0' /><category name='Sun 12/18/2011' /><category name='Mon 12/19/2011' showLabel = '0' /><category name='Tue 12/20/2011' showLabel = '0' /><category name='Wed 12/21/2011' showLabel = '0' /><category name='Thu 12/22/2011' showLabel = '0' /><category name='Fri 12/23/2011' showLabel = '0' /><category name='Sat 12/24/2011' showLabel = '0' /><category name='Sun 12/25/2011' /><category name='Mon 12/26/2011' showLabel = '0' /><category name='Tue 12/27/2011' showLabel = '0' /><category name='Wed 12/28/2011' showLabel = '0' /><category name='Thu 12/29/2011' showLabel = '0' /><category name='Fri 12/30/2011' showLabel = '0' /><category name='Sat 12/31/2011' showLabel = '0' /></categories><dataset seriesname='Incremental' color='ff6000' showValue='1' anchorBorderColor='ff6000' anchorBgColor='ffff00' lineThickness='2'><set value='' /><set value='' /><set value='3.259999990463' /><set value='3.289999961853' /><set value='3.299999952316' /><set value='22.549999237061' /><set value='3.640000104904' /><set value='3.640000104904' /><set value='' /><set value='3.519999980927' /><set value='3.630000114441' /><set value='3.650000095367' /><set value='3.75' /><set value='3.650000095367' /><set value='113.680000305176' /><set value='' /><set value='3.880000114441' /><set value='3.890000104904' /><set value='3.920000076294' /><set value='4.679999828339' /><set value='3.930000066757' /><set value='4.179999828339' /><set value='' /><set value='3.950000047684' /><set value='3.980000019073' /><set value='3.990000009537' /><set value='' /><set value='3.990000009537' /><set value='3.990000009537' /><set value='' /><set value='3.960000038147' /><set value='3.990000009537' /><set value='3.990000009537' /><set value='4' /><set value='4.010000228882' /><set value='4.010000228882' /><set value='' /><set value='3.890000104904' /><set value='3.990000009537' /><set value='4' /><set value='4.019999980927' /><set value='4.010000228882' /><set value='4.010000228882' /><set value='' /><set value='3.980000019073' /><set value='4.010000228882' /><set value='4.019999980927' /><set value='0' /><set value='7.840000152588' /><set value='4.019999980927' /><set value='' /><set value='3.930000066757' /><set value='4.019999980927' /><set value='4.030000209808' /><set value='4.039999961853' /><set value='4.039999961853' /><set value='4.050000190735' /><set value='' /><set value='3.950000047684' /><set value='4.050000190735' /><set value='4.05999994278' /><set value='4.179999828339' /><set value='4.050000190735' /><set value='4.050000190735' /><set value='' /><set value='3.94000005722' /><set value='4.05999994278' /><set value='4.070000171661' /><set value='4.05999994278' /><set value='4.070000171661' /><set value='4.079999923706' /><set value='' /><set value='3.950000047684' /><set value='4.070000171661' /><set value='4.090000152588' /><set value='4.079999923706' /><set value='4.079999923706' /><set value='4.090000152588' /><set value='' /><set value='4.070000171661' /><set value='3.890000104904' /><set value='4.090000152588' /><set value='4.210000038147' /><set value='4.5' /><set value='4.489999771118' /><set value='' /><set value='3.980000019073' /><set value='3.900000095367' /><set value='3.869999885559' /><set value='3.869999885559' /><set value='4.449999809265' /><set value='22.450000762939' /><set value='' /><set value='4.139999866486' /><set value='146.089996337891' /><set value='43.979999542236' /><set value='42.110000610352' /><set value='98.970001220703' /><set value='101.230003356934' /><set value='' /><set value='98.919998168945' /><set value='51.380001068115' /><set value='99.160003662109' /><set value='99.150001525879' /><set value='99.360000610352' /><set value='99.160003662109' /><set value='' /><set value='98.930000305176' /><set value='0' /><set value='104.040000915527' /><set value='99.440002441406' /><set value='51.740001678467' /><set value='51.659999847412' /><set value='' /><set value='51.25' /><set value='51.459999084473' /><set value='51.650001525879' /><set value='99.51000213623' /><set value='51.669998168945' /><set value='51.659999847412' /><set value='' /><set value='51.240001678467' /><set value='51.459999084473' /><set value='51.459999084473' /><set value='99.5' /><set value='51.659999847412' /><set value='' /><set value='' /><set value='51.25' /><set value='51.279998779297' /><set value='51.669998168945' /><set value='99.309997558594' /><set value='51.669998168945' /><set value='51.680000305176' /><set value='' /><set value='51.25' /><set value='51.470001220703' /><set value='51.669998168945' /><set value='99.519996643066' /><set value='51.689998626709' /><set value='51.290000915527' /><set value='' /><set value='51.259998321533' /><set value='51.479999542236' /><set value='51.680000305176' /><set value='99.529998779297' /><set value='51.680000305176' /><set value='51.680000305176' /><set value='' /><set value='51.259998321533' /><set value='51.479999542236' /><set value='51.689998626709' /><set value='51.689998626709' /><set value='51.490001678467' /><set value='' /><set value='' /><set value='51.270000457764' /><set value='' /><set value='51.900001525879' /><set value='51.569999694824' /><set value='52.009998321533' /><set value='51.450000762939' /><set value='' /><set value='51.430000305176' /><set value='51.569999694824' /><set value='51.790000915527' /><set value='51.340000152588' /><set value='51.360000610352' /><set value='51.360000610352' /><set value='' /><set value='51.360000610352' /><set value='51.349998474121' /><set value='51.360000610352' /><set value='51.360000610352' /><set value='51.369998931885' /><set value='51.369998931885' /><set value='' /><set value='51.369998931885' /><set value='51.360000610352' /><set value='3.52999997139' /><set value='3.539999961853' /><set value='3.539999961853' /><set value='' /><set value='' /><set value='3.539999961853' /><set value='3.519999980927' /><set value='0' /><set value='102.540000915527' /><set value='51.389999389648' /><set value='51.389999389648' /><set value='' /><set value='51.400001525879' /><set value='51.380001068115' /><set value='51.400001525879' /><set value='51.409999847412' /><set value='51.409999847412' /><set value='51.409999847412' /><set value='' /><set value='51.409999847412' /><set value='51.409999847412' /><set value='0' /><set value='0' /><set value='3.589999914169' /><set value='51.430000305176' /><set value='' /><set value='51.419998168945' /><set value='51.419998168945' /><set value='51.430000305176' /><set value='51.430000305176' /><set value='51.450000762939' /><set value='51.450000762939' /><set value='' /><set value='51.439998626709' /><set value='' /><set value='51.459999084473' /><set value='51.450000762939' /><set value='51.459999084473' /><set value='' /><set value='' /><set value='51.450000762939' /><set value='' /><set value='51.509998321533' /><set value='51.490001678467' /><set value='52.029998779297' /><set value='51.729999542236' /><set value='' /><set value='51.5' /><set value='51.5' /><set value='51.520000457764' /><set value='51.520000457764' /><set value='51.520000457764' /><set value='51.520000457764' /><set value='' /><set value='' /><set value='' /><set value='51.529998779297' /><set value='51.540000915527' /><set value='51.529998779297' /><set value='51.540000915527' /><set value='' /><set value='' /><set value='51.549999237061' /><set value='51.549999237061' /><set value='51.549999237061' /><set value='51.560001373291' /><set value='' /><set value='' /><set value='51.540000915527' /><set value='51.540000915527' /><set value='51.560001373291' /><set value='51.560001373291' /><set value='51.569999694824' /><set value='51.569999694824' /><set value='' /><set value='51.560001373291' /><set value='51.560001373291' /><set value='51.580001831055' /><set value='51.580001831055' /><set value='51.590000152588' /><set value='51.599998474121' /><set value='' /><set value='51.569999694824' /><set value='51.569999694824' /><set value='51.590000152588' /><set value='0' /><set value='51.779998779297' /><set value='51.639999389648' /><set value='' /><set value='51.619998931885' /><set value='51.630001068115' /><set value='51.650001525879' /><set value='51.650001525879' /><set value='0' /><set value='' /><set value='' /><set value='' /><set value='' /><set value='9.590000152588' /><set value='5.010000228882' /><set value='4.610000133514' /><set value='4.630000114441' /><set value='' /><set value='4.519999980927' /><set value='4.610000133514' /><set value='4.650000095367' /><set value='4.639999866486' /><set value='4.650000095367' /><set value='4.650000095367' /><set value='' /><set value='0' /><set value='39.189998626709' /><set value='3.990000009537' /><set value='4.69000005722' /><set value='4.659999847412' /><set value='4.989999771118' /><set value='' /><set value='0' /><set value='4.980000019073' /><set value='0' /><set value='4.699999809265' /><set value='4.679999828339' /><set value='4.670000076294' /><set value='' /><set value='0' /><set value='0' /><set value='6.289999961853' /><set value='5.489999771118' /><set value='5.510000228882' /><set value='' /><set value='' /><set value='5.460000038147' /><set value='5.480000019073' /><set value='5.5' /><set value='5.539999961853' /><set value='5.550000190735' /><set value='0' /><set value='' /><set value='0' /><set value='0' /><set value='41.069999694824' /><set value='5.599999904633' /><set value='0' /><set value='6.80999994278' /><set value='' /><set value='5.550000190735' /><set value='0' /><set value='5.599999904633' /><set value='5.599999904633' /><set value='5.610000133514' /><set value='5.599999904633' /><set value='' /><set value='5.599999904633' /><set value='0' /><set value='5.699999809265' /><set value='5.670000076294' /><set value='5.679999828339' /><set value='' /><set value='' /><set value='5.619999885559' /><set value='5.639999866486' /><set value='5.650000095367' /><set value='5.659999847412' /><set value='5.679999828339' /><set value='5.679999828339' /><set value='' /><set value='5.55999994278' /><set value='5.650000095367' /><set value='5.670000076294' /><set value='5.679999828339' /><set value='5.670000076294' /><set value='5.719999790192' /><set value='' /><set value='' /><set value='' /><set value='' /><set value='5.69000005722' /><set value='0' /><set value='0' /><set value='' /><set value='' /><set value='' /><set value='' /><set value='' /><set value='5.699999809265' /><set value='5.699999809265' /></dataset><dataset seriesname='Full Backup' color='80ff80' showValue='1' anchorBorderColor='0060ff' anchorBgColor='80ff80' lineThickness='2'><set value='' /><set value='112.069999694824' /><set value='' /><set value='' /><set value='' /><set value='' /><set value='' /><set value='' /><set value='145.699996948242' /><set value='' /><set value='' /><set value='' /><set value='' /><set value='' /><set value='' /><set value='0' /><set value='' /><set value='' /><set value='' /><set value='' /><set value='' /><set value='' /><set value='141.419998168945' /><set value='' /><set value='' /><set value='' /><set value='' /><set value='' /><set value='' /><set value='141.429992675781' /><set value='' /><set value='' /><set value='' /><set value='' /><set value='' /><set value='' /><set value='141.460006713867' /><set value='' /><set value='' /><set value='' /><set value='' /><set value='' /><set value='' /><set value='141.470001220703' /><set value='' /><set value='' /><set value='' /><set value='' /><set value='' /><set value='' /><set value='141.509994506836' /><set value='' /><set value='' /><set value='' /><set value='' /><set value='' /><set value='' /><set value='141.520004272461' /><set value='' /><set value='' /><set value='' /><set value='' /><set value='' /><set value='' /><set value='141.570007324219' /><set value='' /><set value='' /><set value='' /><set value='' /><set value='' /><set value='' /><set value='141.580001831055' /><set value='' /><set value='' /><set value='' /><set value='' /><set value='' /><set value='' /><set value='141.610000610352' /><set value='' /><set value='' /><set value='' /><set value='' /><set value='' /><set value='' /><set value='142.25' /><set value='' /><set value='' /><set value='' /><set value='' /><set value='' /><set value='' /><set value='160.460006713867' /><set value='' /><set value='' /><set value='' /><set value='' /><set value='' /><set value='' /><set value='130.289993286133' /><set value='' /><set value='' /><set value='' /><set value='' /><set value='' /><set value='' /><set value='130.660003662109' /><set value='' /><set value='' /><set value='' /><set value='' /><set value='' /><set value='' /><set value='181.619995117188' /><set value='' /><set value='' /><set value='' /><set value='' /><set value='' /><set value='' /><set value='181.449996948242' /><set value='' /><set value='' /><set value='' /><set value='' /><set value='' /><set value='' /><set value='181.449996948242' /><set value='' /><set value='' /><set value='' /><set value='' /><set value='' /><set value='' /><set value='181.470001220703' /><set value='' /><set value='' /><set value='' /><set value='' /><set value='' /><set value='' /><set value='181.470001220703' /><set value='' /><set value='' /><set value='' /><set value='' /><set value='' /><set value='' /><set value='81.650001525879' /><set value='' /><set value='' /><set value='' /><set value='' /><set value='' /><set value='' /><set value='81.639999389648' /><set value='' /><set value='' /><set value='' /><set value='' /><set value='' /><set value='' /><set value='82.029998779297' /><set value='' /><set value='' /><set value='' /><set value='' /><set value='' /><set value='' /><set value='82.050003051758' /><set value='' /><set value='' /><set value='' /><set value='' /><set value='' /><set value='' /><set value='0' /><set value='' /><set value='' /><set value='' /><set value='' /><set value='' /><set value='' /><set value='0' /><set value='' /><set value='' /><set value='' /><set value='' /><set value='' /><set value='' /><set value='0' /><set value='' /><set value='' /><set value='' /><set value='' /><set value='' /><set value='' /><set value='18.930000305176' /><set value='' /><set value='' /><set value='' /><set value='' /><set value='' /><set value='' /><set value='18.959999084473' /><set value='' /><set value='' /><set value='' /><set value='' /><set value='' /><set value='' /><set value='18.979999542236' /><set value='' /><set value='' /><set value='' /><set value='' /><set value='' /><set value='' /><set value='19.010000228882' /><set value='' /><set value='' /><set value='' /><set value='' /><set value='' /><set value='' /><set value='18.579999923706' /><set value='' /><set value='' /><set value='' /><set value='' /><set value='' /><set value='' /><set value='' /><set value='' /><set value='' /><set value='' /><set value='' /><set value='' /><set value='' /><set value='' /><set value='' /><set value='' /><set value='' /><set value='' /><set value='' /><set value='' /><set value='81.889999389648' /><set value='' /><set value='' /><set value='' /><set value='' /><set value='' /><set value='' /><set value='81.910003662109' /><set value='' /><set value='' /><set value='' /><set value='' /><set value='' /><set value='' /><set value='81.940002441406' /><set value='' /><set value='' /><set value='' /><set value='' /><set value='' /><set value='' /><set value='82.040000915527' /><set value='' /><set value='' /><set value='' /><set value='' /><set value='' /><set value='' /><set value='' /><set value='' /><set value='' /><set value='' /><set value='' /><set value='' /><set value='' /><set value='39.150001525879' /><set value='' /><set value='' /><set value='' /><set value='' /><set value='' /><set value='' /><set value='0' /><set value='' /><set value='' /><set value='' /><set value='' /><set value='' /><set value='' /><set value='39.209999084473' /><set value='' /><set value='' /><set value='' /><set value='' /><set value='' /><set value='' /><set value='39.240001678467' /><set value='' /><set value='' /><set value='' /><set value='' /><set value='' /><set value='' /><set value='40.860000610352' /><set value='' /><set value='' /><set value='' /><set value='' /><set value='' /><set value='' /><set value='' /><set value='' /><set value='' /><set value='' /><set value='' /><set value='' /><set value='' /><set value='41.080001831055' /><set value='' /><set value='' /><set value='' /><set value='' /><set value='' /><set value='' /><set value='41.110000610352' /><set value='' /><set value='' /><set value='' /><set value='' /><set value='' /><set value='' /><set value='' /><set value='' /><set value='' /><set value='' /><set value='' /><set value='' /><set value='' /><set value='' /><set value='' /><set value='' /><set value='' /><set value='' /><set value='' /><set value='' /><set value='41.259998321533' /><set value='' /><set value='' /><set value='' /><set value='' /><set value='' /><set value='' /><set value='0' /><set value='' /><set value='' /><set value='' /><set value='' /><set value='' /><set value='' /></dataset></graph>"); chartGB.render("chartGBdiv"); </script>
  21. Found the answer in another post - in the setDataXML Graph area, include: plotGradientColor='' - this seems to turn off gradients. This should be documented somewhere. In the documentation on gradients, many parameters say "If you have opted to include gradients..." but nowhere does it tell you how to opt (or opt out) of using gradients.
  22. We have the same problem, but this solution is unacceptable. Is there no simple, global way to disable plot gradients on multi-series bar charts? I've tried adding a second (gradient) color to each bar that's the same as the base color - that ought to disable the gradient but it doesn't.