jesterbear

Members
  • Content count

    5
  • Joined

  • Last visited

About jesterbear

  • Rank
    Forum Newbie
  1. I am building a prototype app, and was curious if there is a way to simulate the behaviour of the realtime charts by using a csv or other xml file for the data?
  2. Just a number ...

    I need a chart, static and realtime, that just shows a number. heh .. maybe thats not a chart, but I just need to show a number, sometimes its an integer, sometimes it is time, i.e., 2:30 or just a 12. I figured that I could just use something like sifr and ajax update a number, but I was just curious. Can this be done with Fusion Charts? Thanks!
  3. Thanks for the link. One problem with the chart in the example, is that the colors are not consistent. When you first hit that link, you see that Product A is blue. After you uncheck Product A, Prodcut B turns blue. Certainly this is not a good way to be consistent with the presentation of the data. I noticed in the javascript, that there is a function called getProductXML(). It defines what goes into the dataset tag of the xml. Here is where I would normally define the color like so ... dataset seriesName='West Coast' color='D56658' How can the color value be added to the array so that it can be assigned to the correct series? I am not a programmer, and I would greatly appreciate your help. Thanks.
  4. I have a multi series line chart that can have 10 to 20 sets of data. Are there any examples out there of how to use javascript and some checkboxes to change the display of the lines? I want to make it so that if the user wants to see only 3 of the 15 lines, they could uncheck the 12 that they do not want to see, and toggle their view. Is this possible? Thanks
  5. Custom yaxis interval

    I am using the MS line Chart and want to set specific values for the y axis, like so ... 5 4.5 4 3.5 3 2.5 2 1.5 1 .5 0 i should note, that it currently does 5 4 3 2 1 0 I have not seen anything in the docs about this. Can it be done? Thanks.