<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
		>
<channel>
	<title>Comments on: Creating a linear gradient fill on a ColumnChart control&#8217;s column series in Flex</title>
	<atom:link href="http://blog.flexexamples.com/2007/11/20/creating-a-linear-gradient-fill-on-a-columnchart-controls-column-series-in-flex/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.flexexamples.com/2007/11/20/creating-a-linear-gradient-fill-on-a-columnchart-controls-column-series-in-flex/</link>
	<description>Just a bunch of Adobe Flex Examples</description>
	<lastBuildDate>Fri, 19 Mar 2010 18:54:20 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: Shif</title>
		<link>http://blog.flexexamples.com/2007/11/20/creating-a-linear-gradient-fill-on-a-columnchart-controls-column-series-in-flex/comment-page-1/#comment-7221</link>
		<dc:creator>Shif</dc:creator>
		<pubDate>Thu, 11 Mar 2010 09:45:53 +0000</pubDate>
		<guid isPermaLink="false">http://blog.flexexamples.com/2007/11/20/creating-a-linear-gradient-fill-on-a-columnchart-controls-column-series-in-flex/#comment-7221</guid>
		<description>Replaced ColumnChart to AreaChart and ColumnSeries to AreaSeries, and the gradient doesn&#039;t work.
Is it possible to make area chart with gradient? If yes how?
thanx</description>
		<content:encoded><![CDATA[<p>Replaced ColumnChart to AreaChart and ColumnSeries to AreaSeries, and the gradient doesn&#8217;t work.<br />
Is it possible to make area chart with gradient? If yes how?<br />
thanx</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Itay Cohen</title>
		<link>http://blog.flexexamples.com/2007/11/20/creating-a-linear-gradient-fill-on-a-columnchart-controls-column-series-in-flex/comment-page-1/#comment-6243</link>
		<dc:creator>Itay Cohen</dc:creator>
		<pubDate>Thu, 05 Nov 2009 06:58:06 +0000</pubDate>
		<guid isPermaLink="false">http://blog.flexexamples.com/2007/11/20/creating-a-linear-gradient-fill-on-a-columnchart-controls-column-series-in-flex/#comment-6243</guid>
		<description>Any chance that we can set a different fill (non-gradient) for the legend?</description>
		<content:encoded><![CDATA[<p>Any chance that we can set a different fill (non-gradient) for the legend?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: wangyoude</title>
		<link>http://blog.flexexamples.com/2007/11/20/creating-a-linear-gradient-fill-on-a-columnchart-controls-column-series-in-flex/comment-page-1/#comment-1960</link>
		<dc:creator>wangyoude</dc:creator>
		<pubDate>Mon, 16 Feb 2009 02:29:41 +0000</pubDate>
		<guid isPermaLink="false">http://blog.flexexamples.com/2007/11/20/creating-a-linear-gradient-fill-on-a-columnchart-controls-column-series-in-flex/#comment-1960</guid>
		<description>Hey Peter,

when I use
&lt;pre class=&quot;code&quot;&gt;
var linearGradient:LinearGradient = new LinearGradient();
var arr:Array = [];
arr.push(new GradientEntry(0xF68620, 0, 1));
arr.push(new GradientEntry(0xF68620, 0.5, 0.25));
linearGradient.angle = 90;
linearGradient.entries = arr;

serie.setStyle(&quot;areaFill&quot;, linearGradient);
&lt;/pre&gt;

,but it doesn&#039;t work!</description>
		<content:encoded><![CDATA[<p>Hey Peter,</p>
<p>when I use</p>
<pre class="code">
var linearGradient:LinearGradient = new LinearGradient();
var arr:Array = [];
arr.push(new GradientEntry(0xF68620, 0, 1));
arr.push(new GradientEntry(0xF68620, 0.5, 0.25));
linearGradient.angle = 90;
linearGradient.entries = arr;

serie.setStyle("areaFill", linearGradient);
</pre>
<p>,but it doesn&#8217;t work!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Javi</title>
		<link>http://blog.flexexamples.com/2007/11/20/creating-a-linear-gradient-fill-on-a-columnchart-controls-column-series-in-flex/comment-page-1/#comment-1961</link>
		<dc:creator>Javi</dc:creator>
		<pubDate>Mon, 09 Feb 2009 15:35:11 +0000</pubDate>
		<guid isPermaLink="false">http://blog.flexexamples.com/2007/11/20/creating-a-linear-gradient-fill-on-a-columnchart-controls-column-series-in-flex/#comment-1961</guid>
		<description>Try it,
&lt;pre class=&quot;code&quot;&gt;
var linearGradient:LinearGradient = new LinearGradient();
var arr:Array = [];
arr.push(new GradientEntry(0xF68620, 0, 1));
arr.push(new GradientEntry(0xF68620, 0.5, 0.25));
linearGradient.angle = 90;
linearGradient.entries = arr;

serie.setStyle(&quot;areaFill&quot;, linearGradient);
&lt;/pre&gt;</description>
		<content:encoded><![CDATA[<p>Try it,</p>
<pre class="code">
var linearGradient:LinearGradient = new LinearGradient();
var arr:Array = [];
arr.push(new GradientEntry(0xF68620, 0, 1));
arr.push(new GradientEntry(0xF68620, 0.5, 0.25));
linearGradient.angle = 90;
linearGradient.entries = arr;

serie.setStyle("areaFill", linearGradient);
</pre>
]]></content:encoded>
	</item>
	<item>
		<title>By: Greg</title>
		<link>http://blog.flexexamples.com/2007/11/20/creating-a-linear-gradient-fill-on-a-columnchart-controls-column-series-in-flex/comment-page-1/#comment-1959</link>
		<dc:creator>Greg</dc:creator>
		<pubDate>Wed, 19 Nov 2008 19:04:03 +0000</pubDate>
		<guid isPermaLink="false">http://blog.flexexamples.com/2007/11/20/creating-a-linear-gradient-fill-on-a-columnchart-controls-column-series-in-flex/#comment-1959</guid>
		<description>Hey Peter,

How do I go about using gradient fills when setting the fill property via CSS?  I&#039;m trying...

var linearGradient:LinearGradient = new LinearGradient();
linearGradient.entries.push(new GradientEntry(0xF68620, 0, 1));
linearGradient.entries.push(new GradientEntry(0xF68620, 0.5, 0.25));
colSeries.setStyle(&#039;fill&#039;, linearGradient);

but it doesn&#039;t apply the gradient.  Is there a different CSS property to set when using gradients?

Thanks,
Greg.</description>
		<content:encoded><![CDATA[<p>Hey Peter,</p>
<p>How do I go about using gradient fills when setting the fill property via CSS?  I&#8217;m trying&#8230;</p>
<p>var linearGradient:LinearGradient = new LinearGradient();<br />
linearGradient.entries.push(new GradientEntry(0xF68620, 0, 1));<br />
linearGradient.entries.push(new GradientEntry(0xF68620, 0.5, 0.25));<br />
colSeries.setStyle(&#8216;fill&#8217;, linearGradient);</p>
<p>but it doesn&#8217;t apply the gradient.  Is there a different CSS property to set when using gradients?</p>
<p>Thanks,<br />
Greg.</p>
]]></content:encoded>
	</item>
</channel>
</rss>
