<?xml version="1.0" encoding="UTF-8"?>
<!-- generator="wordpress/2.2.2" -->
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	>

<channel>
	<title>AnyChart team blog</title>
	<link>http://www.anychart.com/blog</link>
	<description>AnyChart team members and AnyChart users discuss AnyChart here.</description>
	<pubDate>Fri, 06 Jun 2008 07:26:15 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.2.2</generator>
	<language>en</language>
			<item>
		<title>Using AnyChart with JSON and JavaScript</title>
		<link>http://www.anychart.com/blog/2008/06/06/using-anychart-with-json-and-javascript/</link>
		<comments>http://www.anychart.com/blog/2008/06/06/using-anychart-with-json-and-javascript/#comments</comments>
		<pubDate>Fri, 06 Jun 2008 07:26:15 +0000</pubDate>
		<dc:creator>Alex Batsuev</dc:creator>
		
		<category><![CDATA[JavaScript]]></category>

		<category><![CDATA[AnyChart charting component]]></category>

		<category><![CDATA[Tips and tricks]]></category>

		<guid isPermaLink="false">http://www.anychart.com/blog/2008/06/06/using-anychart-with-json-and-javascript/</guid>
		<description><![CDATA[ Until now AnyChart was able to get data only in XML format. However it&#8217;s not always convenient and requires at least knowledge of XML.
Now we make the life of AnyChart users easier and add the ability of handy Flash chart implementation in JavaScript. Now AnyChart.js has a new method - setJSData, that allows you [...]]]></description>
			<content:encoded><![CDATA[<p id="k1g-0"> Until now AnyChart was able to get data only in XML format. However it&#8217;s not always convenient and requires at least knowledge of XML.</p>
<p id="k1g-1">Now we make the life of AnyChart users easier and add the ability of handy Flash chart implementation in JavaScript. Now AnyChart.js has a new method - setJSData, that allows you to set parameters and data to the chart as a JavaScript object.</p>
<p id="k1g-2">   You can view a simple example here:<br id="k1g-3" />   <a href="http://anychart.com/tips_and_tricks/xml-and-js/js-sample.html" id="k1g-4" target="_blank">http://anychart.com/tips_and_tricks/xml-and-js/js-sample.html</a></p>
<p id="k1g-5"><strong id="broy0">How to create an object with settings and data:</strong><br />
An object with settings and data has the same structure as AnyChart XML. XML nodes and attributes are properties. Nodes, that can be repeated (for example, &lt;point /&gt;) are arrays.</p>
<p id="k1g-7"><strong id="f-bp1">   For example:</strong></p>
<pre id="k1g-8">var chartData = {<br id="k1g-9" /> charts: {<br id="k1g-10" />   chart: {<br id="k1g-11" />     chart_settings: {<br id="k1g-12" />        title: { text: &#8220;Chart Title&#8221; }

      },<br id="k1g-14" />      data: {<br id="k1g-15" />       series: [<br id="k1g-16" />         point: [{name: &#8220;pt1&#8243;, y: 12}, {name: &#8220;pt2&#8243;, y: 23}]<br id="k1g-17" />       ]<br id="k1g-18" />     }<br id="k1g-19" />   }<br id="k1g-20" /> }<br id="k1g-21" />}</pre>
<p id="k1g-22">   Or:</p>
<pre id="k1g-23">var chartData = {}<br id="k1g-24" />chartData.charts = {};<br id="k1g-25" />chartData.charts.chart = {};<br id="k1g-26" />chartData.charts.chart.chart_settings = {};<br id="k1g-27" />chartData.charts.chart.chart_settings.title = {};<br id="k1g-28" />chartData.charts.chart.chart_settings.title.text = &#8220;Chart Title&#8221;;<br id="k1g-29" />chartData.charts.chart.data = {};<br id="k1g-30" />chartData.charts.chart.data.series = [];<br id="k1g-31" /><br id="k1g-32" />var seriesObj = {};<br id="k1g-33" />seriesObj.point = [];<br id="k1g-34" />seriesObj.point.push({name: &#8220;Pt1&#8243;, y: 12});<br id="k1g-35" />seriesObj.point.push({name: &#8220;Pt1&#8243;, y: 23});<br id="k1g-36" /><br id="k1g-37" />chartData.charts.chart.data.series.push(seriesObj);</pre>
<p id="k1g-38">   Object&#8217;s structure  is equivalent to XML structure. The description of XML you can find here:<br id="k1g-39" />   <a href="http://anychart.com/products/anychart/docs/xmlReference/index.html" target="_blank" id="ohje" title="http://anychart.com/products/anychart/docs/xmlReference/index.html">http://anychart.com/products/anychart/docs/xmlReference/index.html</a></p>
<p id="k1g-40">   Setting chart description object to AnyChart is done using <strong id="k1g-41">setJSData </strong>method<strong id="k1g-41">.</strong></p>
<p id="k1g-42">   To use this feature you only need to update AnyChart.js, please, download it from here:<br id="sbf90" /></p>
<p id="k1g-42">   <a href="http://anychart.com/tips_and_tricks/xml-and-js/js/AnyChart.js" id="wx8v" title="http://anychart.com/tips_and_tricks/xml-and-js/js/AnyChart.js">http://anychart.com/tips_and_tricks/xml-and-js/js/AnyChart.js</a></p>
<p id="k1g-43">   Also we&#8217;ve created several examples of using setJSData, including JSON example:</p>
<p id="k1g-44">   1. An example of object-creation using JavaScript:<br />
<a href="http://anychart.com/tips_and_tricks/xml-and-js/js-sample.html" target="_blank" id="xvmr" title="http://anychart.com/tips_and_tricks/xml-and-js/js-sample.html">http://anychart.com/tips_and_tricks/xml-and-js/js-sample.html</a></p>
<p id="k1g-46">   2. An example of JSON-creation forming:<br />
<a href="http://anychart.com/tips_and_tricks/xml-and-js/json-sample.html" target="_blank" id="fqkf" title="http://anychart.com/tips_and_tricks/xml-and-js/json-sample.html">http://anychart.com/tips_and_tricks/xml-and-js/json-sample.html</a></p>
<p id="k1g-48">   3. An example of JSON-data loading from the text file using AJAX:<br id="k1g-49" />   <a href="http://anychart.com/tips_and_tricks/xml-and-js/json-ajax-sample.html" target="_blank" id="wfbs" title="http://anychart.com/tips_and_tricks/xml-and-js/json-ajax-sample.html">http://anychart.com/tips_and_tricks/xml-and-js/json-ajax-sample.html</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.anychart.com/blog/2008/06/06/using-anychart-with-json-and-javascript/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Flex 3 Chart Example(s) and Tutorials with AnyChart for Adobe Flex 3 Charting Component</title>
		<link>http://www.anychart.com/blog/2008/05/08/flex-3-chart-examples-and-tutorials-with-anychart-for-adobe-flex-3-charting-component/</link>
		<comments>http://www.anychart.com/blog/2008/05/08/flex-3-chart-examples-and-tutorials-with-anychart-for-adobe-flex-3-charting-component/#comments</comments>
		<pubDate>Thu, 08 May 2008 07:25:25 +0000</pubDate>
		<dc:creator>tim</dc:creator>
		
		<category><![CDATA[AnyChart charting component]]></category>

		<guid isPermaLink="false">http://www.anychart.com/blog/2008/05/08/flex-3-chart-examples-and-tutorials-with-anychart-for-adobe-flex-3-charting-component/</guid>
		<description><![CDATA[Flex application&#8217;s range of use is very wide, but the maximum effect this platform has introduced to Business Intelligence. On using Flex it became available to create convenient and interactive dashboards for BI. One of the key moments of dashboards are charts, and their functionality and obviousness affects most of all on comfort of the [...]]]></description>
			<content:encoded><![CDATA[<p>Flex application&#8217;s range of use is very wide, but the maximum effect this platform has introduced to Business Intelligence. On using Flex it became available to create convenient and interactive dashboards for BI. One of the key moments of dashboards are charts, and their functionality and obviousness affects most of all on comfort of the whole dashboard. <strong>AnyChart</strong> perfectly fits these criteria, this component greatly surpasses the default Flex Charting Component in functionality and appearance.</p>
<p>Earlier AnyChart was intended for use in HTML-pages and its integration in Flex components was quite a problem, but now we&#8217;ve created a Flex component, which gives the amusing results in connection with XML tools in Flex application.</p>
<p>We have created an extensive set of samples that show and explain how AnyChart Flex Charting Component can be used to create Interactive Dashboards, Drilldown charts and Maps in Flex 3.</p>
<p>View: <a href="http://www.anychart.com/products/anychart/docs/platforms/flex/" target="_blank">the tutorial and live samples of charting applications in Flex</a>.</p>
<p>Download: <a href="http://www.anychart.com/products/anychart/docs/platforms/flex/download/AnyChartFlexSamples.zip" target="_blank">19 AnyChart Flex Charting Samples with source code in a single ZIP</a>.</p>
<p><a href="http://www.anychart.com/products/anychart/docs/platforms/flex/" target="_blank"><img src="http://www.anychart.com/products/anychart/docs/platforms/flex/img/how_to_add_to_project.jpg" alt="add charts to your flex project" border="0" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.anychart.com/blog/2008/05/08/flex-3-chart-examples-and-tutorials-with-anychart-for-adobe-flex-3-charting-component/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Creating Animated Flash Charts and Maps with PHP using AnyChart</title>
		<link>http://www.anychart.com/blog/2008/05/08/creating-animated-flash-charts-and-maps-with-php-using-anychart/</link>
		<comments>http://www.anychart.com/blog/2008/05/08/creating-animated-flash-charts-and-maps-with-php-using-anychart/#comments</comments>
		<pubDate>Thu, 08 May 2008 07:04:39 +0000</pubDate>
		<dc:creator>tim</dc:creator>
		
		<category><![CDATA[AnyChart charting component]]></category>

		<guid isPermaLink="false">http://www.anychart.com/blog/2008/05/08/creating-animated-flash-charts-and-maps-with-php-using-anychart/</guid>
		<description><![CDATA[AnyChart  is a flexible component for creation charts in Web, you can  		easily create a lot of charts using it, PHP is one of the most server popular scripting 		engines, MySQL - is the most popular database to be used with PHP, so we have created a set of samples that explain and [...]]]></description>
			<content:encoded><![CDATA[<p>AnyChart  is a flexible component for creation charts in Web, you can  		easily create a lot of charts using it, PHP is one of the most server popular scripting 		engines, MySQL - is the most popular database to be used with PHP, so we have created a set of samples that explain and demonstrate creation of <a href="http://www.anychart.com/products/anychart/docs/platforms/php/">PHP SWF Flash Charts with AnyChart Flash Charting Component</a>.</p>
<p>Samples include charting data from Array, from MySQL, creation of drilldown (and self drilldown) charts as well as creation of interactive flash maps.</p>
<p>Look through: <a href="http://www.anychart.com/products/anychart/docs/platforms/php/" target="_blank">tutorial of creation flash charts with AnyChart and PHP</a>.<br />
Download: <a href="http://www.anychart.com/products/anychart/docs/platforms/php/anychart-php-samples.zip" target="_blank">sample package of charting from Array, MySQL and Drilldown Dashboards Creation</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.anychart.com/blog/2008/05/08/creating-animated-flash-charts-and-maps-with-php-using-anychart/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Interactive Flash Map of Brazil with all States</title>
		<link>http://www.anychart.com/blog/2008/03/20/interactive-flash-map-of-brazil-with-all-states/</link>
		<comments>http://www.anychart.com/blog/2008/03/20/interactive-flash-map-of-brazil-with-all-states/#comments</comments>
		<pubDate>Thu, 20 Mar 2008 06:32:50 +0000</pubDate>
		<dc:creator>tim</dc:creator>
		
		<category><![CDATA[AnyChart charting component]]></category>

		<guid isPermaLink="false">http://www.anychart.com/blog/2008/03/20/interactive-flash-map-of-brazil-with-all-states/</guid>
		<description><![CDATA[Good news for AnyChart customers from Brazil - today we have published maps of all states of Brazil.
Interesting facts are that back in XVI century the current territory of Brazil was divided into Captaincies, which are a historical administrative divisions of the former Spanish and Portuguese colonial empires. Each one was governed by a captain [...]]]></description>
			<content:encoded><![CDATA[<p>Good news for AnyChart customers from Brazil - today we have published maps of all states of Brazil.</p>
<p>Interesting facts are that back in XVI century the current territory of Brazil was divided into Captaincies, which are a historical administrative divisions of the former Spanish and Portuguese colonial empires. Each one was governed by a captain general.</p>
<p>In the Portuguese Empire, captaincies (capitanias, in Portuguese) were the administrative divisions and hereditary fiefs of the Portuguese state in some of its colonies.</p>
<p>Portugal Empire leaders didn&#8217;t think a lot about regional divisions and in 1534 Hereditary Captaincies maps looked like straight stripes of variable height of land, divided parallel to the Equator from the coast to the Tordesilhas Line, created by King John III of Portugal in 1534. Nice map, isn&#8217;t it? But this didn&#8217;t last long, and in 1573 only Two Viceroyalties were formed:</p>
<p><img src="http://www.anychart.com/products/anymap/docs/brazil/Brazil_states1534.png" /><img src="http://www.anychart.com/products/anymap/docs/brazil/Brazil_states1572.png" /></p>
<p>Since that time many things have happened and Brazil administrative maps were changed several time. The last reform have happened in 1990.</p>
<p>You can look at that map and map of all states in the following interactive flash dashboard created with AnyChart Flash Chart and Map Technology:</p>
<p><a href="http://www.anychart.com/products/anymap/docs/brazil/flash-map-of-brasil.php" target="_blank">Click to view map of Brazil and all its states</a></p>
<p><a href="http://www.anychart.com/products/anymap/docs/brazil/flash-map-of-brazil.php" target="_blank"><img src="http://www.anychart.com/products/anymap/docs/brazil/flash-map-of-brazil.png" border="1" /></a></p>
<p>So, now you can create Drilldown Maps, Geographical Related Dashboards, Real Estate, Distributor, Franchise, Dealer,  locators, statistical or reporting applications etc. - for Brazil Market.</p>
<p>All you need are <a href="http://www.anychart.com/products/anymap/overview/">AnyChart Flash Maps</a> and <a href="http://www.anychart.com/products/anymap/docs/brazil/flash-map-of-brazil.php">Sample Source Code from Brazil Flash Map Sample</a>.</p>
<p><strong>P.S.</strong></p>
<p>By the way - Internet usage in Brazil has increased greatly in the last few years and in September 2007 was estimated in 42,600,000 people by ITU (International Telecommunications Union), and a 22.4 % penetration rate, and 6,417,000 of users are Broadband subscribers (June/07, per Teleco) with 3.4% penetration rate.<br />
Brazil is the seventh country in Internet usage in the world.</p>
<p><small>Historical Maps of Brasil are obtained from Wikipedia</small></p>
]]></content:encoded>
			<wfw:commentRss>http://www.anychart.com/blog/2008/03/20/interactive-flash-map-of-brazil-with-all-states/feed/</wfw:commentRss>
		</item>
		<item>
		<title>AnyChart Launches Charts for SharePoint</title>
		<link>http://www.anychart.com/blog/2008/03/07/anychart-launches-charts-for-sharepoint/</link>
		<comments>http://www.anychart.com/blog/2008/03/07/anychart-launches-charts-for-sharepoint/#comments</comments>
		<pubDate>Fri, 07 Mar 2008 06:29:47 +0000</pubDate>
		<dc:creator>Anton Baranchuk</dc:creator>
		
		<category><![CDATA[AnyChart for SharePoint]]></category>

		<category><![CDATA[Business Intelligence]]></category>

		<category><![CDATA[Dashboards]]></category>

		<category><![CDATA[AnyChart charting component]]></category>

		<guid isPermaLink="false">http://www.anychart.com/blog/2008/03/07/anychart-launches-charts-for-sharepoint/</guid>
		<description><![CDATA[AnyChart for SharePoint beta is available now.  It is a charting component designed specifically for Microsoft&#8217;s  SharePoint portal technology. This web part allows you to create different charts based on SharePoint list data. This product doesn&#8217;t require installing any code to the server. AnyChart Flash charting technology is used as the charting engine.
Using [...]]]></description>
			<content:encoded><![CDATA[<p><strong>AnyChart for SharePoint</strong> beta is available now.  It is a charting component designed specifically for Microsoft&#8217;s  SharePoint portal technology. This web part allows you to create different charts based on SharePoint list data. This product doesn&#8217;t require installing any code to the server. <a href="http://www.anychart.com">AnyChart Flash charting technology</a> is used as the charting engine.</p>
<p>Using AnyChart for SharePoint you can easily build and configure any dashboard in minutes. This solution intended for everybody who deals with creation of dashboard, reporting, analytics, statistical, financial or any other data visualization solutions.</p>
<p>Product page: <a href="http://www.anychart.com/products/sharepoint/overview/">http://www.anychart.com/products/sharepoint/overview/</a></p>
<p>Download beta: <a href="http://www.anychart.com/products/sharepoint/download/">http://www.anychart.com/products/sharepoint/download/</a></p>
<p>Installation tutorial: <a href="http://www.anychart.com/products/sharepoint/demos/installation.php">http://www.anychart.com/products/sharepoint/demos/installation.php</a></p>
<p>Live demo: <a href="http://www.SharePointCharting.com/">http://www.SharePointCharting.com/</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.anychart.com/blog/2008/03/07/anychart-launches-charts-for-sharepoint/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Creating custom design-time preview for Flex 3 components</title>
		<link>http://www.anychart.com/blog/2008/02/29/creating-custom-design-time-preview-for-flex-3-components/</link>
		<comments>http://www.anychart.com/blog/2008/02/29/creating-custom-design-time-preview-for-flex-3-components/#comments</comments>
		<pubDate>Sat, 01 Mar 2008 02:26:57 +0000</pubDate>
		<dc:creator>Alex Batsuev</dc:creator>
		
		<category><![CDATA[Flex]]></category>

		<category><![CDATA[Flash platform]]></category>

		<category><![CDATA[Tips and tricks]]></category>

		<guid isPermaLink="false">http://www.anychart.com/blog/2008/02/29/creating-custom-design-time-preview-for-flex-3-components/</guid>
		<description><![CDATA[Sometimes it is necessary to create custom preview of the component in the Flex Builder &#8220;Design&#8221; view.
It is undocumented feature 
I&#8217;ve found very interesting class in the Flex SDK 3:  mx.core.UIComponentGlobals.
This class contains static field designMode:Boolean.
Just check that field in your component code.
You can download example component with the source code from here:
http://anychart.com/tips_and_tricks/designMode/DesignModeComponent.zip
Also you [...]]]></description>
			<content:encoded><![CDATA[<p>Sometimes it is necessary to create custom preview of the component in the Flex Builder &#8220;Design&#8221; view.<br />
It is undocumented feature <img src='http://www.anychart.com/blog/wp-includes/images/smilies/icon_wink.gif' alt=';-)' class='wp-smiley' /><br />
I&#8217;ve found very interesting class in the Flex SDK 3:  <strong>mx.core.UIComponentGlobals</strong>.</p>
<p>This class contains static field <strong>designMode</strong>:<strong>Boolean</strong>.</p>
<p>Just check that field in your component code.<br />
You can download example component with the source code from here:<br />
<a href="http://anychart.com/tips_and_tricks/designMode/DesignModeComponent.zip">http://anychart.com/tips_and_tricks/designMode/DesignModeComponent.zip</a></p>
<p>Also you can download the usage sample:<br />
<a href="http://anychart.com/tips_and_tricks/designMode/DesignModeComponentSample.zip">http://anychart.com/tips_and_tricks/designMode/DesignModeComponentSample.zip</a></p>
<p>Running in the Flex Builder &#8220;Design&#8221; mode it shows AnyChart image. But when it runs in the flash player it shows only gray rectangle.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.anychart.com/blog/2008/02/29/creating-custom-design-time-preview-for-flex-3-components/feed/</wfw:commentRss>
		</item>
		<item>
		<title>AnyChart for Adobe Flex 3 - advanced chart and map component</title>
		<link>http://www.anychart.com/blog/2008/02/29/anychart-for-adobe-flex-3-advanced-chart-and-map-component/</link>
		<comments>http://www.anychart.com/blog/2008/02/29/anychart-for-adobe-flex-3-advanced-chart-and-map-component/#comments</comments>
		<pubDate>Fri, 29 Feb 2008 12:58:12 +0000</pubDate>
		<dc:creator>Alex Batsuev</dc:creator>
		
		<category><![CDATA[AnyChart for flex]]></category>

		<category><![CDATA[Dashboards]]></category>

		<category><![CDATA[News]]></category>

		<guid isPermaLink="false">http://www.anychart.com/blog/2008/02/29/anychart-for-adobe-flex-3-advanced-chart-and-map-component/</guid>
		<description><![CDATA[AnyChart component for Adobe Flex 3 is now available!
Now Flex developers have better alternative of Flex Charting for adding interactive charts, maps and diagrams into their applications. Our solution allows to build dashboard, reporting, analytical, statistical, financial or any other data visualization solutions with Adobe Flex 3. AnyChart is an advanced Flash  based data-visualization [...]]]></description>
			<content:encoded><![CDATA[<p>AnyChart component for Adobe Flex 3 is now available!</p>
<p>Now Flex developers have better alternative of Flex Charting for adding interactive charts, maps and diagrams into their applications. Our solution allows to build dashboard, reporting, analytical, statistical, financial or any other data visualization solutions with Adobe Flex 3. AnyChart is an advanced Flash  based data-visualization solution, allowing everyone to utilize power of animation  and ultimate interactivity.</p>
<p>It&#8217;s just a beta 1 version and we are open for your opinions and suggestions.<br />
You can send them as a comments to this post or contact  us directly (support@anychart.com).</p>
<p>You can download SWC library from here:<br />
<a href="http://www.anychart.com/products/anychart/docs/platforms/flex/AnyChartFlexComponent.swc">http://www.anychart.com/products/anychart/docs/platforms/flex/AnyChartFlexComponent.swc</a></p>
<p>And please take a look at the following samples:</p>
<p><strong>Sample #1: Chart types.</strong><br />
<a href="http://www.anychart.com/platforms/flex/samples/chartTypes/AnyChartFlexChartTypes.html" target="_blank"><img src="http://anychart.com/platforms/flex/samples/img/chartTypes.png" /></a></p>
<p><a href="http://www.anychart.com/platforms/flex/samples/chartTypes/AnyChartFlexChartTypes.html" target="_blank">http://www.anychart.com/platforms/flex/samples/chartTypes/AnyChartFlexChartTypes.html</a><br />
Source code of this sample is available here:<br />
<a href="http://www.anychart.com/platforms/flex/samples/chartTypes/srcview/index.html" target="_blank">http://www.anychart.com/platforms/flex/samples/chartTypes/srcview/index.html</a></p>
<p><strong>Sample #2: Sales map.</strong><br />
<a href="http://www.anychart.com/platforms/flex/samples/salesMap/AnyChartFlexSalesMap.html" target="_blank"><img src="http://anychart.com/platforms/flex/samples/img/salesMap.png" /></a></p>
<p><a href="http://www.anychart.com/platforms/flex/samples/salesMap/AnyChartFlexSalesMap.html" target="_blank">http://www.anychart.com/platforms/flex/samples/salesMap/AnyChartFlexSalesMap.html</a><br />
Source code of this sample is available here:<br />
<a href="http://www.anychart.com/platforms/flex/samples/salesMap/srcview/index.html" target="_blank">http://www.anychart.com/platforms/flex/samples/salesMap/srcview/index.html</a></p>
<p><strong>Sample #3: Yahoo Weather with AnyChart Flash Maps.</strong><br />
<a href="http://anychart.com/platforms/flex/samples/yahooWeather/YahooWeatherSample.htm" target="_blank"><img src="http://anychart.com/platforms/flex/samples/img/yahooWeather.png" /><br />
http://www.anychart.com/platforms/flex/samples/yahooWeather/YahooWeatherSample.html</a><br />
Source code of this sample is available here:<br />
<a href="http://anychart.com/platforms/flex/samples/yahooWeather/srcview/index.html" target="_blank">http://www.anychart.com/platforms/flex/samples/yahooWeather/srcview/index.html</a></p>
<p><strong> Quick start guide:</strong><br />
1. Download AnyChartFlexComponent.swc and add them to the &#8220;libs&#8221; folder of your project<br />
2. Open your Flex application in the &#8220;Design&#8221; view.<br />
3. Drag AnyCharFlex from Components panel to the stage (Custom-&gt;AnyChartFlex)<br />
4. Open the &#8220;Code&#8221; view and write XML for the chart. e.g.</p>
<pre>
&lt;ns1:AnyChartFlex x="10" y="10" width="550" height="400"&gt;
&lt;ns1:anychartXML&gt;
&lt;mx:XML&gt;
&lt;anychart&gt;
  &lt;charts&gt;
    &lt;chart&gt;
      &lt;data&gt;
        &lt;series&gt;
          &lt;point name="pt1" y="10" /&gt;
          &lt;point name="pt2" y="20" /&gt;
          &lt;point name="pt3" y="30" /&gt;
          &lt;point name="pt4" y="40" /&gt;
          &lt;point name="pt5" y="20" /&gt;
        &lt;/series&gt;
      &lt;/data&gt;
    &lt;/chart&gt;
  &lt;/charts&gt;
&lt;/anychart&gt;
&lt;/mx:XML&gt;
&lt;/ns1:anychartXML&gt;
&lt;/ns1:AnyChartFlex&gt;</pre>
<p>That&#8217;s it! Quick and Easy!</p>
<p>You can find complete XML reference here:<br />
<a href="http://anychart.com/products/anychart/docs/xmlReference/index.html" target="_blank">http://www.anychart.com/products/anychart/docs/xmlReference/index.html</a></p>
<p>Beta 1 provides full support of the AnyChart XML format, it means that all AnyChart features are available!</p>
<p>So - you are welcome to play with our demos and leave your comments! Your opinion is very important for us - Thank you!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.anychart.com/blog/2008/02/29/anychart-for-adobe-flex-3-advanced-chart-and-map-component/feed/</wfw:commentRss>
		</item>
		<item>
		<title>ActionScript 3 compiller - - bug</title>
		<link>http://www.anychart.com/blog/2008/02/19/actionscript-3-compiller-bug/</link>
		<comments>http://www.anychart.com/blog/2008/02/19/actionscript-3-compiller-bug/#comments</comments>
		<pubDate>Tue, 19 Feb 2008 06:10:12 +0000</pubDate>
		<dc:creator>Alex Batsuev</dc:creator>
		
		<category><![CDATA[Flash platform]]></category>

		<guid isPermaLink="false">http://www.anychart.com/blog/2008/02/19/actionscript-3-compiller-bug/</guid>
		<description><![CDATA[We have found a nice bug in mxmlc compiller  
var a:Number = 10;
var b:Number = 20;
var c:Number = a - - b;
trace (c);
It&#8217;s correct! Result is 30. But mxmlc ant task doesn&#8217;t compile this code sometimes&#8230;
It&#8217;s very surprising bug.
]]></description>
			<content:encoded><![CDATA[<p>We have found a nice bug in mxmlc compiller <img src='http://www.anychart.com/blog/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> </p>
<p>var a:Number = 10;<br />
var b:Number = 20;<br />
var c:Number = a - - b;<br />
trace (c);</p>
<p>It&#8217;s correct! Result is 30. But mxmlc ant task doesn&#8217;t compile this code sometimes&#8230;</p>
<p>It&#8217;s very surprising bug.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.anychart.com/blog/2008/02/19/actionscript-3-compiller-bug/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Add Interactive Charts to your Microsoft SharePoint portal</title>
		<link>http://www.anychart.com/blog/2008/02/04/add-interactive-charts-to-your-microsoft-sharepoint-portal/</link>
		<comments>http://www.anychart.com/blog/2008/02/04/add-interactive-charts-to-your-microsoft-sharepoint-portal/#comments</comments>
		<pubDate>Mon, 04 Feb 2008 04:41:50 +0000</pubDate>
		<dc:creator>Anton Baranchuk</dc:creator>
		
		<category><![CDATA[AnyChart for SharePoint]]></category>

		<category><![CDATA[Business Intelligence]]></category>

		<category><![CDATA[Dashboards]]></category>

		<category><![CDATA[AnyChart charting component]]></category>

		<category><![CDATA[News]]></category>

		<guid isPermaLink="false">http://www.anychart.com/blog/2008/02/04/add-interactive-charts-to-your-microsoft-sharepoint-portal/</guid>
		<description><![CDATA[AnyChart announces new product - AnyChart for SharePoint!
That product will add advanced charting functionality to Microsoft SharePoint projects.
Key features:
- easy integration
- high scalability
- advanced data binding
- visual chart designer
- a lot of chart types
- animation and interactivity
- clear licensing
The product will be launched during March&#8217;08.
Interested in product? Want to participate in beta-testing program? Please contact [...]]]></description>
			<content:encoded><![CDATA[<p><strong>AnyChart</strong> announces new product - <strong>AnyChart for SharePoint</strong>!<br />
That product will add advanced charting functionality to Microsoft SharePoint projects.</p>
<p><strong>Key features:</strong><br />
- easy integration<br />
- high scalability<br />
- advanced data binding<br />
- visual chart designer<br />
- a lot of chart types<br />
- animation and interactivity<br />
- clear licensing</p>
<p>The product will be launched during March&#8217;08.</p>
<p>Interested in product? Want to participate in beta-testing program? Please contact us <a href="mailto:support@anychart.com">support@anychart.com</a></p>
<p><strong>Create visually appealing dashboards and scorecards for SharePoint  with AnyChart!</strong></p>
<p style="text-align: center"><img src="http://www.anychart.com/images/anychart-for-sharepoint.jpg" alt="AnyChart for SharePoint" /></p>
]]></content:encoded>
			<wfw:commentRss>http://www.anychart.com/blog/2008/02/04/add-interactive-charts-to-your-microsoft-sharepoint-portal/feed/</wfw:commentRss>
		</item>
		<item>
		<title>AnyChart 4.2.1 Released - Featuring Custom Animation</title>
		<link>http://www.anychart.com/blog/2008/01/31/anychart-421-released-featuring-custom-animation/</link>
		<comments>http://www.anychart.com/blog/2008/01/31/anychart-421-released-featuring-custom-animation/#comments</comments>
		<pubDate>Fri, 01 Feb 2008 03:44:34 +0000</pubDate>
		<dc:creator>tim</dc:creator>
		
		<category><![CDATA[AnyChart charting component]]></category>

		<guid isPermaLink="false">http://www.anychart.com/blog/2008/01/31/anychart-421-released-featuring-custom-animation/</guid>
		<description><![CDATA[On January 31st, AnyChart Team is proud to present minor, but very interesting 4.2.1 release.
Now you can animate chart elements (lines, bars, points, etc.), elements labels and markers, you can set a different animation to each series, animate only certain point or label of certain point. For easy configuration you can use animation style - [...]]]></description>
			<content:encoded><![CDATA[<p>On January 31st, AnyChart Team is proud to present minor, but very interesting 4.2.1 release.</p>
<p class="main">Now you can animate chart elements (lines, bars, points, etc.), elements labels and markers, you can set a different animation to each series, animate only certain point or label of certain point. For easy configuration you can use animation style - settings that can be reused for any element.</p>
<p class="main">Also, we have updated the engine and now AnyChart works faster making possible plotting larger volumes of data.</p>
<p> Read more about available animation settings in <a href="http://www.anychart.com/products/anychart/docs/users-guide/index.html?animation.html" target="_blank">AnyChart Chart Animation Tutorial</a> in <a href="http://www.anychart.com/products/anychart/docs/users-guide/index.html" target="_blank">AnyChart User&#8217;s Guide</a>.</p>
<p>Also, we have created a small Animation Playground, that allows you to pick an animation style, choose motion type, duration, etc. and preview how these settings will work, <a href="http://www.anychart.com/products/anychart/docs/users-guide/livesamples/animation/index.html" target="_blank">click to visit Animation Playground right now</a>.</p>
<p>The new version can be downloaded  from our site: <a href="http://www.anychart.com/download/" target="_blank">Download fully functional trial version</a><br />
Default animation for all chart types is shown in the <a href="http://www.anychart.com/products/anychart/gallery/" target="_blank">AnyChart Flash Chart Gallery</a></p>
<p>Registered Customers can obtain new version from <a href="http://www.anychart.com/customer_area/" target="_blank">Customer Area</a>.</p>
<p>New features allow to build visually appealing animated dashboards and reports!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.anychart.com/blog/2008/01/31/anychart-421-released-featuring-custom-animation/feed/</wfw:commentRss>
		</item>
	</channel>
</rss>
