﻿<?xml version='1.0' encoding='UTF-8'?><rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/"><channel><title>FusionCharts Forum / FusionCharts v3 / Suggestions &amp; Requests  / bar-graphs fade to white through the bar / Latest Posts</title><generator>InstantForum.NET v4.1.4</generator><description>FusionCharts Forum</description><link>http://www.fusioncharts.com/forum/</link><webMaster>support@fusioncharts.com</webMaster><lastBuildDate>Thu, 20 Nov 2008 10:03:29 GMT</lastBuildDate><ttl>20</ttl><item><title>RE: bar-graphs fade to white through the bar</title><link>http://www.fusioncharts.com/forum/Topic3719-7-1.aspx</link><description>This is awesome! I spent an hour trying to get rid of the white :-)</description><pubDate>Sun, 15 Jun 2008 08:05:24 GMT</pubDate><dc:creator>elena1707</dc:creator></item><item><title>RE: bar-graphs fade to white through the bar</title><link>http://www.fusioncharts.com/forum/Topic3719-7-1.aspx</link><description>Great.  I needed this bit of info also!  &lt;br&gt;&lt;br&gt;Thanks.</description><pubDate>Thu, 12 Jun 2008 09:02:43 GMT</pubDate><dc:creator>stevew</dc:creator></item><item><title>RE: bar-graphs fade to white through the bar</title><link>http://www.fusioncharts.com/forum/Topic3719-7-1.aspx</link><description>Just set [chart plotGradientColor='' ]</description><pubDate>Thu, 21 Feb 2008 04:05:33 GMT</pubDate><dc:creator>Pallav</dc:creator></item><item><title>RE: bar-graphs fade to white through the bar</title><link>http://www.fusioncharts.com/forum/Topic3719-7-1.aspx</link><description>i am also facing the same problem,&lt;/P&gt;&lt;P&gt;can you please provide me a solution.&lt;/P&gt;&lt;P&gt;i am getting the fade effect to the bars. but i dont need that. &lt;/P&gt;&lt;P&gt;how to remove it, i only want single color. how to remove that fade effect.&lt;/P&gt;&lt;P&gt;please help me out.&lt;/P&gt;&lt;P&gt;thanks&lt;/P&gt;&lt;P&gt;-praveen</description><pubDate>Wed, 20 Feb 2008 03:39:57 GMT</pubDate><dc:creator>praveen.battula</dc:creator></item><item><title>RE: bar-graphs fade to white through the bar</title><link>http://www.fusioncharts.com/forum/Topic3719-7-1.aspx</link><description>Just set &lt;chart ... plotGradientColor='' ...&gt;</description><pubDate>Thu, 10 Jan 2008 02:46:33 GMT</pubDate><dc:creator>Pallav</dc:creator></item><item><title>bar-graphs fade to white through the bar</title><link>http://www.fusioncharts.com/forum/Topic3719-7-1.aspx</link><description>Dear Support,&lt;BR&gt;&lt;BR&gt;We are using FusionChart ver3.0 for our Coldfusion appliation. The&lt;BR&gt;bar-graphs currently fade to white through the bar. Can we avoid the&lt;BR&gt;fade effect in the bar. i.e can these be changed so that the whole bar&lt;BR&gt;is a single colour please? &lt;BR&gt;&lt;BR&gt;Regards,&lt;BR&gt;Anil &lt;P&gt;The following code we have used for generating the graph which is attached in here.&lt;BR&gt;&lt;BR&gt;&amp;lt;cfsilent&amp;gt;&lt;BR&gt;&amp;lt;cfset strXMLData_T = "&amp;lt;chart xAxisName='Week(DD-MON)' yAxisName='Quantity' rotateLabels='1' caption='Demand Backlog' subCaption='(#graphTitle#)' showLabels='1' showvalues='0' showSecondaryLimits='0' numberPrefix='' formatNumber='1' formatNumberScale='1' decimalPrecision='2' divLineDecimalPrecision='2' limitsDecimalPrecision='2' slantLabels='1' animation='1'&amp;gt;" &amp;amp;chr(10)&amp;gt;&lt;BR&gt;&amp;lt;!--- 'Generate the category elements - category elements are the x-axis labels ---&amp;gt; &lt;BR&gt;&amp;lt;cfset strCategories_T = ""&amp;gt;&lt;BR&gt;&amp;lt;cfset strCategories_T = strCategories_T &amp;amp; "&amp;lt;categories&amp;gt;" &amp;amp;chr(10)&amp;gt;&lt;BR&gt;&amp;lt;cfloop index="elem" from="1" to="19"&amp;gt;&lt;BR&gt;&amp;lt;cfset strCategories_T = strCategories_T &amp;amp; "&amp;lt;category label='" &amp;amp; dateFormat(ArrDemandBackGraph[elem][1],"dd-MMM") &amp;amp; "' /&amp;gt;" &amp;amp;chr(10)&amp;gt;&lt;BR&gt;&amp;lt;cfif elem eq 6&amp;gt;&lt;BR&gt;&amp;lt;cfset strCategories_T = strCategories_T &amp;amp; "&amp;lt;vLine color='ffff00' thickness='3' /&amp;gt;"&amp;amp;chr(10)&amp;gt;&lt;BR&gt;&amp;lt;/cfif&amp;gt;&lt;BR&gt;&amp;lt;/cfloop&amp;gt;&lt;BR&gt;&amp;lt;cfset strCategories_T = strCategories_T &amp;amp; "&amp;lt;/categories&amp;gt;" &amp;amp;chr(10)&amp;gt;&lt;BR&gt;&amp;lt;!--- Bar: Demand BackLog ---&amp;gt;&lt;BR&gt;&amp;lt;cfset strDataSet_T= ""&amp;gt;&lt;BR&gt;&amp;lt;cfset strDataSet_T = strDataSet_T &amp;amp; "&amp;lt;dataset seriesName='Demand Backlog' color='EC0000' showValues='0'&amp;gt;" &amp;amp;chr(10)&amp;gt;&lt;BR&gt;&amp;lt;cfloop index="elem" from="1" to="19"&amp;gt;&lt;BR&gt;&amp;lt;cfset strDataSet_T = strDataSet_T &amp;amp; "&amp;lt;set value='" &amp;amp; ArrDemandBackGraph[elem][2] &amp;amp; "' /&amp;gt;" &amp;amp;chr(10)&amp;gt;&lt;BR&gt;&amp;lt;/cfloop&amp;gt;&lt;BR&gt;&lt;BR&gt;&amp;lt;cfset strDataSet_T = strDataSet_T &amp;amp; "&amp;lt;/dataset&amp;gt;" &amp;amp;chr(10)&amp;gt;&lt;BR&gt;&amp;lt;!--- Bar: Actual Production Plan ---&amp;gt;&lt;BR&gt;&amp;lt;cfset strDataSet_T = strDataSet_T &amp;amp; "&amp;lt;dataset seriesName='Actual Production' color='008200' showValues='0'&amp;gt;" &amp;amp;chr(10)&amp;gt;&lt;BR&gt;&amp;lt;cfloop index="elem" from="1" to="19"&amp;gt;&lt;BR&gt;&amp;lt;cfset strDataSet_T = strDataSet_T &amp;amp; "&amp;lt;set value='" &amp;amp; ArrActualProdGraph[elem][2] &amp;amp; "' /&amp;gt;" &amp;amp;chr(10)&amp;gt;&lt;BR&gt;&amp;lt;/cfloop&amp;gt;&lt;BR&gt;&amp;lt;cfset strDataSet_T = strDataSet_T &amp;amp; "&amp;lt;/dataset&amp;gt;" &amp;amp;chr(10)&amp;gt;&lt;BR&gt;&amp;lt;!--- Bar: Previous Demand backlog ---&amp;gt;&lt;BR&gt;&amp;lt;cfset strDataSet_T = strDataSet_T &amp;amp; "&amp;lt;dataset seriesName='Previous Demand backlog' color='0000FF' showValues='0'&amp;gt;" &amp;amp;chr(10)&amp;gt;&lt;BR&gt;&amp;lt;cfloop index="elem" from="1" to="19"&amp;gt;&lt;BR&gt;&amp;lt;cfset strDataSet_T = strDataSet_T &amp;amp; "&amp;lt;set value='" &amp;amp; ArrPrevDemGraph[elem][2] &amp;amp; "' /&amp;gt;" &amp;amp;chr(10)&amp;gt;&lt;BR&gt;&amp;lt;/cfloop&amp;gt;&lt;BR&gt;&amp;lt;cfset strDataSet_T = strDataSet_T &amp;amp; "&amp;lt;/dataset&amp;gt;" &amp;amp;chr(10)&amp;gt;&lt;BR&gt;&amp;lt;!--- Line: Last Plan run rate ---&amp;gt;&lt;BR&gt;&amp;lt;cfset strDataSet_T = strDataSet_T &amp;amp; "&amp;lt;dataset lineThickness='2' seriesName='Last Plan run rate' color='000000' renderAs='Line'&amp;gt;" &amp;amp;chr(10)&amp;gt;&lt;BR&gt;&amp;lt;cfloop index="elem" from="1" to="19"&amp;gt;&lt;BR&gt;&amp;lt;cfset strDataSet_T = strDataSet_T &amp;amp; "&amp;lt;set value='" &amp;amp; ArrGetlastplanrunrateGraph[elem][2] &amp;amp; "' /&amp;gt;" &amp;amp;chr(10)&amp;gt;&lt;BR&gt;&amp;lt;/cfloop&amp;gt;&lt;BR&gt;&amp;lt;cfset strDataSet_T = strDataSet_T &amp;amp; "&amp;lt;/dataset&amp;gt;" &amp;amp;chr(10)&amp;gt;&lt;BR&gt;&amp;lt;cfset strXMLData_T = strXMLData_T &amp;amp; strCategories_T &amp;amp; strDataSet_T &amp;amp; "&amp;lt;/chart&amp;gt;"&amp;gt;&lt;BR&gt;&amp;lt;/cfsilent&amp;gt;&lt;BR&gt;&amp;lt;!--- &amp;lt;div align="center" class="text"&amp;gt; ---&amp;gt;&lt;BR&gt;&amp;lt;OBJECT classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://fpdownload.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=8,0,0,0" WIDTH="990" HEIGHT="320" id="FusionCharts" ALIGN=""&amp;gt;&lt;BR&gt;&amp;lt;PARAM NAME="FlashVars" value="&amp;amp;dataXML=&amp;lt;cfoutput&amp;gt;#strXMLData_T#&amp;lt;/cfoutput&amp;gt;"&amp;gt;&lt;BR&gt;&amp;lt;PARAM NAME=movie VALUE="Charts/MSCombi2D.swf?chartWidth=990&amp;amp;chartHeight=320"&amp;gt;&lt;BR&gt;&amp;lt;PARAM NAME=quality VALUE=high&amp;gt;&lt;BR&gt;&amp;lt;PARAM NAME=bgcolor VALUE=#FFFFFF&amp;gt;&lt;BR&gt;&amp;lt;EMBED src="Charts/MSCombi2D.swf?chartWidth=990&amp;amp;chartHeight=320" FlashVars="&amp;amp;dataXML=&amp;lt;cfoutput&amp;gt;#strXMLData_T#&amp;lt;/cfoutput&amp;gt;" quality=high bgcolor=#FFFFFF WIDTH="990" HEIGHT="320" NAME="FusionCharts" ALIGN="" TYPE="application/x-shockwave-flash" PLUGINSPAGE="http://www.macromedia.com/go/getflashplayer"&amp;gt;&amp;lt;/EMBED&amp;gt;&lt;BR&gt;&amp;lt;/OBJECT&amp;gt; &lt;BR&gt;&lt;IMG src="http://www.fusioncharts.com/support/images/apps/imagebmp.gif" align=center&gt; &lt;A href="http://www.fusioncharts.com/support/index.php?pg=file&amp;amp;from=3&amp;amp;id=20276&amp;amp;reqid=68119fvudzm&amp;amp;reqhisid=156046"&gt;Demand backlog.bmp&lt;/A&gt;&lt;BR&gt;</description><pubDate>Wed, 09 Jan 2008 04:14:20 GMT</pubDate><dc:creator>anil</dc:creator></item></channel></rss>