mikko Report post Posted February 15, 2008 I've got several charts with data divided by days of month. I'd like to highlight the weekends (or any given day, actually), but haven't found anything to do this. (I've attached an image to demonstrate how it should look like). I've tried vLines, but they don't let me set the colour between two lines. vTrendlines would do the trick, but they only work with scatter charts - mine all are multi-series 2D line. Any way to do this without touching the source code? Share this post Link to post Share on other sites
Pallav Report post Posted February 15, 2008 I'm afraid this feature is not currently present in FusionCharts. We'll try and implement something to resolve this in next version. Share this post Link to post Share on other sites
mil2far Report post Posted October 20, 2009 Can you give me sample of your VTrendLines? I tried it many ways but it cant be helped, I am using PHP Class to generate XML Data. This is my code, for ($i=1; $i<=$sum;$i++) { if (isset($data[$i])) $FC->addChartData($data[$i]); else $FC->addChartData(0); $day = intval(date('w', mktime(0, 0, 0, $m, $i, $y))); if ($day == 0 || $day == 6) $FC->addVTrendLine("startValue=".($i-1).".5;endValue=".$i.".5;alpha=25;color=FF0000"); } Thanks Share this post Link to post Share on other sites
Guest Basundhara Ghosal Report post Posted October 21, 2009 Hi, Welcome to FusionChats forum. Could you please have a look to the following link:- Ref:-http://www.fusioncharts.com/docs/Contents/ChartSS/Scatter.html However if it does not work, please send us the generated XML codes that you are using as an attachment so that we might look into it. Also could you please specify us a bit elaborately the issue that you are facing? Awaiting your reply. Share this post Link to post Share on other sites