<?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: Dropping labels in a Flex Chart</title>
	<atom:link href="http://blog.flexexamples.com/2007/10/16/dropping-labels-in-a-flex-chart/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.flexexamples.com/2007/10/16/dropping-labels-in-a-flex-chart/</link>
	<description>Just a bunch of Adobe Flex Examples</description>
	<lastBuildDate>Sat, 11 Feb 2012 11:51:51 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: Anonymous</title>
		<link>http://blog.flexexamples.com/2007/10/16/dropping-labels-in-a-flex-chart/comment-page-1/#comment-7951</link>
		<dc:creator>Anonymous</dc:creator>
		<pubDate>Fri, 18 Jun 2010 07:04:21 +0000</pubDate>
		<guid isPermaLink="false">http://blog.flexexamples.com/2007/10/16/dropping-labels-in-a-flex-chart/#comment-7951</guid>
		<description>Try this...

var hAxisRenderer:AxisRenderer = new AxisRenderer();
hAxisRenderer.axis = caxis;
hAxisRenderer.setStyle(&#039;axisStroke&#039;, new Stroke(0xCCCCCC, 2));
hAxisRenderer.setStyle(&#039;canDropLabels&#039;, true);
// new line to add
chart.horizontalAxisRenderers = [hAxisRenderer];</description>
		<content:encoded><![CDATA[<p>Try this&#8230;</p>
<p>var hAxisRenderer:AxisRenderer = new AxisRenderer();<br />
hAxisRenderer.axis = caxis;<br />
hAxisRenderer.setStyle(&#8216;axisStroke&#8217;, new Stroke(0xCCCCCC, 2));<br />
hAxisRenderer.setStyle(&#8216;canDropLabels&#8217;, true);<br />
// new line to add<br />
chart.horizontalAxisRenderers = [hAxisRenderer];</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Flex Developer</title>
		<link>http://blog.flexexamples.com/2007/10/16/dropping-labels-in-a-flex-chart/comment-page-1/#comment-6080</link>
		<dc:creator>Flex Developer</dc:creator>
		<pubDate>Wed, 21 Oct 2009 10:54:26 +0000</pubDate>
		<guid isPermaLink="false">http://blog.flexexamples.com/2007/10/16/dropping-labels-in-a-flex-chart/#comment-6080</guid>
		<description>@abul:

See this &lt;a href=&quot;http://www.flex-blog.com/flex-dynamic-chart/&quot; rel=&quot;nofollow&quot;&gt;dynamic chart example&lt;/a&gt;. It might help you!

Regards</description>
		<content:encoded><![CDATA[<p>@abul:</p>
<p>See this <a href="http://www.flex-blog.com/flex-dynamic-chart/" rel="nofollow">dynamic chart example</a>. It might help you!</p>
<p>Regards</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jagan Langa</title>
		<link>http://blog.flexexamples.com/2007/10/16/dropping-labels-in-a-flex-chart/comment-page-1/#comment-5878</link>
		<dc:creator>Jagan Langa</dc:creator>
		<pubDate>Tue, 29 Sep 2009 16:05:05 +0000</pubDate>
		<guid isPermaLink="false">http://blog.flexexamples.com/2007/10/16/dropping-labels-in-a-flex-chart/#comment-5878</guid>
		<description>Hi,
How to change the color of the datapoint in line chart to the color of the its stroke... please help me I&#039;m little new to the flex chart component.</description>
		<content:encoded><![CDATA[<p>Hi,<br />
How to change the color of the datapoint in line chart to the color of the its stroke&#8230; please help me I&#8217;m little new to the flex chart component.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jagan Langa</title>
		<link>http://blog.flexexamples.com/2007/10/16/dropping-labels-in-a-flex-chart/comment-page-1/#comment-5862</link>
		<dc:creator>Jagan Langa</dc:creator>
		<pubDate>Fri, 25 Sep 2009 12:28:29 +0000</pubDate>
		<guid isPermaLink="false">http://blog.flexexamples.com/2007/10/16/dropping-labels-in-a-flex-chart/#comment-5862</guid>
		<description>Hi Peter,
 I have a small problem in the &quot;canDropLabels &quot; style, actually I&#039;m creating the chart at the run-time using action script.  the problem is when there is more columns the column label became very small and the intermediate labels were not dropping even though i set true to the &quot;canDropLabels &quot; style. here is my code sample
&lt;pre lang=&quot;mxml&quot;&gt;
                                chart = new ColumnChart();
				chart.percentWidth = 100;
				chart.percentHeight = 100;
				chart.seriesFilters = [];
				chart.type = &#039;stacked&#039;;
				chart.showDataTips = true;
				chart.styleName = &#039;title&#039;;
				chart.dataTipFunction=formatDataTip;

				//--------------------------------------------------------------
				var caxis:CategoryAxis = new CategoryAxis();
				caxis.labelFunction = categoryAxis_labelFunc;

				//--------------------------------------------------------------
				var hAxisRenderer:AxisRenderer = new AxisRenderer();
				hAxisRenderer.axis = caxis;
				hAxisRenderer.setStyle(&#039;axisStroke&#039;, new Stroke(0xCCCCCC, 2));
				hAxisRenderer.setStyle(&#039;canDropLabels&#039;, true);
				
				//--------------------------------------------------------------
				var laxis:LinearAxis = new LinearAxis();
				laxis.interval = 1;
				laxis.baseAtZero = false;
				//--------------------------------------------------------------
				var vAxisRenderer:AxisRenderer = new AxisRenderer();
				vAxisRenderer.axis = laxis;
				vAxisRenderer.setStyle(&#039;axisStroke&#039;, new Stroke(0xCCCCCC, 2));
				vAxisRenderer.setStyle(&#039;canDropLabels&#039;, true);
				//--------------------------------------------------------------
				
				chart.horizontalAxis = caxis;
				chart.verticalAxis = laxis;
				
				chart.verticalAxisRenderers = [vAxisRenderer];
				chart.horizontalAxisRenderers = [hAxisRenderer];
				
				addChild(chart);
&lt;/pre&gt;
and I&#039;m creating the ColumnSeries at run time depending on data i receive from the xml. can you give me any idea how to fix this issue.  I&#039;m new to Flex Charting component, don&#039;t mistake me is my question is silly. 

thanks in Advance
S. Jagan Langa</description>
		<content:encoded><![CDATA[<p>Hi Peter,<br />
 I have a small problem in the &#8220;canDropLabels &#8221; style, actually I&#8217;m creating the chart at the run-time using action script.  the problem is when there is more columns the column label became very small and the intermediate labels were not dropping even though i set true to the &#8220;canDropLabels &#8221; style. here is my code sample</p>

<div class="wp_syntax"><div class="code"><pre class="mxml" style="font-family:monospace;">                                chart = new ColumnChart();
				chart.percentWidth = 100;
				chart.percentHeight = 100;
				chart.seriesFilters = [];
				chart.type = 'stacked';
				chart.showDataTips = true;
				chart.styleName = 'title';
				chart.dataTipFunction=formatDataTip;
&nbsp;
				//--------------------------------------------------------------
				var caxis:CategoryAxis = new CategoryAxis();
				caxis.labelFunction = categoryAxis_labelFunc;
&nbsp;
				//--------------------------------------------------------------
				var hAxisRenderer:AxisRenderer = new AxisRenderer();
				hAxisRenderer.axis = caxis;
				hAxisRenderer.setStyle('axisStroke', new Stroke(0xCCCCCC, 2));
				hAxisRenderer.setStyle('canDropLabels', true);
&nbsp;
				//--------------------------------------------------------------
				var laxis:LinearAxis = new LinearAxis();
				laxis.interval = 1;
				laxis.baseAtZero = false;
				//--------------------------------------------------------------
				var vAxisRenderer:AxisRenderer = new AxisRenderer();
				vAxisRenderer.axis = laxis;
				vAxisRenderer.setStyle('axisStroke', new Stroke(0xCCCCCC, 2));
				vAxisRenderer.setStyle('canDropLabels', true);
				//--------------------------------------------------------------
&nbsp;
				chart.horizontalAxis = caxis;
				chart.verticalAxis = laxis;
&nbsp;
				chart.verticalAxisRenderers = [vAxisRenderer];
				chart.horizontalAxisRenderers = [hAxisRenderer];
&nbsp;
				addChild(chart);</pre></div></div>

<p>and I&#8217;m creating the ColumnSeries at run time depending on data i receive from the xml. can you give me any idea how to fix this issue.  I&#8217;m new to Flex Charting component, don&#8217;t mistake me is my question is silly. </p>
<p>thanks in Advance<br />
S. Jagan Langa</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: platus</title>
		<link>http://blog.flexexamples.com/2007/10/16/dropping-labels-in-a-flex-chart/comment-page-1/#comment-1590</link>
		<dc:creator>platus</dc:creator>
		<pubDate>Sun, 16 Nov 2008 16:56:22 +0000</pubDate>
		<guid isPermaLink="false">http://blog.flexexamples.com/2007/10/16/dropping-labels-in-a-flex-chart/#comment-1590</guid>
		<description>You&#039;re using a CategoryAxis to display the date. What if you had a date range in hours or minutes inteval, and it&#039;s important to you to show when the DATE suddenly changes?

for example:

  &#124;       &#124;         &#124;          &#124;
23:45   23:55   29/3 00:05   00:15

in this example, flex could decide to drop the &quot;29/3 00:05&quot; label.
Is there a way to force him not to drop certain (important) labels?
(Or maybe some other idea to convery that the day has changed?)</description>
		<content:encoded><![CDATA[<p>You&#8217;re using a CategoryAxis to display the date. What if you had a date range in hours or minutes inteval, and it&#8217;s important to you to show when the DATE suddenly changes?</p>
<p>for example:</p>
<p>  |       |         |          |<br />
23:45   23:55   29/3 00:05   00:15</p>
<p>in this example, flex could decide to drop the &#8220;29/3 00:05&#8243; label.<br />
Is there a way to force him not to drop certain (important) labels?<br />
(Or maybe some other idea to convery that the day has changed?)</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: evil-spirit</title>
		<link>http://blog.flexexamples.com/2007/10/16/dropping-labels-in-a-flex-chart/comment-page-1/#comment-1591</link>
		<dc:creator>evil-spirit</dc:creator>
		<pubDate>Mon, 03 Nov 2008 02:42:36 +0000</pubDate>
		<guid isPermaLink="false">http://blog.flexexamples.com/2007/10/16/dropping-labels-in-a-flex-chart/#comment-1591</guid>
		<description>we can make the x label to years mounths or days! that looks good!</description>
		<content:encoded><![CDATA[<p>we can make the x label to years mounths or days! that looks good!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: narendra Bisht</title>
		<link>http://blog.flexexamples.com/2007/10/16/dropping-labels-in-a-flex-chart/comment-page-1/#comment-1589</link>
		<dc:creator>narendra Bisht</dc:creator>
		<pubDate>Fri, 09 May 2008 02:26:11 +0000</pubDate>
		<guid isPermaLink="false">http://blog.flexexamples.com/2007/10/16/dropping-labels-in-a-flex-chart/#comment-1589</guid>
		<description>I want to see an example of flex chart which could display project activities in simple manner.
Narendra Bisht
High Mountain Biodiversiyty Conservation Project, Bajhnag Nepal</description>
		<content:encoded><![CDATA[<p>I want to see an example of flex chart which could display project activities in simple manner.<br />
Narendra Bisht<br />
High Mountain Biodiversiyty Conservation Project, Bajhnag Nepal</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: mike</title>
		<link>http://blog.flexexamples.com/2007/10/16/dropping-labels-in-a-flex-chart/comment-page-1/#comment-1588</link>
		<dc:creator>mike</dc:creator>
		<pubDate>Wed, 16 Apr 2008 02:14:57 +0000</pubDate>
		<guid isPermaLink="false">http://blog.flexexamples.com/2007/10/16/dropping-labels-in-a-flex-chart/#comment-1588</guid>
		<description>hi,

 i dont know if this is the right place to ask some help. Im stuck. i have m source code below. i dont why but i got an error with my chart when i run it. Thanks bud.













private function date_labelFuncForChart(item:Object, column:CategoryAxis):String
{

      return dateFormatter.format(item.priceDate );
}</description>
		<content:encoded><![CDATA[<p>hi,</p>
<p> i dont know if this is the right place to ask some help. Im stuck. i have m source code below. i dont why but i got an error with my chart when i run it. Thanks bud.</p>
<p>private function date_labelFuncForChart(item:Object, column:CategoryAxis):String<br />
{</p>
<p>      return dateFormatter.format(item.priceDate );<br />
}</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: rohti</title>
		<link>http://blog.flexexamples.com/2007/10/16/dropping-labels-in-a-flex-chart/comment-page-1/#comment-1587</link>
		<dc:creator>rohti</dc:creator>
		<pubDate>Fri, 14 Mar 2008 12:00:06 +0000</pubDate>
		<guid isPermaLink="false">http://blog.flexexamples.com/2007/10/16/dropping-labels-in-a-flex-chart/#comment-1587</guid>
		<description>hi,

this is really great example ..
i am keen searcing of this type of example.

i have one suggestion not related to this example but related to GUI
ie.  the search text color is not properly visible please make it white like other text oolor.</description>
		<content:encoded><![CDATA[<p>hi,</p>
<p>this is really great example ..<br />
i am keen searcing of this type of example.</p>
<p>i have one suggestion not related to this example but related to GUI<br />
ie.  the search text color is not properly visible please make it white like other text oolor.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: abul Chowdhury</title>
		<link>http://blog.flexexamples.com/2007/10/16/dropping-labels-in-a-flex-chart/comment-page-1/#comment-1586</link>
		<dc:creator>abul Chowdhury</dc:creator>
		<pubDate>Fri, 26 Oct 2007 13:30:57 +0000</pubDate>
		<guid isPermaLink="false">http://blog.flexexamples.com/2007/10/16/dropping-labels-in-a-flex-chart/#comment-1586</guid>
		<description>I am looking for an example to do a dynamic display in chart - where data will come from MS SQL db via coldfuion - also chart will refresh with newer data set and will refresh it in certain interval. I am very new in flex --- I think I am good in CF and SQL.

Thanks in advance.</description>
		<content:encoded><![CDATA[<p>I am looking for an example to do a dynamic display in chart &#8211; where data will come from MS SQL db via coldfuion &#8211; also chart will refresh with newer data set and will refresh it in certain interval. I am very new in flex &#8212; I think I am good in CF and SQL.</p>
<p>Thanks in advance.</p>
]]></content:encoded>
	</item>
</channel>
</rss>

