<?xml version="1.0"?>
<rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:xwf="http://xml.liquidobjects.com/schemas/xwf" xmlns:lo="http://xml.liquidobjects.com/schemas/lo">
  <channel>
    <title>Comindwork RSS</title>
    <link>http://blog.flexmonster.com/</link>
    <description>RSS of all actions in your Comindwork projects</description>
    <language>en-us</language>
    <item>
      <title>PIVOT/BLOG: Integrate Pivot Table &amp; Charts with PHP/MySQL *new  [Roman Petrusha created] </title>
      <link>http://blog.flexmonster.com/open.aspx/PIVOT/Talk/Integrate_Pivot_Table_Charts_with_PHP_MySQL</link>
      <comments>http://blog.flexmonster.com/open.aspx/PIVOT/Talk/Integrate_Pivot_Table_Charts_with_PHP_MySQL</comments>
      <description>Roman Petrusha created:&lt;br&gt;&lt;ol&gt;&lt;li&gt;REDIRECT &lt;a class='project' href='http://blog.flexmonster.com/open.aspx/PIVOT' target='_parent'&gt;PIVOT&lt;/a&gt;/&lt;a href='http://blog.flexmonster.com/open.aspx/PIVOT/Talk/Integrate_Pivot_Table_and_Charts_with_PHP_MySQL' target='_parent' class='wikiPage'&gt;Talk/Integrate_Pivot_Table_and_Charts_with_PHP_MySQL&lt;/a&gt;&lt;/li&gt;&lt;/ol&gt;</description>
      <author>Roman Petrusha</author>
      <pubDate>2009-11-20 11:03:14Z</pubDate>
    </item>
    <item>
      <title>PIVOT/BLOG: Integrate Pivot Table &amp; Charts with PHP/MySQL -&gt; Integrate Pivot Table and Charts with PHP/MySQL  [Roman Petrusha renamed] </title>
      <link>http://blog.flexmonster.com/open.aspx/PIVOT/Talk/Integrate_Pivot_Table_and_Charts_with_PHP_MySQL</link>
      <comments>http://blog.flexmonster.com/open.aspx/PIVOT/Talk/Integrate_Pivot_Table_and_Charts_with_PHP_MySQL</comments>
      <description>Roman Petrusha renamed:&lt;br&gt;&lt;h1&gt;How to integrate FlexMonster Pivot Table &amp;amp; Charts Component with PHP/MySQL&lt;/h1&gt;&lt;br/&gt;&lt;br&gt;FlexMonster Pivot Table Component can be easily interated with your PHP site&lt;br/&gt;&lt;br&gt;We will guide you through simple PHP integration sample.&lt;br/&gt;&lt;br&gt;To integrate Pivot Table into your page you should accomplish the following steps:&lt;ol&gt;  &lt;li&gt;Copy content of Pivot folder &lt;span style="color:#555;"&gt;(Pivot component and supported files)&lt;/span&gt; to root of your site or sandbox folder.&lt;/li&gt;  &lt;li&gt;  Insert Pivot component into your .php file – paste code below:&lt;br /&gt;&lt;br&gt;  &lt;blockquote&gt;&lt;i&gt;&amp;lt;script type=&amp;quot;text/javascript&amp;quot; src=&amp;quot;swfobject.js&amp;quot;&gt;&amp;lt;/script&gt;&lt;br /&gt;&lt;br&gt;    &amp;lt;div id=&amp;quot;flashContent&amp;quot;&gt;No Flash player or Javascript disabeled message&amp;lt;/div&gt;&lt;br /&gt;&lt;br&gt;  &amp;lt;script type=&amp;quot;text/javascript&amp;quot;&gt;&lt;br /&gt;&lt;br&gt;      var so = new SWFObject(&amp;quot;PivotTable.swf&amp;quot;, &amp;quot;flash&amp;quot;, &amp;quot;1000&amp;quot;, &amp;quot;720&amp;quot;, &amp;quot;9&amp;quot;, &amp;quot;#FFFFFF&amp;quot;);&lt;br /&gt;&lt;br&gt;    &lt;br&gt;        so.addParam(&amp;quot;allowScriptAccess&amp;quot;, &amp;quot;sameDomain&amp;quot;);&lt;br /&gt;&lt;br&gt;          so.addParam(&amp;quot;menu&amp;quot;, &amp;quot;false&amp;quot;);&lt;br /&gt;&lt;br&gt;          so.addParam(&amp;quot;allowFullScreen&amp;quot;, &amp;quot;true&amp;quot;);&lt;br /&gt;&lt;br&gt;          so.addVariable(&amp;quot;filename&amp;quot;, &amp;quot;&lt;i&gt;your_data_script.php&lt;/i&gt;&amp;quot;);&lt;br /&gt;&lt;br&gt;          so.addVariable(&amp;quot;styleSheetName&amp;quot;, &amp;quot;original.css&amp;quot;);&lt;br /&gt;&lt;br&gt;          so.addVariable(&amp;quot;configuratorEnabled&amp;quot;, &amp;quot;true&amp;quot;);&lt;br /&gt;&lt;br&gt;          so.addVariable(&amp;quot;chartsEnabled&amp;quot;, &amp;quot;true&amp;quot;);&lt;br /&gt;&lt;br&gt;          so.write(&amp;quot;flashContent&amp;quot;);&lt;br /&gt;&lt;br&gt;          flash.focus();&lt;br /&gt;&lt;br&gt;  &amp;lt;/script&gt;&lt;/i&gt;&lt;/blockquote&gt;&lt;/li&gt;  &lt;li&gt;Set path to your data file. To do this change value of &lt;em&gt;filename&lt;/em&gt; FlashVar.&lt;br&gt;    &lt;blockquote&gt;&lt;i&gt;so.addVariable(&amp;quot;&lt;strong&gt;filename&lt;/strong&gt;&amp;quot;, &amp;quot;&lt;strong&gt;&lt;i&gt;your_data_script.php&lt;/i&gt;&lt;/strong&gt;&amp;quot;);&lt;/i&gt;&lt;/blockquote&gt;  &lt;/li&gt;  &lt;li&gt;Now we are ready to write data source script.&lt;/li&gt;&lt;/ol&gt;&lt;h4&gt;Wrinting data source script&lt;/h4&gt;&lt;br&gt;The best data format for Pivot Table Component is CSV. It most compact and can be easily convert to desired data structure. So now we will write simple CSV generator.&lt;br&gt;Your script should retreive data from database and output CSV file.&lt;ul&gt;    &lt;li&gt;Firstly we have to get list of columns:&lt;br /&gt;&lt;br&gt;&lt;ul&gt;&lt;li&gt;connect to database&lt;/li&gt;&lt;li&gt;retreive set of columns&lt;/li&gt;&lt;li&gt;split resulted dataset&lt;/li&gt;&lt;li&gt;write names of columns to csv&lt;/li&gt;&lt;/ul&gt;&lt;blockquote&gt;&lt;i&gt;function getColumns() {&lt;br /&gt;&amp;nbsp;&amp;nbsp;mysql_connect(localhost,$username,$password);&lt;br /&gt;&lt;br&gt;&amp;nbsp;&amp;nbsp;mysql_select_db($database) or die( "Unable to select database");&lt;br /&gt;&lt;br&gt;&amp;nbsp;&amp;nbsp;$csv_output = "";&lt;br /&gt;&lt;br&gt;&amp;nbsp;&amp;nbsp;$sql = "SHOW COLUMNS FROM ".$table;&lt;br /&gt;&lt;br&gt;&amp;nbsp;&amp;nbsp;$result = mysql_query($sql);&lt;br /&gt;&lt;br&gt;&amp;nbsp;&amp;nbsp;while ($row = mysql_fetch_assoc($result)) {&lt;br /&gt;&lt;br&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;$csv_output .= $row["Field"].",";&lt;br /&gt;&lt;br&gt;&amp;nbsp;&amp;nbsp;}&lt;br /&gt;&lt;br&gt;&amp;nbsp;&amp;nbsp;$csv_output = substr($csv_output, 0, -1);&lt;br /&gt;&lt;br&gt;&amp;nbsp;&amp;nbsp;$csv_output .= "\r\n";&lt;br /&gt;&lt;br&gt;}&lt;br /&gt;&lt;br&gt;&lt;/i&gt;&lt;/blockquote&gt;&lt;/li&gt;&lt;li&gt;Retreve data from database:&lt;br /&gt;&lt;br&gt;&lt;ul&gt;&lt;li&gt;select data from database &lt;/li&gt;&lt;li&gt;parse result of query&lt;/li&gt;&lt;li&gt;convert dataset to csv rows&lt;/li&gt;&lt;li&gt;write to csv&lt;/li&gt;&lt;/ul&gt;&lt;blockquote&gt;&lt;i&gt;function getDataRows() {&lt;br /&gt;&amp;nbsp;&amp;nbsp;$query="SELECT * FROM ".$table;&lt;br /&gt;&lt;br&gt;&amp;nbsp;&amp;nbsp;$result = mysql_query($query);&lt;br /&gt;&lt;br&gt;&amp;nbsp;&amp;nbsp;while($row = mysql_fetch_row($result)){&lt;br /&gt;&lt;br&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;for ($i = 0; $i &lt; count($row); $i++) {&lt;br /&gt;&lt;br&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;$csv_output .= $row[$i].",";&lt;br /&gt;&lt;br&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;}&lt;br /&gt;&lt;br&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;$csv_output = substr($csv_output, 0, -1);&lt;br /&gt;&lt;br&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;$csv_output .= "\r\n";&lt;br /&gt;&lt;br&gt;&amp;nbsp;&amp;nbsp;}&lt;br /&gt;&lt;br&gt;}&lt;br /&gt;&lt;br&gt;&lt;/i&gt;&lt;/blockquote&gt;&lt;/li&gt;&lt;li&gt;Send csv response&lt;br&gt;&lt;blockquote&gt;&lt;i&gt;header('Content-type: text/plain');&lt;br /&gt;&lt;br&gt;print $csv_output;&lt;br&gt;&lt;/i&gt;&lt;/blockquote&gt;&lt;/li&gt;&lt;/ul&gt;&lt;br/&gt;&lt;br&gt;You can download full &lt;a target="_blank" href="http://www.flexmonster.com/flash/help/Integrations/php.zip"&gt;source code&lt;/a&gt; of this sample.&lt;br/&gt;</description>
      <author>Roman Petrusha</author>
      <pubDate>2009-11-20 11:03:13Z</pubDate>
    </item>
    <item>
      <title>PIVOT/BLOG: romka-2009-nov-02-16-05 *new  [Roman Petrusha created] </title>
      <link>http://blog.flexmonster.com/open.aspx/PIVOT/Talk/romka-2009-nov-02-16-05</link>
      <comments>http://blog.flexmonster.com/open.aspx/PIVOT/Talk/romka-2009-nov-02-16-05</comments>
      <description>Roman Petrusha created:&lt;br&gt;&lt;ol&gt;&lt;li&gt;REDIRECT &lt;a class='project' href='http://blog.flexmonster.com/open.aspx/PIVOT' target='_parent'&gt;PIVOT&lt;/a&gt;/&lt;a href='http://blog.flexmonster.com/open.aspx/PIVOT/Talk/Integrate_Pivot_Table_Charts_with_PHP_MySQL' target='_parent' class='nosuchpage'&gt;Talk/Integrate_Pivot_Table_Charts_with_PHP_MySQL&lt;/a&gt;&lt;/li&gt;&lt;/ol&gt;</description>
      <author>Roman Petrusha</author>
      <pubDate>2009-11-20 11:01:18Z</pubDate>
    </item>
    <item>
      <title>PIVOT/WIKI: Welcome to Pivot  [Roman Petrusha edited] </title>
      <link>http://blog.flexmonster.com/open.aspx/PIVOT/Welcome_to_Pivot</link>
      <comments>http://blog.flexmonster.com/open.aspx/PIVOT/Welcome_to_Pivot</comments>
      <description>Roman Petrusha edited:&lt;br&gt;&lt;style&gt;.twtr-widget {float:left;}&lt;/style&gt;&lt;a href="http://www.flexmonster.com/flash-pivot-table-component"&gt;&lt;img src="http://www.flexmonster.com/images/screens/Pivot_big_home.png" width="445" height="384" align="left" border="0" hspace="10"&gt;&lt;/a&gt;&lt;div&gt;&lt;script src="http://widgets.twimg.com/j/2/widget.js"&gt;&lt;/script&gt;&lt;script&gt;new TWTR.Widget({  version: 2,  type: 'profile',  rpp: 5,  interval: 6000,  width: 300,  height: 280,  theme: {    shell: {      background: '#d6cfd6',      color: '#0a010a'    },    tweets: {      background: '#ffffff',      color: '#080808',      links: '#1641f0'    }  },  features: {    scrollbar: false,    loop: false,    live: false,    hashtags: true,    timestamp: true,    avatars: false,    behavior: 'all'  }}).render().setUser('FlexMonster').start();&lt;/script&gt;&lt;/div&gt;&lt;div class="clear"&gt;&lt;/div&gt;&lt;ul&gt;&lt;li&gt;Display large amounts of information in the most friendly way&lt;/li&gt;&lt;li&gt;Flex based OLAP charts and DataGrid, Action Script 3.0&lt;/li&gt;&lt;li&gt;Integrate with your exsisting BI tools for effective data analysis&lt;/li&gt;&lt;li&gt;XMLA and MDX support for multidimensional data visualization&lt;/li&gt;&lt;li&gt;Subtotaling and aggregating numeric data&lt;/li&gt;&lt;li&gt;Filtering, sorting and grouping data&lt;/li&gt;&lt;li&gt;Alternative to popular BI tools, JPivot, olap4j&lt;/li&gt;&lt;li&gt;Works good with Microsoft OLAP and Mondrian&lt;/li&gt;&lt;/ul&gt;&lt;br&gt;To see documentation, download the component or see it in action&lt;b&gt;&lt;a href="http://www.flexmonster.com/flash-pivot-table-component"&gt;visit Pivot Table &amp; Charts site&lt;/a&gt;&lt;/b&gt;&lt;br&gt;</description>
      <author>Roman Petrusha</author>
      <pubDate>2009-10-23 13:39:48Z</pubDate>
    </item>
    <item>
      <title>PIVOT/TAG: XMLA *new  [Admin Adminovich created] </title>
      <link>http://blog.flexmonster.com/open.aspx/PIVOT/TAG/XMLA</link>
      <description>Admin Adminovich created:&lt;br&gt;</description>
      <author>Admin Adminovich</author>
      <pubDate>2008-03-31 13:16:17Z</pubDate>
    </item>
    <item>
      <title>PIVOT/BLOG: Communicating with Analysis Services from Flash  [Admin Adminovich edited] </title>
      <link>http://blog.flexmonster.com/open.aspx/PIVOT/Talk/Communicating_with_Analysis_Services_from_Flash</link>
      <comments>http://blog.flexmonster.com/open.aspx/PIVOT/Talk/Communicating_with_Analysis_Services_from_Flash</comments>
      <description>Admin Adminovich edited:&lt;br&gt;How to talk to MS Analysis Services from Flash to reach OLAP Cube? It was the first question.&lt;br&gt;Firstly, you need to know that Microsoft Analysis Services uses SOAP-based &lt;b&gt;XML for Analysis&lt;/b&gt; protocol to exchange of data between clients and server. (&lt;i&gt;You may also &lt;a href="http://en.wikipedia.org/wiki/XML_for_Analysis"&gt;read more about XMLA&lt;/a&gt; on Wikipedia&lt;/i&gt;)&lt;br&gt;So in Flash application &lt;ol&gt;&lt;li&gt; generate XMLA request, &lt;/li&gt;&lt;li&gt; forward it to SOAP wrapper and &lt;/li&gt;&lt;li&gt; send SOAP request to the HTTP pump (&lt;a href="http://" class="external_url"&gt;http://&lt;/a&gt;&lt;i&gt;your_host_name&lt;/i&gt;/msmdpump.dll), &lt;/li&gt;&lt;li&gt; HTTP pump forwards the request to the server. &lt;/li&gt;&lt;/ol&gt;&lt;br&gt;Microsoft Analysis Services &lt;ol&gt;&lt;li&gt; sends the SOAP response back to the HTTP pump,&lt;/li&gt;&lt;li&gt; SOAP parser retrieve data from HTTP pump and &lt;/li&gt;&lt;li&gt; prepare data for our application.&lt;/li&gt;&lt;/ol&gt;&lt;div align="center"&gt;&lt;img src="http://content.screencast.com/media/e7ecde76-03a2-4025-ad0e-e9cc881d4515_e6e39754-40b6-4813-8c45-36e016b3937d_static_0_0_2008-03-31_1206.png" width="552" height="502" border="0" /&gt;&lt;/div&gt;&lt;br&gt;There two types of XMLA request. The &lt;i&gt;Discover&lt;/i&gt; method retrieve information about data structure on a server and the &lt;i&gt;Execute&lt;/i&gt; method sends requests for retrieving or updating data. We discover data structure and choose desired dimensions for view, retrieve data from server and show in grid.&lt;br&gt;&lt;b&gt;&lt;a href="http://www.flexmonster.com/demo/pivot/index.html" target="_blank"&gt;You can try demo in action&lt;/a&gt;&lt;/b&gt; - it is connected to the sample OLAP cube in MS Analysis Services. You can configure the dimensions structure and visualize the result.</description>
      <author>Admin Adminovich</author>
      <pubDate>2008-03-31 13:16:11Z</pubDate>
      <category>live demo</category>
      <category>XMLA</category>
    </item>
    <item>
      <title>PIVOT/BLOG: romka-2008-feb-29-11-17 -&gt; Change the field layout in a PivotTable  [Roman Petrusha renamed] </title>
      <link>http://blog.flexmonster.com/open.aspx/PIVOT/Talk/Change_the_field_layout_in_a_PivotTable</link>
      <comments>http://blog.flexmonster.com/open.aspx/PIVOT/Talk/Change_the_field_layout_in_a_PivotTable</comments>
      <description>Roman Petrusha renamed:&lt;br&gt;Today we have prepared a &lt;a href="http://www.flexmonster.com/pivot-table-flex-component"&gt;&lt;b&gt;new demo&lt;/b&gt;&lt;/a&gt; of Pivot Table. We want to show you new feature of Pivot visualization. You can organize your own structures of Pivot &lt;b&gt;dimensions&lt;/b&gt; and see data from different points of view by selecting. &lt;br&gt;There are five areas in options view: Filters, Columns, Rows, Values and All Fields. To change data structure drag field from one area and drop to another. When desired dimensions structure is ready - click &amp;quot;Apply Changes&amp;quot; button and see your new visualization of the same data. In this demo you can change only columns and rows. Filter area is still unused and Values show only sum of one dimension - work hours.&lt;br&gt;&lt;div style="border:1px dotted black;width:603px;"&gt;&lt;a href="http://www.flexmonster.com/pivot-table-flex-component"&gt;&lt;img src="open.aspx/fs/FLEXMONSTER/PIVOT/public/Pivot_Table_Draggable_Dimensions.png" border="0"/&gt;&lt;/a&gt;&lt;/div&gt;&lt;br&gt;&lt;a name="Video Demo (40 sec)"&gt;&lt;/a&gt;&lt;h3&gt;Video Demo (40 sec)&lt;/h3&gt;&lt;div style="border:2px dotted black;width:770px;"&gt;&lt;object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000"id="index" width="770" height="560"codebase="http://fpdownload.macromedia.com/get/flashplayer/current/swflash.cab"&gt;&lt;param name="movie" value="http://ni.comindwork.com/open.aspx/fs/FLEXMONSTER/PIVOT/public/Pivot_Table_Draggable_Dimensions_Video_demo.swf" /&gt;&lt;param name="quality" value="high" /&gt;&lt;param name="bgcolor" value="#869ca7" /&gt;&lt;param name="allowScriptAccess" value="sameDomain" /&gt;&lt;embed src="http://ni.comindwork.com/open.aspx/fs/FLEXMONSTER/PIVOT/public/Pivot_Table_Draggable_Dimensions_Video_demo.swf" quality="high" bgcolor="#869ca7"width="770" height="560" name="index" align="middle"play="true"loop="false"quality="high"allowScriptAccess="sameDomain"type="application/x-shockwave-flash"pluginspage="http://www.adobe.com/go/getflashplayer"&gt;&lt;/embed&gt;&lt;/object&gt;&lt;/div&gt; &lt;a href="http://www.flexmonster.com/pivot-table-flex-component"&gt;&lt;b&gt;Try PIVOT TABLE in Action&lt;/b&gt;&lt;/a&gt;</description>
      <author>Roman Petrusha</author>
      <pubDate>2008-03-02 12:59:21Z</pubDate>
      <category>Pivot</category>
      <category>live demo</category>
    </item>
    <item>
      <title>PIVOT/TAG: live demo  [Admin Adminovich edited] </title>
      <link>http://blog.flexmonster.com/open.aspx/PIVOT/TAG/live_demo</link>
      <description>Admin Adminovich edited:&lt;br&gt;</description>
      <author>Admin Adminovich</author>
      <pubDate>2008-02-29 20:31:10Z</pubDate>
    </item>
    <item>
      <title>PIVOT/TAG: Pivot  [Admin Adminovich edited] </title>
      <link>http://blog.flexmonster.com/open.aspx/PIVOT/TAG/Pivot</link>
      <description>Admin Adminovich edited:&lt;br&gt;</description>
      <author>Admin Adminovich</author>
      <pubDate>2008-02-29 20:31:08Z</pubDate>
    </item>
    <item>
      <title>PIVOT/BLOG: romka-2008-feb-29-11-17 -&gt; Change the field layout in a PivotTable  [Admin Adminovich renamed] </title>
      <link>http://blog.flexmonster.com/open.aspx/PIVOT/Talk/Change_the_field_layout_in_a_PivotTable</link>
      <comments>http://blog.flexmonster.com/open.aspx/PIVOT/Talk/Change_the_field_layout_in_a_PivotTable</comments>
      <description>Admin Adminovich renamed:&lt;br&gt;Today we have prepared a &lt;a href="http://www.flexmonster.com/pivot-table-flex-component"&gt;&lt;b&gt;new demo&lt;/b&gt;&lt;/a&gt; of Pivot Table. We want to show you new feature of Pivot visualization. You can organize your own structures of Pivot &lt;b&gt;dimensions&lt;/b&gt; and see data from different points of view by selecting. &lt;br&gt;There are five areas in options view: Filters, Columns, Rows, Values and All Fields. To change data structure drag field from one area and drop to another. When desired dimensions structure is ready - click &amp;quot;Apply Changes&amp;quot; button and see your new visualization of the same data. In this demo you can change only columns and rows. Filter area is still unused and Values show only sum of one dimension - work hours.&lt;br&gt;&lt;div style="border:1px dotted black;width:603px;"&gt;&lt;a href="http://www.flexmonster.com/pivot-table-flex-component"&gt;&lt;a href="http://blog.flexmonster.com/open.aspx/fs/FLEXMONSTER/PIVOT/public/Pivot_Table_Draggable_Dimensions.png"&gt;&lt;img align=""alt="603"style="border:0"src="http://blog.flexmonster.com/open.aspx/fs/FLEXMONSTER/PIVOT/public/Pivot_Table_Draggable_Dimensions.png"&gt;&lt;/a&gt;&lt;/a&gt;&lt;/div&gt;&lt;br&gt;&lt;a name="Video Demo (40 sec)"&gt;&lt;/a&gt;&lt;h3&gt;Video Demo (40 sec)&lt;/h3&gt;&lt;div style="border:2px dotted black;width:770px;"&gt;&lt;object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000"id="index" width="770" height="560"codebase="http://fpdownload.macromedia.com/get/flashplayer/current/swflash.cab"&gt;&lt;param name="movie" value="http://ni.comindwork.com/open.aspx/fs/FLEXMONSTER/PIVOT/public/Pivot_Table_Draggable_Dimensions_Video_demo.swf" /&gt;&lt;param name="quality" value="high" /&gt;&lt;param name="bgcolor" value="#869ca7" /&gt;&lt;param name="allowScriptAccess" value="sameDomain" /&gt;&lt;embed src="http://ni.comindwork.com/open.aspx/fs/FLEXMONSTER/PIVOT/public/Pivot_Table_Draggable_Dimensions_Video_demo.swf" quality="high" bgcolor="#869ca7"width="770" height="560" name="index" align="middle"play="true"loop="false"quality="high"allowScriptAccess="sameDomain"type="application/x-shockwave-flash"pluginspage="http://www.adobe.com/go/getflashplayer"&gt;&lt;/embed&gt;&lt;/object&gt;&lt;/div&gt; &lt;a href="http://www.flexmonster.com/pivot-table-flex-component"&gt;&lt;b&gt;Try PIVOT TABLE in Action&lt;/b&gt;&lt;/a&gt;</description>
      <author>Admin Adminovich</author>
      <pubDate>2008-02-29 20:31:01Z</pubDate>
      <category>Pivot</category>
      <category>live demo</category>
    </item>
    <item>
      <title>PIVOT/TAG: Pivot  [Roman Petrusha edited] </title>
      <link>http://blog.flexmonster.com/open.aspx/PIVOT/TAG/Pivot</link>
      <description>Roman Petrusha edited:&lt;br&gt;</description>
      <author>Roman Petrusha</author>
      <pubDate>2008-02-29 19:53:13Z</pubDate>
    </item>
    <item>
      <title>PIVOT/TAG: live demo  [Roman Petrusha edited] </title>
      <link>http://blog.flexmonster.com/open.aspx/PIVOT/TAG/live_demo</link>
      <description>Roman Petrusha edited:&lt;br&gt;</description>
      <author>Roman Petrusha</author>
      <pubDate>2008-02-29 19:53:11Z</pubDate>
    </item>
    <item>
      <title>PIVOT/BLOG: romka-2008-feb-29-11-17 -&gt; Change the field layout in a PivotTable  [Roman Petrusha renamed] </title>
      <link>http://blog.flexmonster.com/open.aspx/PIVOT/Talk/Change_the_field_layout_in_a_PivotTable</link>
      <comments>http://blog.flexmonster.com/open.aspx/PIVOT/Talk/Change_the_field_layout_in_a_PivotTable</comments>
      <description>Roman Petrusha renamed:&lt;br&gt;Today we prepare &lt;a href="http://www.flexmonster.com/pivot-table-flex-component"&gt;&lt;b&gt;new demo&lt;/b&gt;&lt;/a&gt; of Pivot Table. We want to show you new feature of pivot visualization. You can organize your own structures and see data from different points of view. &lt;br&gt;There are five areas in options view: Filters, Columns, Rows, Values and All Fields. To change data structure drag field from one area and drop to another. When desired structure is created click &amp;quot;Apply Changes&amp;quot; button and see your data with new dimensions. In this demo you can change only columns and rows. Filter area is still unused and Values show only sum of one dimension.&lt;div style="border:1px dotted black;width:603px;"&gt;&lt;a href="http://www.flexmonster.com/pivot-table-flex-component"&gt;&lt;img src="http://content.screencast.com/media/0534c60c-6381-4390-8682-58d8faaf6b11_e6e39754-40b6-4813-8c45-36e016b3937d_static_0_0_2008-02-29_1905.png" width="603" height="535" border="0" /&gt;&lt;/a&gt;&lt;/div&gt; &lt;a href="http://www.flexmonster.com/pivot-table-flex-component"&gt;&lt;b&gt;See PIVOT TABLE in Action&lt;/b&gt;&lt;/a&gt;</description>
      <author>Roman Petrusha</author>
      <pubDate>2008-02-29 19:53:04Z</pubDate>
      <category>Pivot</category>
      <category>live demo</category>
    </item>
    <item>
      <title>PIVOT/BLOG: Client Side PDF Generation Using Flash Flex AIR  [Iryna Koval edited] </title>
      <link>http://blog.flexmonster.com/open.aspx/PIVOT/Talk/Client_Side_PDF_Generation_Using_Flash_Flex_AIR</link>
      <comments>http://blog.flexmonster.com/open.aspx/PIVOT/Talk/Client_Side_PDF_Generation_Using_Flash_Flex_AIR</comments>
      <description>Iryna Koval edited:&lt;br&gt;&lt;b&gt;Client Side PDF Generation Using Flash, Flex and AIR&lt;/b&gt;&lt;br&gt;As far as I know, it is really complicated and challenging task to generate PDF on the server side. We have recently faced this challenge on the client side. Our products - &lt;a href='http://www.flexmonster.com/liveart-component' target='_parent' class='external_url'&gt;LiveArt&lt;/a&gt; and &lt;a href='http://www.flexmonster.com/pivot-table-flex-component' target='_parent' class='external_url'&gt;Pivot Table&lt;/a&gt; have to incorporate the PDF generation functionality. We have conducted several researches and I am glad to announce that it is easy (hurray :)) to generate PDF using Flash, Flex and AIR. It has become possible thanks to &lt;a href='http://www.alivepdf.org/' target='_parent' class='external_url'&gt;AlivePDF&lt;/a&gt; library. This &lt;a href='http://drawlogic.com/2007/08/23/as3-pdf-creator-alivepdf-released-alpha/' target='_parent' class='external_url'&gt;post&lt;/a&gt; helped us to find it.&lt;br&gt;How powerful client side PDF generation is? Powerful enough to meet our main need at the moment – generate PDF document as the exact copy of graphic and data visualization objects which users get when they use our Flash/Flex products, like &lt;a href='http://www.flexmonster.com/liveart-component' target='_parent' class='external_url'&gt;LiveArt&lt;/a&gt; and &lt;a href='http://www.flexmonster.com/pivot-table-flex-component' target='_parent' class='external_url'&gt;Pivot Table&lt;/a&gt;. AlivePDF library allows inserting JPEG format images into PDF document. The addImage method uses DisplayObject object (its incoming argument) to take a snapshot of it in JPEG format and insert into the PDF document.&lt;br&gt;AlivePDF library allows us to easily do the following:&lt;ul&gt;&lt;li&gt; Set layout, margins, get sizes;&lt;/li&gt;&lt;li&gt; Add and compose pages;&lt;/li&gt;&lt;li&gt; Use drawing primitives, manage color models;&lt;/li&gt;&lt;li&gt; Set fonts and text properties;&lt;/li&gt;&lt;li&gt; Add images in JPEG format;&lt;/li&gt;&lt;li&gt; etc.&lt;/li&gt;&lt;/ul&gt;&lt;br&gt;Of course, there is no limit to perfection. Our dream is to be able to convert Flash vector objects into similar vector objects in PDF. It seems that we need a number of steps undertaken to make it real. But we will strive and will succeed!&lt;br&gt;</description>
      <author>Iryna Koval</author>
      <pubDate>2008-02-21 12:39:01Z</pubDate>
    </item>
    <item>
      <title>PIVOT/BLOG: Flash Pivot Table with skins and printing  [Iryna Koval edited] </title>
      <link>http://blog.flexmonster.com/open.aspx/PIVOT/Talk/Flash_Pivot_Table_with_skins_and_printing</link>
      <comments>http://blog.flexmonster.com/open.aspx/PIVOT/Talk/Flash_Pivot_Table_with_skins_and_printing</comments>
      <description>Iryna Koval edited:&lt;br&gt;&lt;b&gt;&lt;a href='http://www.flexmonster.com/pivot-table-flex-component' target='_parent' class='external_url'&gt;Pivot Table live demo&lt;/a&gt; is now available.&lt;/b&gt; You can check it out and play with it to see how clear, easy-to-use, and quick Pivot Table is. It visualizes multidimensional data from various data sources (OLAP, XML, etc.) and provides a set of tools to manage these data.&lt;br&gt;Today we have released the following features and tools:&lt;br&gt;&lt;br&gt;    *&lt;b&gt;Drill down on dimensions&lt;/b&gt;. Each dimension which has subdimensions can be collapsed or expanded. This feature works instantly without any delays!&lt;br&gt;    * &lt;b&gt;Full screen&lt;/b&gt; feature for wider view. Imagine your data on 21&amp;quot; (or even bigger) monitor with good screen resolution.&lt;br&gt;    * &lt;b&gt;Printing tool&lt;/b&gt; to get the needed data printed.&lt;br&gt;    * &lt;b&gt;Skin selection&lt;/b&gt;. There are 3 skins available at the moment. One can easily &lt;a href='http://blog.flexmonster.com/open.aspx/PIVOT/Talk/flash-pivot-table-styles' target='_parent' class='wikiPage'&gt;create new skin&lt;/a&gt; within about 10 minutes by simply editing CSS.&lt;br&gt;&lt;b&gt;Drill down on dimensions&lt;/b&gt;&lt;br&gt;&lt;a href="http://www.flexmonster.com/pivot-table-flex-component"&gt;&lt;img alt="" src="open.aspx/fs/FLEXMONSTER/FLEXMONSTER/shared/dd.png" align="" border="0"&gt;&lt;/a&gt;&lt;br&gt;&lt;b&gt;Skins, Full Screen and Printing&lt;/b&gt;&lt;br&gt;&lt;a href="http://www.flexmonster.com/pivot-table-flex-component"&gt;&lt;img alt="" src="open.aspx/fs/FLEXMONSTER/FLEXMONSTER/shared/fs_p_s.png" align="" border="0"&gt;&lt;/a&gt;&lt;br&gt;Our team keeps on working on Pivot Table. So, new features are coming soon, just sit back and wait for the new release.&lt;br&gt;&lt;br&gt;&lt;b&gt;&lt;a href='http://www.flexmonster.com/pivot-table-flex-component' target='_parent' class='external_url'&gt;See PIVOT TABLE in Action&lt;/a&gt;&lt;/b&gt;</description>
      <author>Iryna Koval</author>
      <pubDate>2008-02-13 12:13:13Z</pubDate>
      <category>Pivot</category>
      <category>live demo</category>
    </item>
    <item>
      <title>PIVOT/BLOG: Flash Pivot Table with skins and printing  [Iryna Koval edited] </title>
      <link>http://blog.flexmonster.com/open.aspx/PIVOT/Talk/Flash_Pivot_Table_with_skins_and_printing</link>
      <comments>http://blog.flexmonster.com/open.aspx/PIVOT/Talk/Flash_Pivot_Table_with_skins_and_printing</comments>
      <description>Iryna Koval edited:&lt;br&gt;&lt;b&gt;&lt;a href='http://www.flexmonster.com/pivot-table-flex-component' target='_parent' class='external_url'&gt;Pivot Table live demo&lt;/a&gt; is now available.&lt;/b&gt; You can check it out and play with it to see how clear, easy-to-use, and quick Pivot Table is. It visualizes multidimensional data from various data sources (OLAP, XML, etc.) and provides a set of tools to manage these data.&lt;br&gt;Today we have released the following features and tools:&lt;br&gt;&lt;br&gt;    *&lt;b&gt;Drill down on dimensions&lt;/b&gt;. Each dimension which has subdimensions can be collapsed or expanded. This feature works instantly without any delays!&lt;br&gt;    * &lt;b&gt;Full screen&lt;/b&gt; feature for wider view. Imagine your data on 21&amp;quot; (or even bigger) monitor with good screen resolution.&lt;br&gt;    * &lt;b&gt;Printing tool&lt;/b&gt; to get the needed data printed.&lt;br&gt;    * &lt;b&gt;Skin selection&lt;/b&gt;. There are 3 skins available at the moment. One can easily &lt;a href='http://blog.flexmonster.com/open.aspx/PIVOT/Talk/flash-pivot-table-styles' target='_parent' class='wikiPage'&gt;create new skin&lt;/a&gt; within about 10 minutes by simply editing CSS.&lt;br&gt;&lt;b&gt;Drill down on dimensions&lt;/b&gt;&lt;br&gt;&lt;a href="http://blog.flexmonster.com/open.aspx/fs/FLEXMONSTER/FLEXMONSTER/shared/dd.png"&gt;&lt;img align=""alt=""style="border:0"src="http://blog.flexmonster.com/open.aspx/fs/FLEXMONSTER/FLEXMONSTER/shared/dd.png"&gt;&lt;/a&gt;&lt;br&gt;&lt;b&gt;Skins, Full Screen and Printing&lt;/b&gt;&lt;br&gt;&lt;a href="http://blog.flexmonster.com/open.aspx/fs/FLEXMONSTER/FLEXMONSTER/shared/fs_p_s.png"&gt;&lt;img align=""alt=""style="border:0"src="http://blog.flexmonster.com/open.aspx/fs/FLEXMONSTER/FLEXMONSTER/shared/fs_p_s.png"&gt;&lt;/a&gt;&lt;br&gt;Our team keeps on working on Pivot Table. So, new features are coming soon, just sit back and wait for the new release.</description>
      <author>Iryna Koval</author>
      <pubDate>2008-02-12 21:41:39Z</pubDate>
      <category>Pivot</category>
      <category>live demo</category>
    </item>
    <item>
      <title>PIVOT/BLOG: Flash Pivot Table with skins and printing  [Iryna Koval edited] </title>
      <link>http://blog.flexmonster.com/open.aspx/PIVOT/Talk/Flash_Pivot_Table_with_skins_and_printing</link>
      <comments>http://blog.flexmonster.com/open.aspx/PIVOT/Talk/Flash_Pivot_Table_with_skins_and_printing</comments>
      <description>Iryna Koval edited:&lt;br&gt;&lt;b&gt;&lt;a href='http://www.flexmonster.com/pivot-table-flex-component' target='_parent' class='external_url'&gt;Pivot Table live demo&lt;/a&gt; is now available.&lt;/b&gt; You can check it out and play with it to see how clear, easy-to-use, and quick Pivot Table is. It visualizes multidimensional data from various data sources (OLAP, XML, etc.) and provides a set of tools to manage these data.&lt;br&gt;Today we have released the following features and tools:&lt;br&gt;&lt;br&gt;    *&lt;b&gt;Drill down on dimensions&lt;/b&gt;. Each dimension which has subdimensions can be collapsed or expanded. This feature works instantly without any delays!&lt;br&gt;    * &lt;b&gt;Full screen&lt;/b&gt; feature for wider view. Imagine your data on 21&amp;quot; (or even bigger) monitor with good screen resolution.&lt;br&gt;    * &lt;b&gt;Printing tool&lt;/b&gt; to get the needed data printed.&lt;br&gt;    * &lt;b&gt;Skin selection&lt;/b&gt;. There are 3 skins available at the moment. One can easily &lt;a href='http://blog.flexmonster.com/open.aspx/PIVOT/Talk/flash-pivot-table-styles' target='_parent' class='wikiPage'&gt;create new skin&lt;/a&gt; within about 10 minutes by simply editing CSS.&lt;br&gt;&lt;b&gt;Drill down on dimensions&lt;/b&gt;&lt;br&gt;&lt;a href="http://blog.flexmonster.com/open.aspx/fs/FLEXMONSTER/FLEXMONSTER/shared/dd.png"&gt;&lt;img align=""alt=""style="border:0"src="http://blog.flexmonster.com/open.aspx/fs/FLEXMONSTER/FLEXMONSTER/shared/dd.png"&gt;&lt;/a&gt;&lt;br&gt;Our team keeps on working on Pivot Table. So, new features are coming soon, just sit back and wait for the new release.</description>
      <author>Iryna Koval</author>
      <pubDate>2008-02-12 21:19:53Z</pubDate>
      <category>Pivot</category>
      <category>live demo</category>
    </item>
    <item>
      <title>PIVOT/BLOG: Flash Pivot Table with skins and printing  [Iryna Koval edited] </title>
      <link>http://blog.flexmonster.com/open.aspx/PIVOT/Talk/Flash_Pivot_Table_with_skins_and_printing</link>
      <comments>http://blog.flexmonster.com/open.aspx/PIVOT/Talk/Flash_Pivot_Table_with_skins_and_printing</comments>
      <description>Iryna Koval edited:&lt;br&gt;&lt;b&gt;&lt;a href="http://www.flexmonster.com/pivot-table-flex-component"&gt;Pivot Table live demo&lt;/a&gt; is now available.&lt;/b&gt; You can check it out and play with it to see how clear, easy-to-use, and quick Pivot Table is. It visualizes multidimensional data from various data sources (OLAP, XML, etc.) and provides a set of tools to manage these data.&lt;br&gt;Today we have released the following features and tools:&lt;br&gt;&lt;br&gt;    *&lt;b&gt;Drill down on dimensions&lt;/b&gt;. Each dimension which has subdimensions can be collapsed or expanded. This feature works instantly without any delays!&lt;br&gt;    * &lt;b&gt;Full screen&lt;/b&gt; feature for wider view. Imagine your data on 21&amp;quot; (or even bigger) monitor with good screen resolution.&lt;br&gt;    * &lt;b&gt;Printing tool&lt;/b&gt; to get the needed data printed.&lt;br&gt;    * &lt;b&gt;Skin selection&lt;/b&gt;. There are 3 skins available at the moment. One can easily create new skin within about 10 minutes by simply editing CSS.&lt;br&gt;&lt;b&gt;Drill down on dimensions&lt;/b&gt;&lt;br&gt;&lt;a href="http://blog.flexmonster.com/open.aspx/fs/FLEXMONSTER/FLEXMONSTER/shared/dd.png"&gt;&lt;img align=""alt=""style="border:0"src="http://blog.flexmonster.com/open.aspx/fs/FLEXMONSTER/FLEXMONSTER/shared/dd.png"&gt;&lt;/a&gt;&lt;br&gt;Our team keeps on working on Pivot Table. So, new features are coming soon, just sit back and wait for the new release.</description>
      <author>Iryna Koval</author>
      <pubDate>2008-02-12 21:05:59Z</pubDate>
      <category>Pivot</category>
      <category>live demo</category>
    </item>
    <item>
      <title>PIVOT/BLOG: Flash Pivot Table with skins and printing *new  [Iryna Koval created] </title>
      <link>http://blog.flexmonster.com/open.aspx/PIVOT/Talk/Flash_Pivot_Table_with_skins_and_printing</link>
      <comments>http://blog.flexmonster.com/open.aspx/PIVOT/Talk/Flash_Pivot_Table_with_skins_and_printing</comments>
      <description>Iryna Koval created:&lt;br&gt;&lt;b&gt;&lt;a href="http://www.flexmonster.com/pivot-table-flex-component"&gt;Pivot Table live demo&lt;/a&gt; is now available.&lt;/b&gt; You can check it out and play with it to see how clear, easy-to-use, and quick Pivot Table is. It visualizes multidimensional data from various data sources (OLAP, XML, etc.) and provides a set of tools to manage these data.&lt;br&gt;Today we have released the following features and tools:&lt;br&gt;&lt;br&gt;    *&lt;b&gt;Drill down on dimensions&lt;/b&gt;. Each dimension which has subdimensions can be collapsed or expanded. This feature works instantly without any delays!&lt;br&gt;    * &lt;b&gt;Full screen&lt;/b&gt; feature for wider view. Imagine your data on 21&amp;quot; (or even bigger) monitor with good screen resolution.&lt;br&gt;    * &lt;b&gt;Printing tool&lt;/b&gt; to get the needed data printed.&lt;br&gt;    * &lt;b&gt;Skin selection&lt;/b&gt;. There are 3 skins available at the moment. One can easily create new skin within about 10 minutes by simply editing CSS.&lt;br&gt;Our team keeps on working on Pivot Table. So, new features are coming soon, just sit back and wait for the new release.</description>
      <author>Iryna Koval</author>
      <pubDate>2008-02-12 20:04:15Z</pubDate>
      <category>Pivot</category>
      <category>live demo</category>
    </item>
    <item>
      <title>PIVOT/BLOG: flexmonsterandrew y9dec05 081925 -&gt; flex-org-components  [Andrew Uminski renamed] </title>
      <link>http://blog.flexmonster.com/open.aspx/PIVOT/Talk/flex-org-components</link>
      <comments>http://blog.flexmonster.com/open.aspx/PIVOT/Talk/flex-org-components</comments>
      <description>Andrew Uminski renamed:&lt;br&gt;Hurray! We are listed on &lt;a href='http://flex.org/components/' target='_parent' class='external_url'&gt;Flex.org Components&lt;/a&gt; with &lt;b&gt;Pivot Table&lt;/b&gt; component for data visualization :-)&lt;br&gt;Special thanks to Mike Potter who listed us and wrote in his blog &lt;a href='http://weblogs.macromedia.com/flexteam/archives/2007/11/cool_new_flex_c.cfm' target='_parent' class='external_url'&gt;Cool New Flex Components&lt;/a&gt;, we got really huge interest already and get inspired to build even more exciting AS3 and Flex components. We are now preparing our development Roadmap, expect to check it in the near future!&lt;br&gt;</description>
      <author>Andrew Uminski</author>
      <pubDate>2007-12-14 01:58:40Z</pubDate>
    </item>
    <item>
      <title>PIVOT/BLOG: flexmonsterandrew y9nov29 103630 -&gt; welcome-to-flexmonster  [Andrew Uminski renamed] </title>
      <link>http://blog.flexmonster.com/open.aspx/PIVOT/Talk/welcome-to-flexmonster</link>
      <comments>http://blog.flexmonster.com/open.aspx/PIVOT/Talk/welcome-to-flexmonster</comments>
      <description>Andrew Uminski renamed:&lt;br&gt;Welcome to Flexmonster blog regarding development of Action Script Pivot Table for OLAP data rich visualization. We will post news and ideas about our current achievements. You are welcome to participate! Thanks :)</description>
      <author>Andrew Uminski</author>
      <pubDate>2007-12-14 01:57:22Z</pubDate>
    </item>
    <item>
      <title>PIVOT/BLOG: ira y9dec13 174943 -&gt; flash-pivot-table-styles  [Andrew Uminski renamed] </title>
      <link>http://blog.flexmonster.com/open.aspx/PIVOT/Talk/flash-pivot-table-styles</link>
      <comments>http://blog.flexmonster.com/open.aspx/PIVOT/Talk/flash-pivot-table-styles</comments>
      <description>Andrew Uminski renamed:&lt;br&gt;&lt;b&gt;Styles for Pivot Table&lt;/b&gt;&lt;br&gt;Currently we are working on styles for the Pivot Table component. The most convenient way of defining styles from our point of view is to use CSS for this purpose. This comes of our Flex experience, being a classic decision for Flex components. External css file with set of styles will give the ability to customize the following properties of the Pivot Table:&lt;br&gt;&lt;div style="background:#F7F7D2;border:1px solid #cccccc;padding-left:10px;"&gt;Table {&lt;br&gt;    backgroundColor: #FCFCEE;&lt;br&gt;    backgroundGradientColors: #8CFCEE, #F7F7D2;&lt;br&gt;    borderColor: #B4BD3C;&lt;br&gt;    cornerRadius: 10;&lt;br&gt;    marginLeft: 10;&lt;br&gt;    marginTop: 10;&lt;br&gt;    marginRight: 10;&lt;br&gt;    marginBottom: 10;&lt;br&gt;   &lt;br&gt;    cellHeight: 24;&lt;br&gt;    cellWidth: 100;&lt;br&gt;    levelOffset: 40;&lt;br&gt;    headerTextFormat: "headerTextFormat";&lt;br&gt;    cellTextFormat: "cellTextFormat";&lt;br&gt;}&lt;br&gt;.headerTextFormat {&lt;br&gt;    fontFamily: "Tahoma";&lt;br&gt;    fontSize: 12;&lt;br&gt;    fontWeight: bold;&lt;br&gt;    color: #FFFFFF;&lt;br&gt;    textIndent: 20;&lt;br&gt;    backgroundColor: #B4BD3C;&lt;br&gt;}&lt;br&gt;.cellTextFormat {&lt;br&gt;    fontFamily: "Arial";&lt;br&gt;    fontSize: 12;&lt;br&gt;    fontStyle: italic;&lt;br&gt;    color: #000000;&lt;br&gt;    backgroundColor: #F7F7D2;&lt;br&gt;    overColor: #B4BD3C;&lt;br&gt;}&lt;/div&gt;&lt;br&gt;In the nearest future we are going to make a live demo of the new Pivot Table version.&lt;br&gt;We would really like to know your opinions on which Pivot Table properties it might be useful to define as styles and customize externally. Every feedback is greatly appreciated!&lt;br&gt;</description>
      <author>Andrew Uminski</author>
      <pubDate>2007-12-14 01:54:03Z</pubDate>
    </item>
    <item>
      <title>PIVOT/WIKI: Welcome to Pivot  [Admin Adminovich edited] </title>
      <link>http://blog.flexmonster.com/open.aspx/PIVOT/Welcome_to_Pivot</link>
      <comments>http://blog.flexmonster.com/open.aspx/PIVOT/Welcome_to_Pivot</comments>
      <description>Admin Adminovich edited:&lt;br&gt;&lt;a href="http://www.flexmonster.com/pivot-table-flex-component" target="_blank"&gt;&lt;img border="0" src="http://www.flexmonster.com/images/pivot-table-demo.gif" style="padding-right:30px;"&gt;&lt;/a&gt;&lt;br&gt; &lt;br&gt;High-performance and lightweight component specially designed for quick integration into different online systems.&lt;ul&gt;&lt;li&gt; Different data sources: OLAP, XML, ...&lt;/li&gt;&lt;li&gt; Different types of visualisations: table views, charts, graphics&lt;/li&gt;&lt;li&gt; Data grouping, filtering, drilling down, rolling up, dimensional pivoting&lt;/li&gt;&lt;li&gt; 100% Action Script 3.0 written&lt;/li&gt;&lt;li&gt; See more at &lt;a href='http://www.flexmonster.com/pivot-table-flex-component' target='_parent' class='external_url'&gt;http://www.flexmonster.com/pivot-table-flex-component&lt;/a&gt;&lt;/li&gt;&lt;li&gt; &lt;b&gt;Live demo&lt;/b&gt; is available at &lt;a href='http://www.flexmonster.com/flex-pivot-table-demo' target='_parent' class='external_url'&gt;http://www.flexmonster.com/flex-pivot-table-demo&lt;/a&gt;&lt;/li&gt;&lt;/ul&gt;                            </description>
      <author>Admin Adminovich</author>
      <pubDate>2007-12-01 03:38:42Z</pubDate>
    </item>
    <item>
      <title>PIVOT/WIKI: Welcome to Pivot  [Admin Adminovich edited] </title>
      <link>http://blog.flexmonster.com/open.aspx/PIVOT/Welcome_to_Pivot</link>
      <comments>http://blog.flexmonster.com/open.aspx/PIVOT/Welcome_to_Pivot</comments>
      <description>Admin Adminovich edited:&lt;br&gt;&lt;a href="http://www.flexmonster.com/pivot-table-flex-component" target="_blank"&gt;&lt;img border="0" src="http://www.flexmonster.com/images/pivot-table-demo.gif" style="padding-right:30px;"&gt;&lt;/a&gt;&lt;br&gt; &lt;br&gt;High-performance and lightweight component specially designed for quick integration into different online systems.&lt;ul&gt;&lt;li&gt; Different data sources: OLAP, XML, ...&lt;/li&gt;&lt;li&gt; Different types of visualisations: table views, charts, graphics&lt;/li&gt;&lt;li&gt; Data grouping, filtering, drilling down, rolling up, dimensional pivoting&lt;/li&gt;&lt;li&gt; 100% Action Script 3.0 written&lt;/li&gt;&lt;li&gt; See more at &lt;a href='http://www.flexmonster.com/pivot-table-flex-component' target='_parent' class='external_url'&gt;http://www.flexmonster.com/pivot-table-flex-component&lt;/a&gt;&lt;/li&gt;&lt;li&gt; &lt;b&gt;Live demo&lt;/b&gt; is available at &lt;a href='http://www.flexmonster.com/flex-pivot-table-demo' target='_parent' class='external_url'&gt;http://www.flexmonster.com/flex-pivot-table-demo&lt;/a&gt;&lt;/li&gt;&lt;/ul&gt;</description>
      <author>Admin Adminovich</author>
      <pubDate>2007-12-01 03:05:39Z</pubDate>
    </item>
    <item>
      <title>PIVOT/WIKI: Welcome to Pivot  [Admin Adminovich edited] </title>
      <link>http://blog.flexmonster.com/open.aspx/PIVOT/Welcome_to_Pivot</link>
      <comments>http://blog.flexmonster.com/open.aspx/PIVOT/Welcome_to_Pivot</comments>
      <description>Admin Adminovich edited:&lt;br&gt;&lt;a href="http://www.flexmonster.com/pivot-table-flex-component" target="_blank"&gt;&lt;img border="0" src="http://www.flexmonster.com/images/pivot-table-demo.gif" style="padding-right:30px;"&gt;&lt;/a&gt;&lt;br&gt; &lt;br&gt;High-performance and lightweight component specially designed for quick integration into different online systems.&lt;ul&gt;&lt;li&gt; Different data sources: OLAP, XML, ...&lt;/li&gt;&lt;li&gt; Different types of visualisations: table views, charts, graphics&lt;/li&gt;&lt;li&gt; Data grouping, filtering, drilling down, rolling up, dimensional pivoting&lt;/li&gt;&lt;li&gt; 100% Action Script 3.0 written&lt;/li&gt;&lt;li&gt; See more at &lt;a href='http://www.flexmonster.com/pivot-table-flex-component' target='_parent' class='external_url'&gt;http://www.flexmonster.com/pivot-table-flex-component&lt;/a&gt;&lt;/li&gt;&lt;li&gt; &lt;b&gt;Live demo&lt;/b&gt; is available at &lt;a href='http://www.flexmonster.com/flex-pivot-table-demo' target='_parent' class='external_url'&gt;http://www.flexmonster.com/flex-pivot-table-demo&lt;/a&gt;&lt;/li&gt;&lt;/ul&gt;                            </description>
      <author>Admin Adminovich</author>
      <pubDate>2007-12-01 03:03:21Z</pubDate>
    </item>
    <item>
      <title>PIVOT/WIKI: Welcome to Pivot  [Andrew Uminski edited] </title>
      <link>http://blog.flexmonster.com/open.aspx/PIVOT/Welcome_to_Pivot</link>
      <comments>http://blog.flexmonster.com/open.aspx/PIVOT/Welcome_to_Pivot</comments>
      <description>Andrew Uminski edited:&lt;br&gt;&lt;a href="http://www.flexmonster.com/pivot-table-flex-component" target="_blank"&gt;&lt;img border="0" src="http://www.flexmonster.com/images/pivot-table-demo.gif" style="padding-right:30px;"&gt;&lt;/a&gt;&lt;br&gt; &lt;br&gt;High-performance and lightweight component specially designed for quick integration into different online systems.&lt;ul&gt;&lt;li&gt; Different data sources: OLAP, XML, ...&lt;/li&gt;&lt;li&gt; Different types of visualisations: table views, charts, graphics&lt;/li&gt;&lt;li&gt; Data grouping, filtering, drilling down, rolling up, dimensional pivoting&lt;/li&gt;&lt;li&gt; 100% Action Script 3.0 written&lt;/li&gt;&lt;li&gt; See more at &lt;a href='http://www.flexmonster.com/pivot-table-flex-component' target='_parent' class='external_url'&gt;http://www.flexmonster.com/pivot-table-flex-component&lt;/a&gt;&lt;/li&gt;&lt;li&gt; &lt;b&gt;Live demo&lt;/b&gt; is available at &lt;a href='http://www.flexmonster.com/flex-pivot-table-demo' target='_parent' class='external_url'&gt;http://www.flexmonster.com/flex-pivot-table-demo&lt;/a&gt;&lt;/li&gt;&lt;/ul&gt;</description>
      <author>Andrew Uminski</author>
      <pubDate>2007-11-29 18:56:47Z</pubDate>
    </item>
    <item>
      <title>PIVOT/WIKI: Welcome to Pivot  [Andrew Uminski edited] </title>
      <link>http://blog.flexmonster.com/open.aspx/PIVOT/Welcome_to_Pivot</link>
      <comments>http://blog.flexmonster.com/open.aspx/PIVOT/Welcome_to_Pivot</comments>
      <description>Andrew Uminski edited:&lt;br&gt;&lt;img src="http://www.flexmonster.com/images/pivot-table-demo.gif" style="padding-right:30px;"&gt; &lt;br&gt; &lt;br&gt;High-performance and lightweight component specially designed for quick integration into different online systems.&lt;ul&gt;&lt;li&gt; Different data sources: OLAP, XML, ...&lt;/li&gt;&lt;li&gt; Different types of visualisations: table views, charts, graphics&lt;/li&gt;&lt;li&gt; Data grouping, filtering, drilling down, rolling up, dimensional pivoting&lt;/li&gt;&lt;li&gt; 100% Action Script 3.0 written&lt;/li&gt;&lt;li&gt; See more at &lt;a href='http://www.flexmonster.com/pivot-table-flex-component' target='_parent' class='external_url'&gt;http://www.flexmonster.com/pivot-table-flex-component&lt;/a&gt;&lt;/li&gt;&lt;li&gt; &lt;b&gt;Live demo&lt;/b&gt; is available at &lt;a href='http://www.flexmonster.com/flex-pivot-table-demo' target='_parent' class='external_url'&gt;http://www.flexmonster.com/flex-pivot-table-demo&lt;/a&gt;&lt;/li&gt;&lt;/ul&gt;</description>
      <author>Andrew Uminski</author>
      <pubDate>2007-11-29 18:55:26Z</pubDate>
    </item>
    <item>
      <title>PIVOT/WIKI: Welcome to Pivot  [Andrew Uminski edited] </title>
      <link>http://blog.flexmonster.com/open.aspx/PIVOT/Welcome_to_Pivot</link>
      <comments>http://blog.flexmonster.com/open.aspx/PIVOT/Welcome_to_Pivot</comments>
      <description>Andrew Uminski edited:&lt;br&gt;&lt;img src="http://www.flexmonster.com/images/pivot-table-demo.gif" style="padding-right:30px;"&gt; &lt;br&gt; &lt;br&gt;High-performance and lightweight component specially designed for quick integration into different online systems.&lt;ul&gt;&lt;li&gt; Different data sources: OLAP, XML, ...&lt;/li&gt;&lt;li&gt; Different types of visualisations: table views, charts, graphics&lt;/li&gt;&lt;li&gt; Data grouping, filtering, drilling down, rolling up, dimensional pivoting&lt;/li&gt;&lt;li&gt; 100% Action Script 3.0 written&lt;/li&gt;&lt;/ul&gt;</description>
      <author>Andrew Uminski</author>
      <pubDate>2007-11-29 18:45:03Z</pubDate>
    </item>
    <item>
      <title>PIVOT/WIKI: Welcome to Pivot  [Andrew Uminski edited] </title>
      <link>http://blog.flexmonster.com/open.aspx/PIVOT/Welcome_to_Pivot</link>
      <comments>http://blog.flexmonster.com/open.aspx/PIVOT/Welcome_to_Pivot</comments>
      <description>Andrew Uminski edited:&lt;br&gt;&lt;img src="http://www.flexmonster.com/images/pivot-table-demo.gif" style="padding:10px;"&gt; &lt;br&gt; &lt;br&gt;High-performance and lightweight component specially designed for quick integration into different online systems.&lt;ul&gt;&lt;li&gt; Different data sources: OLAP, XML, ...&lt;/li&gt;&lt;li&gt; Different types of visualisations: table views, charts, graphics&lt;/li&gt;&lt;li&gt; Data grouping, filtering, drilling down, rolling up, dimensional pivoting&lt;/li&gt;&lt;li&gt; 100% Action Script 3.0 written&lt;/li&gt;&lt;/ul&gt;</description>
      <author>Andrew Uminski</author>
      <pubDate>2007-11-29 18:44:28Z</pubDate>
    </item>
    <item>
      <title>PIVOT/BLOG: flexmonsterandrew y9nov29 103630  [Andrew Uminski edited] </title>
      <link>http://blog.flexmonster.com/open.aspx/PIVOT/Talk/flexmonsterandrew_y9nov29_103630</link>
      <comments>http://blog.flexmonster.com/open.aspx/PIVOT/Talk/flexmonsterandrew_y9nov29_103630</comments>
      <description>Andrew Uminski edited:&lt;br&gt;Welcome to Flexmonster blog regarding development of Action Script Pivot Table for OLAP data rich visualization. We will post news and ideas about our current achievements. You are welcome to participate! Thanks :)</description>
      <author>Andrew Uminski</author>
      <pubDate>2007-11-29 18:37:13Z</pubDate>
    </item>
    <item>
      <title>PIVOT/WIKI: Welcome to Pivot *new  [Andrew Uminski created] </title>
      <link>http://blog.flexmonster.com/open.aspx/PIVOT/Welcome_to_Pivot</link>
      <comments>http://blog.flexmonster.com/open.aspx/PIVOT/Welcome_to_Pivot</comments>
      <description>Andrew Uminski created:&lt;br&gt;&lt;img src="http://www.flexmonster.com/images/pivot-table-demo.gif"&gt; &lt;br&gt; &lt;br&gt;High-performance and lightweight component specially designed for quick integration into different online systems.&lt;ul&gt;&lt;li&gt; Different data sources: OLAP, XML, ...&lt;/li&gt;&lt;li&gt; Different types of visualisations: table views, charts, graphics&lt;/li&gt;&lt;li&gt; Data grouping, filtering, drilling down, rolling up, dimensional pivoting&lt;/li&gt;&lt;li&gt; 100% Action Script 3.0 written&lt;/li&gt;&lt;/ul&gt;</description>
      <author>Andrew Uminski</author>
      <pubDate>2007-11-29 18:07:49Z</pubDate>
    </item>
  </channel>
</rss>