<?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: Setting BIRT chart series palette dynamically</title>
	<atom:link href="http://www.martinhammer.com/blog/index.php/2010/01/setting-birt-chart-series-palette-dynamically/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.martinhammer.com/blog/index.php/2010/01/setting-birt-chart-series-palette-dynamically/</link>
	<description>Sorry, but you are looking for something that isn’t here.</description>
	<lastBuildDate>Sun, 05 Feb 2012 17:27:10 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.1.4</generator>
	<item>
		<title>By: martin</title>
		<link>http://www.martinhammer.com/blog/index.php/2010/01/setting-birt-chart-series-palette-dynamically/comment-page-1/#comment-9390</link>
		<dc:creator>martin</dc:creator>
		<pubDate>Sat, 13 Aug 2011 07:36:43 +0000</pubDate>
		<guid isPermaLink="false">http://www.martinhammer.com/blog/?p=420#comment-9390</guid>
		<description>Hi toksib, at this point I have no interest in the paid Actuate product and as such won&#039;t be downloading any trial / evaluation version. Just looking over your code I think it&#039;s pretty certain that var sValue = fcdph.getClass().; is (1) incorrect syntax (why the . at the end?) and (2) will not return the value you want but rather the class name. That&#039;s as far as I can help.</description>
		<content:encoded><![CDATA[<p>Hi toksib, at this point I have no interest in the paid Actuate product and as such won&#8217;t be downloading any trial / evaluation version. Just looking over your code I think it&#8217;s pretty certain that var sValue = fcdph.getClass().; is (1) incorrect syntax (why the . at the end?) and (2) will not return the value you want but rather the class name. That&#8217;s as far as I can help.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: toksib</title>
		<link>http://www.martinhammer.com/blog/index.php/2010/01/setting-birt-chart-series-palette-dynamically/comment-page-1/#comment-9358</link>
		<dc:creator>toksib</dc:creator>
		<pubDate>Fri, 12 Aug 2011 08:49:45 +0000</pubDate>
		<guid isPermaLink="false">http://www.martinhammer.com/blog/?p=420#comment-9358</guid>
		<description>Hi Martin,

You can download a 45 days trial version to check it.
Download the commercial version of Actuate BIRT Designer Professional, I&#039;m using that one as well.

http://www.birt-exchange.com/be/downloads/

Thanks,
toksib</description>
		<content:encoded><![CDATA[<p>Hi Martin,</p>
<p>You can download a 45 days trial version to check it.<br />
Download the commercial version of Actuate BIRT Designer Professional, I&#8217;m using that one as well.</p>
<p><a href="http://www.birt-exchange.com/be/downloads/" rel="nofollow">http://www.birt-exchange.com/be/downloads/</a></p>
<p>Thanks,<br />
toksib</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: martin</title>
		<link>http://www.martinhammer.com/blog/index.php/2010/01/setting-birt-chart-series-palette-dynamically/comment-page-1/#comment-9352</link>
		<dc:creator>martin</dc:creator>
		<pubDate>Fri, 12 Aug 2011 03:32:37 +0000</pubDate>
		<guid isPermaLink="false">http://www.martinhammer.com/blog/?p=420#comment-9352</guid>
		<description>Hi, I have no experience with flash charts since I don&#039;t have access to the paid-for Actuate offering. You will need to check in the supplied documentation for chart scripting API reference.

Regards,
Martin</description>
		<content:encoded><![CDATA[<p>Hi, I have no experience with flash charts since I don&#8217;t have access to the paid-for Actuate offering. You will need to check in the supplied documentation for chart scripting API reference.</p>
<p>Regards,<br />
Martin</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: toksib</title>
		<link>http://www.martinhammer.com/blog/index.php/2010/01/setting-birt-chart-series-palette-dynamically/comment-page-1/#comment-9336</link>
		<dc:creator>toksib</dc:creator>
		<pubDate>Thu, 11 Aug 2011 16:59:40 +0000</pubDate>
		<guid isPermaLink="false">http://www.martinhammer.com/blog/?p=420#comment-9336</guid>
		<description>Hi Mark,

I tried it with flash pie chart and I changed the funciton like this but it doesn&#039;t work.

function beforeDrawDataPoint( fcdph, fill, fcsc )
{
    var sValue = fcdph.getClass().;
    if( sValue == &quot;Incomplete PPMs&quot; )
    {
        fill.set( 242, 88, 106, 255 );
    }
/*    else if( sValue == &quot;2-Mid&quot; )
    {
        fill.set( 232, 172, 57, 255 );
    }*/
    else if( sValue == &quot;Complete PPMs&quot; )
    {
        fill.set( 128, 255, 128, 255 );
    }
}

I cannot even find any function for legend.

Do you know how can I do this for flash pie chart?

thanks</description>
		<content:encoded><![CDATA[<p>Hi Mark,</p>
<p>I tried it with flash pie chart and I changed the funciton like this but it doesn&#8217;t work.</p>
<p>function beforeDrawDataPoint( fcdph, fill, fcsc )<br />
{<br />
    var sValue = fcdph.getClass().;<br />
    if( sValue == &#8220;Incomplete PPMs&#8221; )<br />
    {<br />
        fill.set( 242, 88, 106, 255 );<br />
    }<br />
/*    else if( sValue == &#8220;2-Mid&#8221; )<br />
    {<br />
        fill.set( 232, 172, 57, 255 );<br />
    }*/<br />
    else if( sValue == &#8220;Complete PPMs&#8221; )<br />
    {<br />
        fill.set( 128, 255, 128, 255 );<br />
    }<br />
}</p>
<p>I cannot even find any function for legend.</p>
<p>Do you know how can I do this for flash pie chart?</p>
<p>thanks</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: florian</title>
		<link>http://www.martinhammer.com/blog/index.php/2010/01/setting-birt-chart-series-palette-dynamically/comment-page-1/#comment-8026</link>
		<dc:creator>florian</dc:creator>
		<pubDate>Sat, 02 Jul 2011 00:10:58 +0000</pubDate>
		<guid isPermaLink="false">http://www.martinhammer.com/blog/?p=420#comment-8026</guid>
		<description>hi,

how can i define the color for the lines in a line chart.... the markers and the legend works.... but the lines?

thx</description>
		<content:encoded><![CDATA[<p>hi,</p>
<p>how can i define the color for the lines in a line chart&#8230;. the markers and the legend works&#8230;. but the lines?</p>
<p>thx</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: martin</title>
		<link>http://www.martinhammer.com/blog/index.php/2010/01/setting-birt-chart-series-palette-dynamically/comment-page-1/#comment-7656</link>
		<dc:creator>martin</dc:creator>
		<pubDate>Fri, 17 Jun 2011 17:32:32 +0000</pubDate>
		<guid isPermaLink="false">http://www.martinhammer.com/blog/?p=420#comment-7656</guid>
		<description>Hi Mark, in such a case wouldn&#039;t it be easier to catch the null values earlier on, e.g. in your datasource by using an NVL/ISNULL function in the query, or by using a calculated field which replaces the null value with the description you want? I&#039;m sure there&#039;s a way to it through a script on the chart, but my approach is to use scripting only if there isn&#039;t another way of achieving the same result.</description>
		<content:encoded><![CDATA[<p>Hi Mark, in such a case wouldn&#8217;t it be easier to catch the null values earlier on, e.g. in your datasource by using an NVL/ISNULL function in the query, or by using a calculated field which replaces the null value with the description you want? I&#8217;m sure there&#8217;s a way to it through a script on the chart, but my approach is to use scripting only if there isn&#8217;t another way of achieving the same result.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Mark Radaskiewicz</title>
		<link>http://www.martinhammer.com/blog/index.php/2010/01/setting-birt-chart-series-palette-dynamically/comment-page-1/#comment-7633</link>
		<dc:creator>Mark Radaskiewicz</dc:creator>
		<pubDate>Thu, 16 Jun 2011 21:56:38 +0000</pubDate>
		<guid isPermaLink="false">http://www.martinhammer.com/blog/?p=420#comment-7633</guid>
		<description>What if one of the caregories has data but a null value in the category name. Is there a way to assign a textual description to the category name in the legend? I have done this with bar charts but I cannot seem to get it to work on a pie chart. Thank you.</description>
		<content:encoded><![CDATA[<p>What if one of the caregories has data but a null value in the category name. Is there a way to assign a textual description to the category name in the legend? I have done this with bar charts but I cannot seem to get it to work on a pie chart. Thank you.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: the empty quarter &#187; Working with the Palette in BIRT charts, Part 1</title>
		<link>http://www.martinhammer.com/blog/index.php/2010/01/setting-birt-chart-series-palette-dynamically/comment-page-1/#comment-7392</link>
		<dc:creator>the empty quarter &#187; Working with the Palette in BIRT charts, Part 1</dc:creator>
		<pubDate>Fri, 03 Jun 2011 14:31:51 +0000</pubDate>
		<guid isPermaLink="false">http://www.martinhammer.com/blog/?p=420#comment-7392</guid>
		<description>[...] scenarios and scripting approaches for solving the issue have already been discussed on this blog: Setting BIRT chart series palette dynamically, Setting BIRT chart series palette dynamically, part 2 – area charts, Setting BIRT chart series [...]</description>
		<content:encoded><![CDATA[<p>[...] scenarios and scripting approaches for solving the issue have already been discussed on this blog: Setting BIRT chart series palette dynamically, Setting BIRT chart series palette dynamically, part 2 – area charts, Setting BIRT chart series [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: martin</title>
		<link>http://www.martinhammer.com/blog/index.php/2010/01/setting-birt-chart-series-palette-dynamically/comment-page-1/#comment-3548</link>
		<dc:creator>martin</dc:creator>
		<pubDate>Thu, 09 Sep 2010 13:58:23 +0000</pubDate>
		<guid isPermaLink="false">http://www.martinhammer.com/blog/?p=420#comment-3548</guid>
		<description>Hi Dan, for bar charts please take a look at this post: http://www.martinhammer.com/blog/?p=575</description>
		<content:encoded><![CDATA[<p>Hi Dan, for bar charts please take a look at this post: <a href="http://www.martinhammer.com/blog/?p=575" rel="nofollow">http://www.martinhammer.com/blog/?p=575</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: the empty quarter &#187; Setting BIRT chart series palette dynamically, part 3 – stacked bar charts</title>
		<link>http://www.martinhammer.com/blog/index.php/2010/01/setting-birt-chart-series-palette-dynamically/comment-page-1/#comment-3546</link>
		<dc:creator>the empty quarter &#187; Setting BIRT chart series palette dynamically, part 3 – stacked bar charts</dc:creator>
		<pubDate>Thu, 09 Sep 2010 13:09:54 +0000</pubDate>
		<guid isPermaLink="false">http://www.martinhammer.com/blog/?p=420#comment-3546</guid>
		<description>[...] we have so far discussed how to set BIRT chart palette dynamically (based on category values) for pie charts and area charts. Today we cover stacked bar charts, i.e. bar charts with the Optional Grouping data [...]</description>
		<content:encoded><![CDATA[<p>[...] we have so far discussed how to set BIRT chart palette dynamically (based on category values) for pie charts and area charts. Today we cover stacked bar charts, i.e. bar charts with the Optional Grouping data [...]</p>
]]></content:encoded>
	</item>
</channel>
</rss>

