kiranbp Report post Posted April 16, 2009 (edited) Hi I am considering using Fusion Charts V3 for an R&D project. Basically I need to be able to mark events/flags on a multi-series line graph, is this possible with Fusion Charts? An example is shown below: Many thanks Kiran Edited April 16, 2009 by Guest Share this post Link to post Share on other sites
kiranbp Report post Posted April 17, 2009 bump I really would like to use FusionCharts, so any feedback would be appreciated! Thanks Share this post Link to post Share on other sites
Dhruva Report post Posted April 17, 2009 Hello Kiran, Thank you for your interest in FusionCharts, and welcome to the forum. While flagging as such is not supported, however a similar effect can be achieved using a creative workaround. I am pasting the XML for the same, here. <chart caption='Business Results 2005 v 2006' xAxisName='Month' yAxisName='Revenue' showValues='0' numberPrefix='$'> <categories> <category label='Jan' /> <category label='Feb' /> <category label='Mar' /> <category label='Apr' /> <category label='May' /> <category label='Jun' /> <category label='Jul' /> <category label='Aug' /> <category label='Sep' /> <category label='Oct' /> <category label='Nov' /> <category label='Dec' /> </categories> <dataset seriesName='2006'> <set value='27400' /> <set value='29800'/> <set value='25800' /> <set value='26800' /> <set value='29600' displayValue='Hello!' showValue='1'/> <set value='32600' /> <set value='31800' /> <set value='36700' /> <set value='29700' /> <set value='31900' /> <set value='34800' /> <set value='24800' /> </dataset> <dataset seriesName='2005'> <set value='10000'/> <set value='11500'/> <set value='12500'/> <set value='15000'/> <set value='11000' /> <set value='9800' /> <set value='11800' /> <set value='19700' /> <set value='21700' /> <set value='21900' /> <set value='22900' /> <set value='20800' /> </dataset> </chart> I hope this helps! Share this post Link to post Share on other sites
kiranbp Report post Posted April 17, 2009 Many thanks for the fast response. I think this may indeed suffice to solve my problem, cheers! Share this post Link to post Share on other sites
Dhruva Report post Posted April 18, 2009 You are most welcome! Let's hope that it works out for you! Cheers! Share this post Link to post Share on other sites