dtnguyen02

Members
  • Content count

    4
  • Joined

  • Last visited

About dtnguyen02

  • Rank
    Forum Newbie
  1. remove gradient from area chart

    Hi, Thanks for helping me solve the gradient problem, no more gradients yay! However, there's a different problem where I want to only show the top plot border of a dataset. I attached the xml and screenshot of the draggable area chart. Notice how there's the dark thick plot border around the entire area of the dataset labeled 'Actual'. I'd like to just show the top plot border, so it would simulate a line. draggableareachart.bmp DragArea1.xml
  2. remove gradient from area chart

    Sorry, I should have been more detailed about what I was trying to do. I used the plotGradientColor as an attribute of the chart element and it worked. However, if I added another dataset to the area chart, then the second dataset will also use the color specified for the plotGradientColor. I don't want any gradients for this area chart at all. Is this possible? I attached a screenshot of the area chart with two datasets. I tried copying the xml here but it wouldn't encode it right. It's pretty much the first post's xml with a second dataset.
  3. remove gradient from area chart

    Thanks for the reply. So I added plotGradientColor='FF0000' as an attribute of the dataset element, but it didn't make a difference.
  4. I am using the draggable area chart. How do I remove the gradient from this area chart? This is my exact xml: <chart palette='1' caption='Please estimate product sales for 2007, 2008 & 2009' subcaption='Drag the anchors (markers) to adjust data' showvalues='0' xAxisName='Year' yAxisName='Units' restoreBtnBorderColor='A2A3A0' formBtnBorderColor='A2A3A0' canvasPadding='20' dragBorderThickness='3' formAction='DataHandler.html' yAxisMaxValue='100'> <categories> <category name='2005 (Actuals)' /> <category name='2006 (Actuals)' /> <category name='2007 (Predicted)' /> <category name='2008 (Predicted)' /> <category name='2009 (Predicted)' /> </categories> <dataset id='IJ' seriesName='Critical' alpha='80' color='FF0000' anchorAlpha='0' showPlotBorder='1' plotFillAlpha='100' plotFillColor='FF0000'> <set id='IJ2005' value='100' allowDrag='0' /> <set id='IJ2006' value='100' allowDrag='0' /> <set id='IJ2007' value='100' allowDrag='0' /> <set id='IJ2008' value='100' allowDrag='0' /> <set id='IJ2009' value='100' allowDrag='0' /> </dataset> <styles> <definition> <style name="myCaptionFont" type="font" font="Arial" size="14" bold="1" /> <style name="mySubCaptionFont" type="font" font="Arial" size="10" bold="0" /> </definition> <application> <apply toObject="Caption" styles="myCaptionFont" /> <apply toObject="SubCaption" styles="mySubCaptionFont" /> </application> </styles> </chart>