dcwebcat

Members
  • Content count

    26
  • Joined

  • Last visited

  • Days Won

    1

Everything posted by dcwebcat

  1. Hi - Is it possible to have multiple font colors for the data values? I am using a 3D Column Chart. So one data vale of 1.00 would be black, the next data value of 2.50 would be white, etc. Many thanks!!!
  2. Hello - Is it possible to have the data import from Excel into the XML file for an Area 2D chart? We have a chart that has hundreds of data points and to manually enter them all would be very time consuming. Any guidance is appreciated!!! Thanks!
  3. Slanted Labels - Need Two Lines

    Hello - I have a 3D column chart that has slanted labels on the xAxis. I am using: MSColumn3D.swf Is it possible to have each label be two lines instead of one? I have tried using: <categories> <category name='LINE 1{br}LINE 2' hoverText='TEXT'/> </categories> The second line does not show up. Thank you!
  4. 3D Column Spacing

    Hello - We have the paid version of FusionCharts. I have created a 3D column chart. There are a total of 6 columns. I would like to space them as this: Column1 and Column 2 right up against each other. Add space here.... then Column 3 and Column 4 right up against each other. Add space here... then Column 5 and Column 6 right up against each other. So, in other words two columns next to each other, then some space, then the next two columns next together, then some space, etc. Right now they are all spaced evenly apart. An example is here but the one I am using is 3D. http://docs.fusioncharts.com/charts/?/ChartSS/MSColumn2D.html Thanks so much!!
  5. Hello - Is it possible to place the Data Label inside of a 3D column? I would like to have the values AND the Data Label inside the column. I have the values inside but cannot figure out how to place the Data Label in there. They show up under the chart by default. Many thanks!!!!
  6. Subcaption Line Breaks In Xml

    Hello - I need to add three (3) line breaks (hard returns) within the sub-caption. I have tried using {BR}, <br>, etc. It works in the Flash version but not in the mobile version. Any guidance is greatly appreciated!! For example: subCaption='(This line of text goes on line 1) ******This goes on the first line. Then, there should be three (3) line breaks before the next line of text. This line of text goes on line 2'
  7. Hello - Are all of the FusionCharts supposed to animate in the "non-Flash" version? In other words are they supposed to animate on devices that do not have a Flash player? The reason I ask is because I am re-working some of my XML code so that it is strict XML to allow the JavaScript version to work on mobile devices that do not have Flash. The problem is that the charts show up but do not animate on devices that do not have Flash. Any guidance is greatly appreciated!!
  8. 3D Column Chart Value Display

    Hi - I am working on a 3D column chart. Column3D.swf The Y axis starts at -1.00 at the bottom and goes to 1.00 at the top. The data values range from 1.00 to -1.00 (12 values total within that range). When displaying the chart the 1.00 and the -1.00 end up inside the column. Whereas the other values are outside of the columns. I am guessing this is because I have the Y axis values set from 1.00 to -1.00. However, they need to be set as that. Is there any workaround to push those 1.00 and -1.00 values outside of the column? Can I add space somehow? Many thanks!
  9. 3D Column Chart Value Display

    Thank you so much! This is a great workaround. One last question... is it possible to make the trendline color different from the y axis label color? I wanted to have the trendlines orange and the labels black. Thanks again!
  10. Hello - I have a line chart that I am working on (Line.swf) - Paid version. My line chart has over 1300 data points. I am only displaying 12 data labels for the year 1900 - 2010. The problem is that the years are not displaying correctly. When I view normally there is just a number and then a period after the number. If I try using labelDisplay='rotate then the numbers cut off. Any help is greatly appreciated!!!! Please see attached screen shots and also my XML below. Since there are so many data points I am only including a portion of the XML <chart caption='TITLE GOES HERE' subCaption='SUB TITLE GOES HERE' showYAxisValues='1' showValues='0' anchorRadius='0' linethickness='1' yAxisMinValue='0' yAxisMaxValue='100' numberSuffix='%' showLabels='0' canvasBaseColor='E87506' lineColor='5a5248' divlinecolor='F47E00' showCanvasBase="0" borderAlpha='0' canvasBgColor ="FFFFFF" bgColor='FFFFFF' baseFont ='Arial' baseFontColor ='000000' captionPadding="25" labelPadding="20" maxLabelWidthPercent="50" labelDisplay='rotate'> <styles> <definition> <style name='myAxisTitlesFont' type='font' font='Arial' size='8' bold='0'/> <style name='myLabelsFont' type='font' font='Arial' size='10' color='000000' bold='0' underline='0'/> </definition> <application> <apply toObject='XAxisName' styles='myAxisTitlesFont' /> <apply toObject='DataValues' styles='myLabelsFont' /> </application> </styles> <set label="1900" value="0" showLabel='1'/> <set label="2010" value="7.4" showLabel='1' /> <set label="February 1, 2010" value="11.2" /> <set label="March 1, 2010" value="9.5" /> <set label="April 1, 2010" value="7.9" /> <set label="May 1, 2010" value="9.1" /> <set label="June 1, 2010" value="12.5" /> </chart>
  11. 3D Column Chart Value Display

    Hello - Attached is a screen shot of the chart. I have changed the caption and data label names for confidentiality purposes. Below is my XML <?xml version="1.0" encoding="UTF-8"?> <chart caption="TITLE" subCaption="" yAxisMinValue='-1.00' yAxisMaxValue='1.00' yAxisName="" xAxisName="" palette="" animation="1" showValues="1" forceDecimals='1' formatNumberScale="1" numberSuffix="" labelDisplay="ROTATE" baseFontColor ='000000'baseFont ='Arial' numDivLines="3" divLineColor="E87506" slantLabels="1" paletteColors='021E2F,021E2F,021E2F,827566,021E2F,827566,021E2F,021E2F,021E2F,827566,827566,827566,827566' zeroPlaneBorderColor='E87506' showCanvasBase="0" canvasBaseColor='E87506' captionPadding="25"> <styles> <definition> <style type="font" name="CaptionFont" size="15" color="000000" /> <style type="font" name="SubCaptionFont" bold="0" /> <style name='myAxisTitlesFont' type='font' font='Arial' size='10' bold='0' /> </definition> <application> <apply toObject="caption" styles="CaptionFont" /> <apply toObject="SubCaption" styles="SubCaptionFont" /> <apply toObject='XAxisName' styles='myAxisTitlesFont'/> </application> </styles> <set label="Label 1" value="1.00" /> <set label="Label 2" value="1.00" /> <set label="Label 3" value="0.82" /> <set label="Label 4" value="0.79" /> <set label="Label 5" value="0.75" /> <set label="Label 6" value="0.75" /> <set label="Label 7" value="0.14" /> <set label="Label 8" value="0.04" /> <set label="Label 9" value="0.00" /> <set label="Label 10" value="-0.06" /> <set label="Label 11" value="-0.65" /> <set label="Label 12" value="-1.00" /> </chart>
  12. Hi - Working on several charts and I keep running into all sorts of customized questions. Okay, so again this is another 3D column chart. There are two charts side by side so there is one HTML doc and two XML files (one for each chart). Everything looks great except for one thing. Both charts are 3D column charts using MSColumn3D.swf. The left chart has positive and negative values and so the zero plane shows. The right chart only has positive values and so the zero plane does not show. I need for the zero plane to display on the right chart and then it would just be empty below the zero plane. Please see my XML below. THIS IS THE RIGHT CHART XML: <graph caption='TITLE OF CHART' subCaption='' xAxisName='' yAxisName='' showYAxisValues='0' showCanvasBase="0" baseFont ='Arial' baseFontColor ='000000'canvasBgColor='FFFFFF' canvasBaseColor='E87506' hovercapbgColor='FFECAA' hovercapborder='F47E00' divlinecolor='F47E00' numberSuffix='%' placeValuesInside='1' zeroPlaneShow="1"> <styles> <definition> <style type="font" name="CaptionFont" size="15" color="000000" /> <style type="font" name="SubCaptionFont" bold="0"/> <style name='myAxisTitlesFont' type='font' font='Arial' size='10' bold='0' italic='1'/> <style name='myLabelsFont' type='font' font='Arial' size='10' color='FFFFFF' bold='0' underline='0'/> </definition> <application> <apply toObject="caption" styles="CaptionFont" /> <apply toObject="SubCaption" styles="SubCaptionFont" /> <apply toObject='XAxisName' styles='myAxisTitlesFont' /> <apply toObject='DataValues' styles='myLabelsFont' /> </application> </styles> <categories> <category name='Average Return' hoverText='Simple Average Return'/> <category name='Cummulative Return' hoverText='Cummulative Return'/> <category name='Annualized Return' hoverText='Annualized Return'/> </categories> <dataset seriesname='Investor A' color='021E2F' showValue='1'> <set value='6' /> <set value='19.1' /> <set value='6' /> </dataset> <dataset seriesname='Investor B' color='5a5248' showValue='1'> <set value='6' /> <set value='12.3' /> <set value='4' /> </dataset> </graph> Any help is greatly appreciated!!!!
  13. Display Zero Plane If No Negative Values

    This works perfect!! Thanks so much!!
  14. Hi - I have two questions: 1. I have placed a vertical line on my 3D column chart to divide two sets of data/categories. Specifically, <vLine color='FFFFFF' thickness='30' alpha='100' /> within the Categories section. However, it shows up behind the zeroplane (so the orange zeroplane horizontal line appears in front of the white divider). Is there any way to get the divider to show up in front of the zeroplane? 2. How do I get rid of the space below the bottom value of -20%? Please see attached screen shot. Many thanks!!
  15. Display Zero Plane If No Negative Values

    Okay - so from what I have been able to read online, it looks like if there is no negative value then a zeroplane will not display.
  16. I figured out the spacing at the bottom issue. I had to put in the yAxisMinValue=' ' and the yAxisMaxValue='' Now i just need to figure out if I can get the white vertical line to show up "over" the orange zeroplane.
  17. Data Label Display Inside Column?

    Can the labels be centered inside of the column? Thanks again!!
  18. Data Label Display Inside Column?

    Thank you! This works great!
  19. Left Align X Name Axis

    Hello, Does anyone know how to left align the X Name Axis (at bottom of chart)? By default mine is centered. I have tried a few different things but nothing has worked yet. I am using the MSColumn3D.swf chart if that makes any difference. Many thanks!
  20. I have created an HTML page with two embedded charts side by side using the following instructions: http://docs.fusioncharts.com/charts/contents/FirstChart/MultipleCharts.html Everything looks great except that I would like to have one chart title center over the two charts. Right now there is the same title over each chart. Any help is greatly appreciated!! Thanks!
  21. 3D Column Spacing

    I ended up using this option and it works for what I need. https://www.ourrelationship.com/mod/mcfeedback/Fusion/Contents/ChartSS/XML_MSColumn3D.html
  22. Hello - I am working on an Area2D chart. I have over 2,000 data points. These range from the year 2001 through 2011. I only want to display 2001 on the left side of the X axis and 2011 all the way over to the right. Below is an example of my XML. All of the years are still showing up for each data point. Since there are so many data points I am only posting a sample of it. I have not gotten around to customizing colors and such yet. Thanks in advance for any help!!! <chart formatnumberscale="0" showValues='0' showLabels='0' caption="Sample Chart" decimalprecision="8" palette="1"> <set label="2001" value="1000.0000" showLabels='1'/> <set label="2002" value="1005.8846" '/> <set label="2002" value="1015.1330" /> <set label="2002" value="1021.4401" /> <set label="2003" value="1014.8062" /> <set label="2003" value="1011.4288" /> <set label="2004" value="1006.6202" /> <set label="2005" value="1007.8673" /> <set label="2005" value="998.3737" /> <set label="2006" value="992.1080" /> <set label="2007" value="998.8894" /> <set label="2007" value="982.7428" /> <set label="2008" value="992.6132" /> <set label="2009" value="982.7663" /> <set label="2009" value="975.5581" /> <set label="2010" value="1000.2922" /> <set label="2010" value="1002.7486" /> <set label="2010" value="1002.0056" /> <set label="2011" value="993.4601" /> <set label="2011" value="983.7045" /> <set label="2011" value="984.5471" showLabels='1'/> </chart>
  23. Hiding Specific Set Labels On Area2D Chart

    Thank you so much!! Unfortunately, when I place the remaining data into the XML which is a few thousand, the 2001 and the 2011 display as 2. on the left side and 2. on the right side. So, in other words it has the number 2 and then a period after it on both ends. When I use your example though before I add in ALL of the other data, the 2001 and 2011 display perfectly. Not sure why.
  24. Area Chart Y Axis Labels

    Hello - I hope that I am in the correct forum for this. I am trying to create an area chart. Do you know how I specify the numbers that display on the left side? I need to have them as 0, 200, 400, 600, 800, 1000, 1200, 1400. I do not want any symbols such as $, %, etc. I should also add that the bottom X axis labels go from 2001 - 2012. Then there are many data points (in decimal format) in the XML file. Data points include years 2001-2012. Many thanks!
  25. Area Chart Y Axis Labels

    Well, I updated the XML file and now the chart looks good as far as the X and Y axis labels displaying but the data is not showing up. It's just blank. <chart bgColor='E9E9E9' outCnvBaseFontColor='666666' caption='' xAxisName='' yAxisName='' numberPrefix='' showLabels='1' formatNumber='0' forceDecimals='1' formatNumberScale='0' adjustDiv='0' yAxisMaxvalue='1400' yAxisMinValue='0' numDivLines='6' showValues='0' plotFillAlpha='70' showAlternateVGridColor='1' AlternateVGridColor='e1f5ff' divLineColor='e1f5ff' vdivLineColor='e1f5ff' baseFontColor='666666' canvasBorderThickness='1' showPlotBorder='1' plotBorderThickness='0' canvaspadding='0' > <set label='2001' value='1.54' /> <set label='2001' value='1.36' /> <set label='2001' value='1.38' /> <set label='2001' value='1.06' /> <set label='2002' value='1.36' /> <set label='2003' value='1.07' /> <set label='2004' value='0.88' /> <set label='2005' value='0.69' /> <set label='2006' value='0.76' /> <set label='2007' value='0.62' /> <set label='2008' value='0.47' /> <set label='2009' value='1.07' /> <set label='2010' value='0.65' /> <set label='2011' value='1.23' /> <set label='2012' value='2.24' /> </chart>