AlexKing

Members
  • Content count

    4
  • Joined

  • Last visited

About AlexKing

  • Rank
    Forum Newbie
  1. How to change Value position?

    Hello, I'm using showValue='1' and the values come up fine. However, since I'm using a ScrollLine2DChart, some of the values go right on top of the line and are unreadable. I tried to fix this by using valuePadding='10' but that only moved the value directly upwards. This led to a conflict for some of the labels that were originally underneath the data points... Is there any way to move the value to the left or the right? Thanks for the help!
  2. Hello, I have dynamic data that changes constantly. I use a server side script to get data from the database, convert it into a csv file, read it into flash, and use xml to display the data. I can get the 'connectNullData=1' to work great, but I am wondering how to make the null data dashed WITHOUT having to specify it in the set label like this: < set label='Apr' value='473' dashed='1'/> I would like it to make any null data dashed. Since my data is dynamic, I cannot know beforehand which < set label> to put the dashed parameter in. Is there any workaround to this? Help is truly appreciated!
  3. Hi Basundhara Ghosal, That's the problem. I don't want to have to set an exact different amount because everything needs to be general. Basically, the csv can have either 28,29,30, or 31 cells in it, but all of them are going to be read by ONE fusion chart. Right now, the fusion chart has 31 elements. What I want to do is if any of the values for the last few items are 'null', I want the labeled to be removed completely. For example, let's say the month is February, which has 28 days. When the fusion chart goes to render, it realizes that (I removed the < because it didn't show up) set value='VariableFor29thDay'> set value='VariableFor30thDay'> set value='VariableFor31stDay'> Are all null, I want it to remove the corresponding labels so that the chart only shows 28 labels instead of 31 labels with 3 data points being nonexistent. Is there any way to achieve this? Any help is appreciated. Thanks!
  4. Hey guys, firstly, I want to say you guys are doing an excellent job! Keep it up! I have a problem that I need to fix. You see, I have a set up where we can dynamically import data from CSV files. The problem is that fusion charts are generally static for the most part. I want to display data over the course of a month - say # of ice cream bars sold. Sometimes a month has 28 days, other times 29,30, or 31. On those days when it the month has less than 31 days, the chart will output a "undefined" value for the label and get rid of the null data. However, I want it to get rid of the corresponding LABEL as well. Is there any way I can achieve this? I've read through a lot of the documentation (which is VERY well done, btw), but I can't seem to find an answer. The closest thing I found was 'connectNullData' but that's not the functionality I'm looking for. I want not only the null data to disappear from the graph, but the labels as well. Thanks!