<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" media="screen" href="/~d/styles/rss2full.xsl"?><?xml-stylesheet type="text/css" media="screen" href="http://feeds.feedburner.com/~d/styles/itemcontent.css"?><rss 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/" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:sy="http://purl.org/rss/1.0/modules/syndication/" xmlns:slash="http://purl.org/rss/1.0/modules/slash/" xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0" version="2.0">

<channel>
	<title>Dashboards Examples, Business Intelligence Dashboards, Free KPI Dashboard, Dashboard Samples</title>
	
	<link>http://www.infocaptor.com/dashboard</link>
	<description>Free Dashboards online</description>
	<lastBuildDate>Wed, 29 May 2013 17:45:59 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3</generator>
		<atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" type="application/rss+xml" href="http://feeds.feedburner.com/infocaptor_dashboard" /><feedburner:info uri="infocaptor_dashboard" /><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="hub" href="http://pubsubhubbub.appspot.com/" /><feedburner:emailServiceId>infocaptor_dashboard</feedburner:emailServiceId><feedburner:feedburnerHostname>http://feedburner.google.com</feedburner:feedburnerHostname><item>
		<title>Add subtract data from two different database sources : Howto</title>
		<link>http://feedproxy.google.com/~r/infocaptor_dashboard/~3/Ytx5_4V4Mig/add-subtract-data-from-two-different-database-sources-howto</link>
		<comments>http://www.infocaptor.com/dashboard/add-subtract-data-from-two-different-database-sources-howto#comments</comments>
		<pubDate>Wed, 29 May 2013 17:45:57 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Charts]]></category>
		<category><![CDATA[dashboards]]></category>
		<category><![CDATA[DB2]]></category>
		<category><![CDATA[Excel]]></category>
		<category><![CDATA[How-to]]></category>
		<category><![CDATA[MS Access]]></category>
		<category><![CDATA[MySQL]]></category>
		<category><![CDATA[webdashboard-help]]></category>
		<category><![CDATA[calc]]></category>
		<category><![CDATA[calculation]]></category>
		<category><![CDATA[data federation]]></category>
		<category><![CDATA[data warehouse]]></category>
		<category><![CDATA[database]]></category>
		<category><![CDATA[datawarehouse]]></category>
		<category><![CDATA[Excel Dashboard]]></category>
		<category><![CDATA[excel files]]></category>
		<category><![CDATA[HR Dashboard]]></category>

		<guid isPermaLink="false">http://www.infocaptor.com/dashboard/?p=1192</guid>
		<description><![CDATA[How to perform calculations across different data sources/databases Imagine, you have a CRM database that contains all your customer and sales information and you have a different database that stores your GL and ERP data. Now add some complexity to &#8230; <p><a class="btn small" href="http://www.infocaptor.com/dashboard/add-subtract-data-from-two-different-database-sources-howto">Continue reading <span class="meta-nav">&#8594;</span></a></p>]]></description>
			<content:encoded><![CDATA[<p><strong>How to perform calculations across different data sources/databases</strong></p>
<p>Imagine, you have a CRM database that contains all your customer and sales information and you have a different database that stores your GL and ERP data.</p>
<p>Now add some complexity to it, your CRM database is say SQL Server or Microsoft Access or just Plain old Excel file. And your ERP is housed on an Oracle database.</p>
<p>Say you needed to show total leads from CRM, show total cost from GL journals and derive a third metric say "Cost per leads" (fictitious metric).</p>
<p>Typically, the best practice is to bring the information together in some kind of datawarehouse and then since the information now resides in one database we can do any kind of calculation on it.</p>
<p>But for a small business, datawarehouse is a "nice to have" thing and may not be feasible or practical for one-off requirement. So the following steps will illustrate how you can acheive and calculate this metric within the dashboard itself.</p>
<p>In the below example we will take counts from two different tables that are in separate databases and then create a third widget that does the sum of both numbers. This should be sufficient to illustrate the basic mechanism.</p>
<p><strong>1. Create a count from database 1</strong></p>
<p><img alt="Image" src="http://www.infocaptor.com/dashboard/wp-content/uploads/2013/05/image-257.jpg" width="443" height="250" /></p>
<p>get count of customer records from the Microsoft access northwind database</p>
<p><img alt="Image" src="http://www.infocaptor.com/dashboard/wp-content/uploads/2013/05/image-258.jpg" width="155" height="117" /></p>
<p>Now Edit the Javascript tab and insert the following code.</p>
<p><strong>global_widget1_value=glb["_new"];</strong></p>
<p><img alt="Image" src="http://www.infocaptor.com/dashboard/wp-content/uploads/2013/05/image-260.jpg" width="559" height="178" /></p>
<p>The above javascript code is simply assigning the count from the database to a javascript variable. <strong><em>global_widget1_value</em></strong> is just a variable name that we can refer globally and to it we assign the value from the database. All database values arrive in an array and <a href="http://www.infocaptor.com/help/bells_and_whistles.htm?mw=MzAw&amp;st=MQ==&amp;sct=MA==&amp;ms=AAAA">glb["_new"] contains only the first element of that array</a>. glb["_new"] is same as glb["_odata"][0][0] and since we are concerned with only a single cell value we can use it here.</p>
<p>&nbsp;</p>
<p><strong>2. Create a count from database 2</strong></p>
<p><img alt="Image" src="http://www.infocaptor.com/dashboard/wp-content/uploads/2013/05/image-261.jpg" width="406" height="214" /></p>
<p>&nbsp;</p>
<p><img alt="Image" src="http://www.infocaptor.com/dashboard/wp-content/uploads/2013/05/image-262.jpg" width="153" height="114" /></p>
<p>&nbsp;</p>
<p>To this widget we add the following javascript</p>
<p><strong>global_widget2_value=glb["_new"];</strong></p>
<p><img alt="Image" src="http://www.infocaptor.com/dashboard/wp-content/uploads/2013/05/image-263.jpg" width="598" height="174" /></p>
<p>&nbsp;</p>
<p>3. Create a third widget or duplicate any of the above widget.</p>
<p>The database for the third widget is not important. It can be either database 1 or database 2 as we are going to overwrite the value with a custom calculation.</p>
<p>&nbsp;</p>
<p><img alt="Image" src="http://www.infocaptor.com/dashboard/wp-content/uploads/2013/05/image-265.jpg" width="439" height="202" /></p>
<p>Here is the javascript for the third widget.</p>
<p><img alt="Image" src="http://www.infocaptor.com/dashboard/wp-content/uploads/2013/05/image-264.jpg" width="716" height="206" /></p>
<p><strong><em>glb["_odata"][0][0]=parseFloat(global_widget1_value)+parseFloat(global_widget2_value);</em></strong></p>
<p>In this code, we take the global_widget1_value and global_widget2_value and add them. We assign the new value to the first element of the data array.</p>
<p>This gives us the new derived value.</p>
<p><img alt="Image" src="http://www.infocaptor.com/dashboard/wp-content/uploads/2013/05/image-266.jpg" width="461" height="369" /></p>
<p>&nbsp;</p>
<p><strong>CATCH:</strong> Widgets are refreshed in the order which they are created in the dashboard. So when the dashboard is launched, widget 1 will refresh first and show a value of 34, next, widget 2 will refresh and show value of 404 and since widget 3 was created last, it will have latest information from widget 1 and widget 2</p>
<img src="http://feeds.feedburner.com/~r/infocaptor_dashboard/~4/Ytx5_4V4Mig" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.infocaptor.com/dashboard/add-subtract-data-from-two-different-database-sources-howto/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.infocaptor.com/dashboard/add-subtract-data-from-two-different-database-sources-howto</feedburner:origLink></item>
		<item>
		<title>Dashboard connection to Postgres SQL, Pervasive, DB2 and more</title>
		<link>http://feedproxy.google.com/~r/infocaptor_dashboard/~3/ILE9-ZAejgs/dashboard-connection-to-postgres-sql-pervasive-db2-and-more</link>
		<comments>http://www.infocaptor.com/dashboard/dashboard-connection-to-postgres-sql-pervasive-db2-and-more#comments</comments>
		<pubDate>Wed, 22 May 2013 22:16:56 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[How-to]]></category>
		<category><![CDATA[accdb]]></category>
		<category><![CDATA[db2]]></category>
		<category><![CDATA[firebird]]></category>
		<category><![CDATA[Hypersonic]]></category>
		<category><![CDATA[IBM DB2]]></category>
		<category><![CDATA[Informix]]></category>
		<category><![CDATA[InstantDB]]></category>
		<category><![CDATA[Interbase]]></category>
		<category><![CDATA[JDBC-ODBC]]></category>
		<category><![CDATA[mdb]]></category>
		<category><![CDATA[Microsoft Access]]></category>
		<category><![CDATA[Microsoft Excel]]></category>
		<category><![CDATA[mysql]]></category>
		<category><![CDATA[oracle]]></category>
		<category><![CDATA[PointBase]]></category>
		<category><![CDATA[Progress]]></category>
		<category><![CDATA[SAP BW]]></category>
		<category><![CDATA[SAP HANA]]></category>
		<category><![CDATA[slq]]></category>
		<category><![CDATA[sql]]></category>
		<category><![CDATA[sql server]]></category>
		<category><![CDATA[sqlite]]></category>
		<category><![CDATA[sybase]]></category>
		<category><![CDATA[teradata]]></category>

		<guid isPermaLink="false">http://www.infocaptor.com/dashboard/?p=1177</guid>
		<description><![CDATA[In the new release of InfoCaptor Enterprise, we added some very useful features. 1. Ability to connect to Postgres SQL 2. Ability to connect to Pervasive database 3. Test Database connections before adding them to the system. Infocaptor works will &#8230; <p><a class="btn small" href="http://www.infocaptor.com/dashboard/dashboard-connection-to-postgres-sql-pervasive-db2-and-more">Continue reading <span class="meta-nav">&#8594;</span></a></p>]]></description>
			<content:encoded><![CDATA[<p>In the new release of InfoCaptor Enterprise, we added some very useful features.</p>
<p>1. Ability to connect to Postgres SQL</p>
<p>2. Ability to connect to Pervasive database</p>
<p>3. Test Database connections before adding them to the system.</p>
<p>Infocaptor works will all types of JDBC and ODBC connections. So if you need to connect to DB2 or say Firebird database, then download the jdbc drivers from the vendors website and place them in the tomcat/lib directory and then use the "Other JDBC"  (in figure below)</p>
<p><img alt="Image" src="http://www.infocaptor.com/dashboard/wp-content/uploads/2013/05/image-250.jpg" width="178" height="348" /></p>
<p>&nbsp;</p>
<p>The only difference between the predefined JDBC connections such as Oracle, SQL Server, MySQL, Postgres and Pervasive is that the jdbc drivers are packaged and the jdbc URL is provided for your convenience. Eventually we will add more database in the jdbc support directly without you having to download the jdbc drivers.</p>
<p>As usual, if you need help with jdbc settings email us (<a href="mailto:contact@infocaptor.com">contact@infocaptor.com</a>) anytime.</p>
<p><strong>Test Database connections</strong></p>
<p>This is another important addition on the connections page.</p>
<p>Earlier you had to add the connection and test it on the dashboard to see if the connection really worked. Now you can add the credentials and verify if infocaptor is able to talk to your database.</p>
<p><strong>1. How to Test and connect to Microsoft Access Database</strong></p>
<p><a href="http://www.infocaptor.com/dashboard/wp-content/uploads/2013/05/image-251.jpg"><img alt="Image" src="http://www.infocaptor.com/dashboard/wp-content/uploads/2013/05/image-251-small.jpg" width="450" height="533" /></a></p>
<p>You can use either .mdb or .accdb files for your dashboard. Just provide your access file path, choose appropriate access version and click "Test Connection". Once successfully connected, it will list the table names that are available. Now you can go ahead and click on "Add new Connection Entry".</p>
<p><strong>2. How to connect and use Excel file for Dashboards</strong></p>
<p><a href="http://www.infocaptor.com/dashboard/wp-content/uploads/2013/05/image-252.jpg"><img alt="Image" src="http://www.infocaptor.com/dashboard/wp-content/uploads/2013/05/image-252-small.jpg" width="450" height="428" /></a></p>
<p>In the above figure, you can see it is very similar to access database. Just provide correct path to the Excel file and hit "Test Connection". It will list the valid worksheets that you can use within dashboard.</p>
<p>Note: There is also a <a href="http://www.infocaptor.com/dashboard/how-to-upload-flat-files-like-csv-and-excel-data-into-sql-tables">better way alternative to use excel or flat files within dashboard</a>.</p>
<p><strong>3. MySQL connection for dashboard</strong></p>
<p>For MySQL, it is best to use the native PHP connection method as it does not rely on Tomcat. So if you are going to build dashboard against just MySQL then no need to setup Tomcat.</p>
<p><a href="http://www.infocaptor.com/dashboard/wp-content/uploads/2013/05/image-253.jpg"><img alt="Image" src="http://www.infocaptor.com/dashboard/wp-content/uploads/2013/05/image-253-small.jpg" width="450" height="557" /></a></p>
<p>As you see in the screenshot, enter the host, port, database name, user and password information. Click on test and you will see all the tables you can use within dashboard.</p>
<p><strong>4. MySQL with JDBC</strong></p>
<p>Here is an alternate method to connect to MySQL with jdbc</p>
<p>As seen below, it is very similar to native php connection. In this case, you provide a proper JDBC URL.</p>
<p><a href="http://www.infocaptor.com/dashboard/wp-content/uploads/2013/05/image-254.jpg"><img alt="Image" src="http://www.infocaptor.com/dashboard/wp-content/uploads/2013/05/image-254-small.jpg" width="450" height="290" /></a></p>
<p>The jdbc URL format for MySQL is <strong>jdbc:mysql://&lt;HOST&gt;:&lt;PORT&gt;/&lt;DB&gt;</strong></p>
<p>So we simply replace &lt;HOST&gt; with localhost, &lt;PORT&gt; with 3306 and &lt;DB&gt; with the database name i.e infocaptor_dev</p>
<p>The method to connect for SQL server 2005, SQL Server 2008 and 2012 , Oracle, Postgres SQL, Pervasive is also very similar. Just their respective jdbc URL format is different. As a rule for any jdbc URL, replace the host, port and db variables with appropriate values and you should be able to connect.</p>
<p>And similarly, if you use "Other JDBC", you can refer this article for all <a href="http://www.infocaptor.com/dashboard/jdbc-odbc-drivers-connections-and-strings-url">other JDBC URL format </a> for various other databases.</p>
<p><strong>5. ODBC Connections</strong></p>
<p>Lastly if you define a DSN entry in the Windows ODBC administrator, you can use that DSN name to connect directly</p>
<p>Here is a screenshot showing how an ODBC DSN entry is created on a windows 64bit machine.</p>
<p><strong><em>NOTE: There are two different ODBC setups for 64bit machines. Use the one in the SysWOW64</em></strong><strong><em>\odbcad32.exe</em></strong></p>
<p><a href="http://www.infocaptor.com/dashboard/wp-content/uploads/2013/05/image-255.jpg"><img alt="Image" src="http://www.infocaptor.com/dashboard/wp-content/uploads/2013/05/image-255-small.jpg" width="450" height="213" /></a></p>
<p>In the above screen, we defined the DSN=northwind_system.</p>
<p>In our infocaptor ODBC connect screen we use the exact same DSN name</p>
<p><a href="http://www.infocaptor.com/dashboard/wp-content/uploads/2013/05/image-256.jpg"><img alt="Image" src="http://www.infocaptor.com/dashboard/wp-content/uploads/2013/05/image-256-small.jpg" width="450" height="287" /></a></p>
<p>We will be adding more convenience links to other databases as we move forward to provide the best "Getting Started" experience.</p>
<p>But if you hit across any legacy database system and wondering if you can make infocaptor talk to it, then please do not hesitate and email us (<a href="mailto:contact@infocaptor.com">contact@infocaptor.com</a>). We should be able to help you out in most cases.</p>
<img src="http://feeds.feedburner.com/~r/infocaptor_dashboard/~4/ILE9-ZAejgs" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.infocaptor.com/dashboard/dashboard-connection-to-postgres-sql-pervasive-db2-and-more/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.infocaptor.com/dashboard/dashboard-connection-to-postgres-sql-pervasive-db2-and-more</feedburner:origLink></item>
		<item>
		<title>SQL Server : Windows authentication with Tomcat</title>
		<link>http://feedproxy.google.com/~r/infocaptor_dashboard/~3/trM1NWXsZ5M/sql-server-windows-authentication-with-tomcat</link>
		<comments>http://www.infocaptor.com/dashboard/sql-server-windows-authentication-with-tomcat#comments</comments>
		<pubDate>Tue, 30 Apr 2013 20:28:41 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[How-to]]></category>
		<category><![CDATA[dashboards]]></category>
		<category><![CDATA[jdbc]]></category>
		<category><![CDATA[service]]></category>
		<category><![CDATA[single signon]]></category>
		<category><![CDATA[sqlserver]]></category>
		<category><![CDATA[sqlserver 2005]]></category>
		<category><![CDATA[sqlserver 2008]]></category>
		<category><![CDATA[sqlserver express]]></category>
		<category><![CDATA[SSO]]></category>
		<category><![CDATA[tomcat]]></category>
		<category><![CDATA[windows authentication]]></category>

		<guid isPermaLink="false">http://www.infocaptor.com/dashboard/?p=1162</guid>
		<description><![CDATA[By default SQL server 2008 is not enabled for remote connection First you need to enable SQL server for remote connection to avoid the "SQL server connection refused: connect" error. Assuming your SQLserver is enabled for windows authentication and remote &#8230; <p><a class="btn small" href="http://www.infocaptor.com/dashboard/sql-server-windows-authentication-with-tomcat">Continue reading <span class="meta-nav">&#8594;</span></a></p>]]></description>
			<content:encoded><![CDATA[<p>By default SQL server 2008 is not enabled for remote connection</p>
<p>First you need to <a href="http://www.infocaptor.com/dashboard/jdbc-with-sqlserver-connection-refused-connect">enable SQL server for remote connection</a> to avoid the "SQL server connection refused: connect" error.</p>
<p>Assuming your SQLserver is enabled for windows authentication and remote connection we can proceed as below.</p>
<p>1. Install Tomcat as service under the desired login account.</p>
<p>Run the service.bat file as below</p>
<p><img alt="Image" src="http://www.infocaptor.com/dashboard/wp-content/uploads/2013/04/image-244.jpg" width="520" height="289" /></p>
<p><a href="http://www.infocaptor.com/dashboard/wp-content/uploads/2013/04/image-245.jpg"><img alt="Image" src="http://www.infocaptor.com/dashboard/wp-content/uploads/2013/04/image-245-small.jpg" width="450" height="227" /></a></p>
<p>&nbsp;</p>
<p>2. Once installed, go to services and add the login account</p>
<p><img alt="Image" src="http://www.infocaptor.com/dashboard/wp-content/uploads/2013/04/image-246.jpg" width="406" height="458" /></p>
<p>&nbsp;</p>
<p>3. Copy the ntlmauth.dll file to any directory that is in the system path. We can put it in the windows/system32 directory</p>
<p>This is needed for windows SSO authentication.</p>
<p>You can go to the infocaptor/dash/system/jtds../x64/sso directory. Choose the appropriate file based on your operating system. (e.g x86 for 32 bit and x64 for 64bit)</p>
<p><a href="http://www.infocaptor.com/dashboard/wp-content/uploads/2013/04/image-247.jpg"><img alt="Image" src="http://www.infocaptor.com/dashboard/wp-content/uploads/2013/04/image-247-small.jpg" width="413" height="463" /></a></p>
<p>&nbsp;</p>
<p>4. Create connection within infocaptor</p>
<p>When you define a new connection to use as single signon windows authentication, leave the database user and password blank (empty)</p>
<p><img alt="Image" src="http://www.infocaptor.com/dashboard/wp-content/uploads/2013/04/image-248.jpg" width="473" height="388" /></p>
<p>&nbsp;</p>
<p>5. Test the connection</p>
<p>Now, go to infocaptor, drag a grid , right click and select data source.</p>
<p>Next, pick the sql_2008_sso connection and click "show tables" in the SQL tab</p>
<p><a href="http://www.infocaptor.com/dashboard/wp-content/uploads/2013/04/image-249.jpg"><img alt="Image" src="http://www.infocaptor.com/dashboard/wp-content/uploads/2013/04/image-249-small.jpg" width="450" height="411" /></a></p>
<p>&nbsp;</p>
<p>Success!. The list of tables indicate that infocaptor connected to SQLserver using windows authentication.</p>
<p>Background: InfoCaptor connects to sqlserver via tomcat and tomcat passes the windows credentials to sql server. Make sure you create a windows service account if you decide to use this in any production environment.</p>
<img src="http://feeds.feedburner.com/~r/infocaptor_dashboard/~4/trM1NWXsZ5M" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.infocaptor.com/dashboard/sql-server-windows-authentication-with-tomcat/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.infocaptor.com/dashboard/sql-server-windows-authentication-with-tomcat</feedburner:origLink></item>
		<item>
		<title>CEO Dashboard by compensation/pay, shares, efficiency, rank and age</title>
		<link>http://feedproxy.google.com/~r/infocaptor_dashboard/~3/GrfTmm3JKtc/ceo-dashboard-by-compensationpay-shares-efficiency-rank-and-age</link>
		<comments>http://www.infocaptor.com/dashboard/ceo-dashboard-by-compensationpay-shares-efficiency-rank-and-age#comments</comments>
		<pubDate>Thu, 18 Apr 2013 01:09:27 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[dashboards]]></category>
		<category><![CDATA[How-to]]></category>
		<category><![CDATA[business dashboards]]></category>
		<category><![CDATA[CEO dashboards]]></category>
		<category><![CDATA[CFO dashboards]]></category>
		<category><![CDATA[CIO dashboards]]></category>
		<category><![CDATA[d3js]]></category>
		<category><![CDATA[d3js pack layout]]></category>
		<category><![CDATA[data visualizations]]></category>
		<category><![CDATA[data warehouse]]></category>
		<category><![CDATA[datawarehouse]]></category>
		<category><![CDATA[drill down reports]]></category>
		<category><![CDATA[Excel Dashboard]]></category>
		<category><![CDATA[performance dashboards]]></category>

		<guid isPermaLink="false">http://www.infocaptor.com/dashboard/?p=1150</guid>
		<description><![CDATA[Before we start, jump to this Top 500 CEO Compensation Dashboard This cool visualization is built on top of a curated data of top 500 CEOs listed in order of their annual compensation, direct salary, number of shares, efficiency, rank &#8230; <p><a class="btn small" href="http://www.infocaptor.com/dashboard/ceo-dashboard-by-compensationpay-shares-efficiency-rank-and-age">Continue reading <span class="meta-nav">&#8594;</span></a></p>]]></description>
			<content:encoded><![CDATA[<p><a href="https://my.infocaptor.com/dash/mt.php?pa=ceo_compensation_2012_5159dc6ecb22b"><img alt="Image" src="http://www.infocaptor.com/dashboard/wp-content/uploads/2013/04/image-236.jpg" width="533" height="50" /></a></p>
<p>Before we start, jump to this <a href="https://my.infocaptor.com/dash/mt.php?pa=ceo_compensation_2012_5159dc6ecb22b" target="_blank">Top 500 CEO Compensation Dashboard</a></p>
<p>This cool visualization is built on top of a <a href="http://www.forbes.com/lists/2012/12/ceo-compensation-12_rank.html" target="_blank">curated data of top 500 CEOs </a> listed in order of their annual compensation, direct salary, number of shares, efficiency, rank and age. This list is generated by Forbes.com</p>
<p>This article is split in two parts, first we show what we built and then we will list the steps on how it was built.</p>
<p>When you launch the <a href="https://my.infocaptor.com/dash/mt.php?pa=ceo_compensation_2012_5159dc6ecb22b">CEO dashboard</a> you will see on the top, two sets of "Radio controls"</p>
<p>"View by" = CEO Name and CEO company</p>
<p>Next is the "Bubble Measure" = CEO Age, Rank, Efficiency, 1 yr pay, 5 yr pay and number of shares owned.</p>
<p>Here are the different visuals you get when you switch between the different dashboard filters.</p>
<p><strong>Bubble Visualization by CEO Rank (as calculated by Forbes.com)</strong></p>
<p><a href="http://www.infocaptor.com/dashboard/wp-content/uploads/2013/04/image-237.jpg"><img alt="Image" src="http://www.infocaptor.com/dashboard/wp-content/uploads/2013/04/image-237-small.jpg" width="450" height="428" /></a></p>
<p>Forbes.com has applied some algorithm to derive at the efficiency factor for each CEO. Based on this efficiency factor, they have ranked the CEOs.</p>
<p><strong>Now switch the bubble measure to 1 year pay</strong></p>
<p><a href="http://www.infocaptor.com/dashboard/wp-content/uploads/2013/04/image-238.jpg"><img alt="Image" src="http://www.infocaptor.com/dashboard/wp-content/uploads/2013/04/image-238-small.jpg" width="450" height="420" /></a></p>
<p>We can see that the top 20 CEO ordered by 1 year pay/compensation are as follows</p>
<p>1 John H Hammergren, McKesson<br />
2 Ralph Lauren, Ralph Lauren<br />
3 Michael D Fascitelli, Vornado Realty<br />
4 Richard D Kinde,r Kinder Morgan<br />
5 David M Cote, Honeywell<br />
6 George Paz, Express Scripts<br />
7 Jeffery H Boyd, Priceline.com<br />
8 Stephen J Hemsley, UnitedHealth Group<br />
9 Clarence P Cazalot Jr, Marathon Oil<br />
10 John C Martin, Gilead Sciences<br />
11 John D Wren, Omnicom Group<br />
12 James Dimon, JPMorgan Chase &amp; Co<br />
13 Leslie Moonves, CBS<br />
14 Howard D Schultz, Starbucks<br />
15 John C Plant, TRW Automotive Holdings<br />
16 David M Zaslav, Discovery Communications<br />
17 Robert A Iger, Walt Disney<br />
18 Richard C Adkerson, Freeport McMoRan Copper &amp; Gold<br />
19 Timothy M Manganello, BorgWarner<br />
20 Paul E Jacobs, Qualcomm</p>
<p><strong>Switch to 5 year pay</strong></p>
<p><a href="http://www.infocaptor.com/dashboard/wp-content/uploads/2013/04/image-239.jpg"><img alt="Image" src="http://www.infocaptor.com/dashboard/wp-content/uploads/2013/04/image-239-small.jpg" width="450" height="441" /></a></p>
<p>Look who is making the most of 5 year pay.</p>
<p>From the grid we can extract all the CEOs who make atleast 100 million in the total span of 5 years</p>
<p>106 Lawrence J Ellison, Oracle<br />
59 Aubrey K McClendon, Chesapeake Energy<br />
1 John H Hammergren, McKesson<br />
23 John B Hess, Hess<br />
29 William R Berkley, WR Berkley<br />
10 John C Martin, Gilead Sciences<br />
2 Ralph Lauren, Ralph Lauren<br />
14 Howard D Schultz, Starbucks<br />
28 David C Novak, Yum Brands<br />
66 H Lawrence Culp Jr, Danaher<br />
18 Richard C Adkerson, Freeport McMoRan Copper &amp; Gold<br />
8 Stephen J Hemsley, UnitedHealth Group<br />
49 Lloyd C Blankfein, Goldman Sachs Group<br />
17 Robert A Iger, Walt Disney<br />
13 Leslie Moonves, CBS<br />
70 Brian L Roberts, Comcast<br />
134 Hugh Grant, Monsanto<br />
83 Daniel P Amos, Aflac<br />
12 James Dimon, JPMorgan Chase &amp; Co<br />
98 Jen0Hsun Huang, Nvidia<br />
45 Laurence D Fink, BlackRock<br />
333 Mark G Papa, EOG Resources<br />
210 Richard B Handler, Jefferies Group<br />
68 Robert J Stevens, Lockheed Martin<br />
39 Frederick W Smith, FedEx<br />
22 David E I Pyott, Allergan<br />
82 Miles D White, Abbott Laboratories<br />
255 Jeffrey C Sprecher, IntercontinentalExchange<br />
26 Joseph M Tucci, EMC<br />
35 James T Hackett, Anadarko Petroleum<br />
157 Kent J Thiry, DaVita<br />
11 John D Wren, Omnicom Group<br />
79 William H Swanson, Raytheon<br />
102 J Wayne Leonard, Entergy <br />
42 K Rupert Murdoch, News Corp<br />
24 Lew Frankfort, Coach<br />
73 David J Lesar, Halliburton<br />
397 John T Chambers, Cisco Systems<br />
36 Alexander M Cutler, Eaton<br />
6 George Paz, Express Scripts</p>
<p><strong>Now let us check who owns the most shares</strong></p>
<p><a href="http://www.infocaptor.com/dashboard/wp-content/uploads/2013/04/image-240.jpg"><img alt="Image" src="http://www.infocaptor.com/dashboard/wp-content/uploads/2013/04/image-240-small.jpg" width="450" height="414" /></a></p>
<p>And here are the 20 top or so who own the most shares</p>
<p>495 Warren E Buffett, Berkshire Hathaway<br />
106 Lawrence J Ellison, Oracle<br />
178 Sheldon G Adelson, Las Vegas Sands<br />
498 Larry Page, Google<br />
470 Jeffrey P Bezos, Amazon.com<br />
479 Steven A Ballmer, Microsoft<br />
304 Harold G Hamm, Continental Resources<br />
4 Richard D Kinde,r Kinder Morgan<br />
42 K Rupert Murdoch, News Corp<br />
2 Ralph Lauren, Ralph Lauren<br />
347 Michael S Dell, Dell<br />
108 Stephen A Wynn, Wynn Resorts<br />
232 Leslie H Wexner, Limited Brands<br />
39 Frederick W Smith, FedEx<br />
465 Marc R Benioff, Salesforce.com<br />
14 Howard D Schultz, Starbucks<br />
441 Neal L Patterson, Cerner<br />
29 William R Berkley, WR Berkley<br />
496 Andrew D Mason, Groupon <br />
23 John B Hess, Hess<br />
474 Ian M Cumming, Leucadia National<br />
70 Brian L Roberts, Comcast<br />
227 Howard R Levine, Family Dollar Stores</p>
<p><strong>Now let us try to visualize in the more traditional bar charts but apparently more effective.</strong></p>
<p>Jump to this second <a href="https://my.infocaptor.com/dash/mt.php?pa=test_515ed8051abf9" target="_blank">CEO Compensation dashboard</a></p>
<p><a href="http://www.infocaptor.com/dashboard/wp-content/uploads/2013/04/image-241.jpg"><img alt="Image" src="http://www.infocaptor.com/dashboard/wp-content/uploads/2013/04/image-241-small.jpg" width="450" height="288" /></a></p>
<p><strong>Most Senior CEOs in the industry</strong></p>
<p><a href="http://www.infocaptor.com/dashboard/wp-content/uploads/2013/04/image-242.jpg"><img alt="Image" src="http://www.infocaptor.com/dashboard/wp-content/uploads/2013/04/image-242-small.jpg" width="450" height="293" /></a></p>
<p>250 Howard Solomon Forest Laboratories<br />
495 Warren E Buffett Berkshire Hathaway<br />
42 K Rupert Murdoch News Corp<br />
178 Sheldon G Adelson Las Vegas Sands<br />
324 Robert G Wilmers M&amp;T Bank<br />
232 Leslie H Wexner Limited Brands<br />
145 Alan B Miller Universal Health Services<br />
32 Mortimer B Zuckerman Boston Properties<br />
2 Ralph Lauren Ralph Lauren<br />
474 Ian M Cumming Leucadia National<br />
108 Stephen A Wynn Wynn Resorts<br />
254 Peter J Rose Expeditors International of Washington<br />
171 Mel Karmazin Sirius XM Radio<br />
53 Allen F Wise Coventry Health Care<br />
406 William E McCracken CA<br />
93 James H Herbert II First Republic California<br />
248 Robert H Benmosche American International Group<br />
106 Lawrence J Ellison Oracle<br />
4 Richard D Kinder Kinder Morgan<br />
39 Frederick W Smith FedEx<br />
367 William Dillard II Dillards<br />
129 James A Skinner McDonalds</p>
<p>&nbsp;</p>
<p><strong>Youngest CEOs in the industry</strong></p>
<p><a href="http://www.infocaptor.com/dashboard/wp-content/uploads/2013/04/image-243.jpg"><img alt="Image" src="http://www.infocaptor.com/dashboard/wp-content/uploads/2013/04/image-243-small.jpg" width="450" height="286" /></a></p>
<p>498 Larry Page Google<br />
413 Heather Bresch Mylan<br />
69 Francisco DSouza Cognizant Technology Solutions<br />
412 R Adam Norwitt Amphenol<br />
392 Marc N Casper Thermo Fisher Scientific<br />
105 Marc Holliday SL Green<br />
498 Matthew J Lambiase Chimera Investment<br />
48 Steve Ells Chipotle Mexican Grill<br />
285 John A Hayes Ball<br />
488 Gary S Guthart Intuitive Surgical<br />
489 Michael C Jennings HollyFrontier<br />
321 John A Bryant Kellogg<br />
124 David M Cordani Cigna<br />
123 William C Rhodes III AutoZone<br />
264 Enrique T Salem Symantec<br />
410 Daniel M Delen Reynolds American<br />
463 Brian P MacDonald Sunoco<br />
347 Michael S Dell Dell<br />
465 Marc R Benioff Salesforce.com<br />
417 Gregory T Lucier Life Technologies<br />
339 Thomas J Folliard CarMax <br />
185 Gregory L Ebel Spectra Energy <br />
470 Jeffrey P Bezos Amazon.com <br />
343 W Benjamin Moreland Crown Castle International<br />
115 John P Daane Altera<br />
206 Darren R Jackson Advance Auto Parts<br />
344 J Paul Raines GameStop<br />
265 Brad D Smith Intuit<br />
455 Luther C Kissam IV Albemarle<br />
459 Louis J DAmbrosio Sears Holdings</p>
<p>So this illustrates how a bare bones tabular data was visualized to bring out some meaningful insigts.</p>
<p><strong>Now let us see how this dashboard was built from scratch.</strong></p>
<p><strong>1. Data collection</strong></p>
<p>First we collected the data from <a href="http://www.forbes.com/lists/2012/12/ceo-compensation-12_rank.html">http://www.forbes.com/lists/2012/12/ceo-compensation-12_rank.html</a></p>
<p>and then copy pasted them into Excel. We had to massage, trim and truncate to strip out excess html codes and just keep the text part. One trick we stumbled was when you <a href="http://www.infocaptor.com/dashboard/reddit-ama-count-visualization-under-15-mins">copy data from html page</a>, it is best to paste it first into a plain text editor like notepad++ and then copy to Excel.</p>
<p><strong>2. Upload data into InfoCaptor Datawarehouse</strong></p>
<p>Check this tutorial on how to <a href="http://www.infocaptor.com/dashboard/how-to-upload-flat-files-like-csv-and-excel-data-into-sql-tables">upload flat files or excel data into SQL database/ data warehouse</a></p>
<p>Once the data is loaded into the database we are ready to build our dashboard.</p>
<p><strong>3. Bubble visualization</strong></p>
<p>The technique to build the bubble viz is illustrated here <a href="http://www.infocaptor.com/dashboard/visualize-your-data-from-database-tables-into-bubble-pack-layout-using-d3js">Build bubble viz using SQL table data</a></p>
<p><strong>4. Add Dashboard parameters and filters</strong></p>
<p>Once you have the basic visuals done, you can add the dashboard radio controls to change the SQL into dynamic one.</p>
<p>The dashboard parameters, when you select a radio value, that value is passed as a column to the SQL underneath and then it generates a new data set on the fly. This data is then passed to the d3js script for the final visuals.</p>
<p>Here is the SQL query</p>
<p>select <strong>param&lt;html_radio_d5&gt;,</strong> <strong>param&lt;html_radio_d4&gt;</strong> ,one_yr_pay,five_yr_pay,shares_owned,<br />
age,efficiency,rank<br />
from ceo_pay_2012</p>
<p>The first two columns are dynamic and based on the dashboard filters. As the user selects different values, the sql changes and accordingly fetchs the columns in that order.</p>
<p>Hope you enjoyed the tutorial and let your imagination go wild. Turn that boring Excel Grid into something fancy!</p>
<img src="http://feeds.feedburner.com/~r/infocaptor_dashboard/~4/GrfTmm3JKtc" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.infocaptor.com/dashboard/ceo-dashboard-by-compensationpay-shares-efficiency-rank-and-age/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.infocaptor.com/dashboard/ceo-dashboard-by-compensationpay-shares-efficiency-rank-and-age</feedburner:origLink></item>
		<item>
		<title>Dashboard and Business Intelligence competitors evaluated based on their front page content</title>
		<link>http://feedproxy.google.com/~r/infocaptor_dashboard/~3/_WsPBlElGUY/dashboard-and-business-intelligence-competitors-evaluated-based-on-their-front-page-content</link>
		<comments>http://www.infocaptor.com/dashboard/dashboard-and-business-intelligence-competitors-evaluated-based-on-their-front-page-content#comments</comments>
		<pubDate>Mon, 08 Apr 2013 06:05:00 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[dashboards]]></category>
		<category><![CDATA[news]]></category>
		<category><![CDATA[bi vendor text evaluation]]></category>
		<category><![CDATA[bubble cloud]]></category>
		<category><![CDATA[d3js]]></category>
		<category><![CDATA[dashboard comparison]]></category>
		<category><![CDATA[dashboard reviews]]></category>
		<category><![CDATA[dashboard vendor evaluation]]></category>
		<category><![CDATA[infocaptor review]]></category>
		<category><![CDATA[page analysis]]></category>
		<category><![CDATA[reviews of dashboard vendors]]></category>
		<category><![CDATA[seo analysis]]></category>

		<guid isPermaLink="false">http://www.infocaptor.com/dashboard/?p=1116</guid>
		<description><![CDATA[The front page of any company or organization is a very significant piece of that entity's web presence. The question whether the front page does its job depends on 1. What message it is trying to deliver to the audience. &#8230; <p><a class="btn small" href="http://www.infocaptor.com/dashboard/dashboard-and-business-intelligence-competitors-evaluated-based-on-their-front-page-content">Continue reading <span class="meta-nav">&#8594;</span></a></p>]]></description>
			<content:encoded><![CDATA[<p>The front page of any company or organization is a very significant piece of that entity's web presence.</p>
<p>The question whether the front page does its job depends on</p>
<p>1. What message it is trying to deliver to the audience.</p>
<p>2. How quickly it delivers the message to the audience.</p>
<p>3. How forceful the message is.</p>
<p>Sometimes, due to bad copyrighting, the front page may deliver an unexpected message and the question comes to mind "how often do we analyze our front page"</p>
<p>As a very interesting experiment at <a href="http://www.dashboardzone.com/face-off-between-dashboard-and-business-intelligence-vendors" target="_blank">Dashboardzone</a>, all the business intelligence vendors are put through a <strong>text analysis evaluation</strong> and the results are visualized into <a href="http://www.infocaptor.com/bubble-my-page">bubble word clouds</a></p>
<p>Here is the table that lists all the BI vendors and the top three words that bubble up on their front page.</p>
<table>
<thead>
<tr>
<th>vendor</th>
<th>words</th>
<th>first</th>
<th>second</th>
<th>third</th>
</tr>
</thead>
<tr>
<td>SAP</td>
<td>270</td>
<td>sap</td>
<td>software</td>
<td>business</td>
</tr>
<tr>
<td>IBM Cognos</td>
<td>169</td>
<td>cognos</td>
<td>business</td>
<td>software</td>
</tr>
<tr>
<td>Dundas</td>
<td>149</td>
<td>dundas</td>
<td>dashboard</td>
<td>dashboards</td>
</tr>
<tr>
<td>Infocaptor</td>
<td>184</td>
<td>dashboard</td>
<td>infocaptor</td>
<td>easy</td>
</tr>
<tr>
<td>Information Builders</td>
<td>272</td>
<td>management</td>
<td>data</td>
<td>business</td>
</tr>
<tr>
<td>Microstrategy</td>
<td>132</td>
<td>free</td>
<td>microstrategy</td>
<td>software</td>
</tr>
<tr>
<td>Logixml</td>
<td>137</td>
<td>analytics</td>
<td>logi</td>
<td>product</td>
</tr>
<tr>
<td>Oracle</td>
<td>243</td>
<td>oracle</td>
<td>business</td>
<td>learn</td>
</tr>
<tr>
<td>Tableau</td>
<td>139</td>
<td>data</td>
<td>analytics</td>
<td>easy</td>
</tr>
<tr>
<td>Pentaho</td>
<td>127</td>
<td>data</td>
<td>pentaho</td>
<td>analytics</td>
</tr>
<tr>
<td>Qlikview</td>
<td>139</td>
<td>qlikview</td>
<td>contact</td>
<td>support</td>
</tr>
<tr>
<td>SAS</td>
<td>197</td>
<td>sas</td>
<td>analytics</td>
<td>business</td>
</tr>
<tr>
<td>Sisense</td>
<td>185</td>
<td>data</td>
<td>sisense</td>
<td>prism</td>
</tr>
<tr>
<td>VisualMining</td>
<td>160</td>
<td>performance</td>
<td>business</td>
<td>software</td>
</tr>
<tr>
<td>Chartio</td>
<td>41</td>
<td>data</td>
<td>chartio</td>
<td>product</td>
</tr>
<tr>
<td>Gooddata</td>
<td>144</td>
<td>gooddata</td>
<td>bash</td>
<td>data</td>
</tr>
<tr>
<td>Jaspersoft</td>
<td>243</td>
<td>jaspersoft</td>
<td>analytics</td>
<td>2013</td>
</tr>
<tr>
<td>Tibco Spotfire</td>
<td>178</td>
<td>spotfire</td>
<td>tibco</td>
<td>data</td>
</tr>
</table>
<p>&nbsp;</p>
<p>And here is the snapshot of all the visuals together</p>
<p><img alt="bi dashboard vendors" src="http://www.infocaptor.com/dashboard/wp-content/uploads/2013/04/image-231.jpg" width="653" height="619" /></p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>Since we released the <a href="http://www.infocaptor.com/bubble-my-page">free bubble cloud generator</a>, the service has been sighted at lot of interesting places.</p>
<ul>
<li>Food genius blog <a href="http://blog.getfoodgenius.com/fun-menu-data-visualizations-the-cheesecake-factory/">evaluated the Cheesecake Factory's menu</a></li>
<li>Ask Kalena <a href="http://www.ask-kalena.com/seo/keyword-theme-visualization-tool-bubble-my-page/">suggested multiple use for SEO purpose</a></li>
<li>Andy Ross <a href="http://andyrossdesign.com/qbn.html">visualized QBN.com</a></li>
<li>DrivingSales.com <a href="http://www.drivingsales.com/blogs/dsnews/2013/02/27/view-webpage-word-density-bubble-my-page">visualized the content of a Car dealership</a></li>
</ul>
<p>Lot of people have analyzed their linkedin pages, individual web pages and their vacation trips.</p>
<p>Hope you find a good use for this <a href="http://www.infocaptor.com/bubble-my-page">bubble visualizer </a> and send us a link of your creation.</p>
<img src="http://feeds.feedburner.com/~r/infocaptor_dashboard/~4/_WsPBlElGUY" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.infocaptor.com/dashboard/dashboard-and-business-intelligence-competitors-evaluated-based-on-their-front-page-content/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.infocaptor.com/dashboard/dashboard-and-business-intelligence-competitors-evaluated-based-on-their-front-page-content</feedburner:origLink></item>
		<item>
		<title>Dashboard Examples – Web Dashboards – Samples – Real time live metrics</title>
		<link>http://feedproxy.google.com/~r/infocaptor_dashboard/~3/TZocdMOj6zA/web-dashboards-live-real-time-dashboards</link>
		<comments>http://www.infocaptor.com/dashboard/web-dashboards-live-real-time-dashboards#comments</comments>
		<pubDate>Fri, 05 Apr 2013 10:47:00 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[dashboards]]></category>
		<category><![CDATA[DB2]]></category>
		<category><![CDATA[Excel]]></category>
		<category><![CDATA[Finance Dashboards]]></category>
		<category><![CDATA[GL]]></category>
		<category><![CDATA[Human Resource]]></category>
		<category><![CDATA[MySQL]]></category>
		<category><![CDATA[Oracle]]></category>
		<category><![CDATA[quickbooks]]></category>
		<category><![CDATA[SQL Server]]></category>
		<category><![CDATA[access dashboards]]></category>
		<category><![CDATA[beautiful dashboards]]></category>
		<category><![CDATA[bi dashboards]]></category>
		<category><![CDATA[bigdata]]></category>
		<category><![CDATA[bigdata dashboards]]></category>
		<category><![CDATA[bugs dashboards]]></category>
		<category><![CDATA[business dashboards]]></category>
		<category><![CDATA[ceo dashboard]]></category>
		<category><![CDATA[cfo dashboard]]></category>
		<category><![CDATA[clinical dashboard]]></category>
		<category><![CDATA[crm dashboard]]></category>
		<category><![CDATA[d3js dashboard]]></category>
		<category><![CDATA[dashboard charts]]></category>
		<category><![CDATA[dashboard examples]]></category>
		<category><![CDATA[dashboard graphics]]></category>
		<category><![CDATA[dashboard kpi]]></category>
		<category><![CDATA[dashboard samples]]></category>
		<category><![CDATA[data visualizations]]></category>
		<category><![CDATA[erp dashboards]]></category>
		<category><![CDATA[example dashboards]]></category>
		<category><![CDATA[Excel Dashboard]]></category>
		<category><![CDATA[excel dashboards]]></category>
		<category><![CDATA[finance dashboard]]></category>
		<category><![CDATA[google analytics dashboard]]></category>
		<category><![CDATA[help desk dashboard]]></category>
		<category><![CDATA[inventory dashboard]]></category>
		<category><![CDATA[it dashboard]]></category>
		<category><![CDATA[javascript dashboard]]></category>
		<category><![CDATA[jquery dashboard]]></category>
		<category><![CDATA[kpi dashboards]]></category>
		<category><![CDATA[manufacturing dashboards]]></category>
		<category><![CDATA[oracle dashboards]]></category>
		<category><![CDATA[performance dashboards]]></category>
		<category><![CDATA[quickbook-dashboards]]></category>
		<category><![CDATA[real time dashboards]]></category>
		<category><![CDATA[salesforce dashboard]]></category>
		<category><![CDATA[shop floor dashboards]]></category>
		<category><![CDATA[social dashboard]]></category>
		<category><![CDATA[social kpi]]></category>
		<category><![CDATA[social metrics]]></category>
		<category><![CDATA[sql dashboard]]></category>
		<category><![CDATA[sqlserver dashboard]]></category>
		<category><![CDATA[supply chain dashboard]]></category>
		<category><![CDATA[visualizations]]></category>
		<category><![CDATA[web analytics dashboard]]></category>

		<guid isPermaLink="false">http://www.infocaptor.com/dashboard/?p=1014</guid>
		<description><![CDATA[Dashboard Examples, Real dashboards made with public datasets. Sample charts and graphics that you can use as templates or inspiration. CEO Compensation interactive visualization &#160; Cloud/SAAS Dashboard statistics The above dashboard is my.infocaptor.com statistics. It shows number of users,dashboards,projects,and groups &#8230; <p><a class="btn small" href="http://www.infocaptor.com/dashboard/web-dashboards-live-real-time-dashboards">Continue reading <span class="meta-nav">&#8594;</span></a></p>]]></description>
			<content:encoded><![CDATA[<p>Dashboard Examples, Real dashboards made with public datasets. Sample charts and graphics that you can use as templates or inspiration.</p>
<p><a href="https://my.infocaptor.com/dash/mt.php?pa=ceo_compensation_2012_5159dc6ecb22b">CEO Compensation interactive visualization</a></p>
<p><img alt="Image" src="http://www.infocaptor.com/dashboard/wp-content/uploads/2013/04/image-233.jpg" width="579" height="568" /></p>
<p>&nbsp;</p>
<p><a href="https://my.infocaptor.com/dash/mt.php?pa=my_infocaptor_stats_4fa43b23db6c9" target="_blank">Cloud/SAAS Dashboard statistics</a></p>
<p><img alt="Image" src="http://www.infocaptor.com/dashboard/wp-content/uploads/2013/01/image-155.jpg" width="225" height="104" /></p>
<p>The above dashboard is my.infocaptor.com statistics. It shows number of users,dashboards,projects,and groups created. It shows rolling 30 day chart for dashboards created per day, logins per day. There is also a chart showing user registrations for each month.</p>
<p>&nbsp;</p>
<p></p>
<p><a href="https://my.infocaptor.com/dash/mt.php?pa=status_dashboard_503537dd30b87" target="_blank">Status Dashboard using Google Spreadsheet as data source</a></p>
<p><img alt="Image" src="http://www.infocaptor.com/dashboard/wp-content/uploads/2013/01/image-156.jpg" width="225" height="99" /></p>
<p>&nbsp;</p>
<p><a href="https://my.infocaptor.com/dash/mt.php?pa=joggers_dashboard_4fad7fcadc84d" target="_blank">Jogger's Dashboard using Google spreadsheet as source</a><br />
<img alt="Image" src="http://www.infocaptor.com/dashboard/wp-content/uploads/2013/01/image-157.jpg" width="225" height="135" /></p>
<p>&nbsp;</p>
<p><a href="https://my.infocaptor.com/dash/mt.php?pa=rename_new_4faaddb302d04" target="_blank">RSS Dashboard - iGoogle dashboard</a></p>
<p><img alt="Image" src="http://www.infocaptor.com/dashboard/wp-content/uploads/2013/01/image-158.jpg" width="225" height="112" /></p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p><a href="https://my.infocaptor.com/dash/mt.php?pa=hr_dashboard1_503a9967292c7" target="_blank">Human Resource Dashboard - HR analytics</a> (dark background)</p>
<p>
<img alt="Image" src="http://www.infocaptor.com/dashboard/wp-content/uploads/2013/01/image-159.jpg" width="225" height="115" /></p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p><a href="https://my.infocaptor.com/dash/mt.php?pa=hr_dashboard2_503b66180689a" target="_blank">HR Dashboard - White background</a><br />
<img alt="Image" src="http://www.infocaptor.com/dashboard/wp-content/uploads/2013/01/image-160.jpg" width="225" height="124" /></p>
<p>&nbsp;</p>
<p><a href="https://my.infocaptor.com/dash/mt.php?pa=hr_dashboard4_503ce2f939647" target="_blank">HR dashboard - green background</a></p>
<p>
<img alt="Image" src="http://www.infocaptor.com/dashboard/wp-content/uploads/2013/01/image-161.jpg" width="225" height="126" /></p>
<p>&nbsp;</p>
<p>
<a href="https://my.infocaptor.com/dash/mt.php?pa=igate_xml_507438c31e999" target="_blank">XML Dashboard - built using pure XML as data source</a><br />
<img alt="Image" src="http://www.infocaptor.com/dashboard/wp-content/uploads/2013/01/image-162.jpg" width="225" height="87" /></p>
<p>Tutorial on how to build Dashboard from XML Source <a href="http://www.infocaptor.com/dashboard/build-a-dashboard-using-xml-as-data-source">http://www.infocaptor.com/dashboard/build-a-dashboard-using-xml-as-data-source</a></p>
<p>&nbsp;</p>
<p><a href="https://my.infocaptor.com/dash/mt.php?pa=inflation_50da569f84101" target="_blank">Inflation Dashboard - Consumer Price Index</a> <a href="https://my.infocaptor.com/dash/mt.php?pa=inflation_50da569f84101"></a></p>
<p><img alt="Image" src="http://www.infocaptor.com/dashboard/wp-content/uploads/2013/01/image-163.jpg" width="225" height="143" /></p>
<p>Tutorial on how to build the above <a href="http://www.infocaptor.com/dashboard/consumer-price-index-charts-and-dashboard">http://www.infocaptor.com/dashboard/consumer-price-index-charts-and-dashboard</a></p>
<p>&nbsp;</p>
<p><a href="https://my.infocaptor.com/dash/mt.php?pa=reddit_murders_by_weapon_50eee27143e9e" target="_blank">Murders by Weapon visualization Dashboard</a></p>
<p><img alt="Image" src="http://www.infocaptor.com/dashboard/wp-content/uploads/2013/01/image-164.jpg" width="225" height="103" /></p>
<p>&nbsp;</p>
<p><a href="https://my.infocaptor.com/dash/mt.php?pa=kaggle_leaders_by_week_50e35061bd20f" target="_blank">Kaggle Leaderboard Visualization Dashboard</a></p>
<p><img alt="Image" src="http://www.infocaptor.com/dashboard/wp-content/uploads/2013/01/image-165.jpg" width="225" height="128" /></p>
<p>&nbsp;</p>
<p><a href="https://my.infocaptor.com/dash/mt.php?pa=kaggle_scorecard_50e731e251672" target="_blank">Kaggle team submission visualization for each week</a></p>
<p><img alt="Image" src="http://www.infocaptor.com/dashboard/wp-content/uploads/2013/01/image-166.jpg" width="225" height="109" /></p>
<p>&nbsp;</p>
<p><a href="https://my.infocaptor.com/dash/mt.php?pa=rename_new_50ecb02915527" target="_blank">Colorado School Demographic Dashboard</a></p>
<p><img alt="Image" src="http://www.infocaptor.com/dashboard/wp-content/uploads/2013/01/image-167.jpg" width="225" height="125" /></p>
<p>&nbsp;</p>
<p><a href="https://my.infocaptor.com/dash/mt.php?pa=colorado_school_metrics_50f58425cef8e" target="_blank">Colorado School Metrics</a></p>
<p><img alt="Image" src="http://www.infocaptor.com/dashboard/wp-content/uploads/2013/01/image-191.jpg" width="225" height="92" /></p>
<p>&nbsp;</p>
<p><a href="https://my.infocaptor.com/dash/mt.php?pa=gas_usage_50ddbb83c08ec" target="_blank">Gas mileage usage tracking dashboard</a></p>
<p><img alt="Image" src="http://www.infocaptor.com/dashboard/wp-content/uploads/2013/01/image-168.jpg" width="225" height="135" /></p>
<p>&nbsp;</p>
<p><a href="https://my.infocaptor.com/dash/mt.php?pa=joel_on_software_forum_stats_5101a198a1010" target="_blank">Joel on Software Forum Participation - Rise and Decline</a></p>
<p><img alt="Image" src="http://www.infocaptor.com/dashboard/wp-content/uploads/2013/01/image-207.jpg" width="678" height="354" /></p>
<p><a href="https://my.infocaptor.com/dash/mt.php?pa=ceo_compensation_2012_5159dc6ecb22b">CEO Compensation interactive visualization</a></p>
<p><img alt="Image" src="http://www.infocaptor.com/dashboard/wp-content/uploads/2013/04/image-233.jpg" width="579" height="568" /></p>
<p>&nbsp;</p>
<p><a href="https://my.infocaptor.com/dash/mt.php?pa=monitor_5154b69e53c70">Website or Server up/down monitor like pingdom</a></p>
<p><img alt="Image" src="http://www.infocaptor.com/dashboard/wp-content/uploads/2013/04/pingdom_website_up_down_monitor.jpg" width="450" height="281" /></p>
<p><a href="https://my.infocaptor.com/dash/mt.php?pa=server_metrics1_515dbd5a15f84">Server Detail metrics and drill down</a></p>
<p><img alt="Image" src="http://www.infocaptor.com/dashboard/wp-content/uploads/2013/04/server_up_down_detail_metrics.jpg" width="450" height="291" /></p>
<p>&nbsp;</p>
<p><a href="https://my.infocaptor.com/dash/mt.php?pa=server_metrics2_5154b77d34e98">Server website health summary dashboard</a></p>
<p><img alt="Image" src="http://www.infocaptor.com/dashboard/wp-content/uploads/2013/04/server_health_summary_dashboard.jpg" width="450" height="234" /></p>
<p><a href="https://my.infocaptor.com/dash/mt.php?pa=server_metrics3_5154b7d2ca8fe">Website downtime analysis/viz</a></p>
<p><img alt="Image" src="http://www.infocaptor.com/dashboard/wp-content/uploads/2013/04/website_server_downtime_analysis.jpg" width="450" height="216" /></p>
<img src="http://feeds.feedburner.com/~r/infocaptor_dashboard/~4/TZocdMOj6zA" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.infocaptor.com/dashboard/web-dashboards-live-real-time-dashboards/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.infocaptor.com/dashboard/web-dashboards-live-real-time-dashboards</feedburner:origLink></item>
		<item>
		<title>Bubble My Page – Keyword density analysis that you can use for SEO purpose</title>
		<link>http://feedproxy.google.com/~r/infocaptor_dashboard/~3/YrgGJxcsD3o/bubby-my-page-keyword-density-analysis-that-you-can-use-for-seo-purpose</link>
		<comments>http://www.infocaptor.com/dashboard/bubby-my-page-keyword-density-analysis-that-you-can-use-for-seo-purpose#comments</comments>
		<pubDate>Mon, 18 Feb 2013 21:14:20 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[d3 bubble pack layout]]></category>
		<category><![CDATA[dashboard samples]]></category>
		<category><![CDATA[example dashboards]]></category>
		<category><![CDATA[keyword density]]></category>
		<category><![CDATA[keyword SEO]]></category>
		<category><![CDATA[kpi dashboards]]></category>
		<category><![CDATA[SEO]]></category>
		<category><![CDATA[word bubble cloud]]></category>
		<category><![CDATA[word cloud]]></category>

		<guid isPermaLink="false">http://www.infocaptor.com/dashboard/?p=1104</guid>
		<description><![CDATA[Previously we saw how you can visualize your database information into bubbles Now we are introducing this cute little service (Bubble My Page) that instantly visualizes any web page into bubbles of words tightly packed together. You can simply provide &#8230; <p><a class="btn small" href="http://www.infocaptor.com/dashboard/bubby-my-page-keyword-density-analysis-that-you-can-use-for-seo-purpose">Continue reading <span class="meta-nav">&#8594;</span></a></p>]]></description>
			<content:encoded><![CDATA[<p>Previously we saw how you can <a href="http://www.infocaptor.com/dashboard/visualize-your-data-from-database-tables-into-bubble-pack-layout-using-d3js" target="_blank">visualize your database information into bubbles</a></p>
<p>Now we are introducing this cute little service (<a href="http://www.infocaptor.com/bubble-my-page" target="_blank">Bubble My Page</a>) that instantly visualizes any web page into bubbles of words tightly packed together. You can simply provide any website URL or individual page link and the service will analyse the words for you and show a nice word cloud bubbles. This is very similar to building a word cloud but the difference is that the bubbles represent the density of the word in the word bubble cloud.</p>
<p>At the bottom of the page it also provides 3 metrics that you can use for SEO purpose. In search engine optimization, lot of emphasis is put on the keywords and the number of times you use in the page.</p>
<p>The bubble word cloud instantly tells which words are overused and underused. It also gives a visual clue if you are doing any kind of keyword stuffing.</p>
<p>The words are placed in the center and then they are placed in an outward spiral. All words in a string a placed next to each other so you can clearly see if there is a proper flow in your text.</p>
<p>It displays the count or occurence of the words, good density ratio and Gross density ratio.</p>
<p>Certain things to keep in mind</p>
<p>&nbsp;</p>
<ul>
<li>Only the first 100,000 bytes are read from any page, if your page is longer than 100k bytes then the rest of the content is ignored</li>
<li>All words less than 2 letters are ignored</li>
<li>Gross density is based on the total words including the 2 letter words. (word count/total number of words on the page)</li>
<li>Good Density is based on the number of words displayed in the bubble visualization. (word count/total number of words selected for visualization)</li>
</ul>
<p>Click here to use the <a href="http://www.infocaptor.com/bubble-my-page">Keyword Density Tool and visualize text into bubble word cloud</a></p>
<img src="http://feeds.feedburner.com/~r/infocaptor_dashboard/~4/YrgGJxcsD3o" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.infocaptor.com/dashboard/bubby-my-page-keyword-density-analysis-that-you-can-use-for-seo-purpose/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.infocaptor.com/dashboard/bubby-my-page-keyword-density-analysis-that-you-can-use-for-seo-purpose</feedburner:origLink></item>
		<item>
		<title>Visualize your data from database tables into Bubble pack layout using d3js</title>
		<link>http://feedproxy.google.com/~r/infocaptor_dashboard/~3/ZcwZ36hxbpg/visualize-your-data-from-database-tables-into-bubble-pack-layout-using-d3js</link>
		<comments>http://www.infocaptor.com/dashboard/visualize-your-data-from-database-tables-into-bubble-pack-layout-using-d3js#comments</comments>
		<pubDate>Thu, 14 Feb 2013 04:07:44 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Charts]]></category>
		<category><![CDATA[dashboards]]></category>
		<category><![CDATA[How-to]]></category>
		<category><![CDATA[bubble dashboard]]></category>
		<category><![CDATA[bubble pack layout]]></category>
		<category><![CDATA[bubble visualization]]></category>
		<category><![CDATA[d3js]]></category>
		<category><![CDATA[dashboard examples]]></category>
		<category><![CDATA[dashboard samples]]></category>
		<category><![CDATA[example dashboards]]></category>
		<category><![CDATA[hierarchical layout]]></category>
		<category><![CDATA[kpi dashboards]]></category>

		<guid isPermaLink="false">http://www.infocaptor.com/dashboard/?p=1101</guid>
		<description><![CDATA[Previously we saw how to build D3js Analog clock on the dashboard In the same note, we dig deeper and now take our data from database tables and visualize into pretty bubbles. Here is how the tabular data looks like &#8230; <p><a class="btn small" href="http://www.infocaptor.com/dashboard/visualize-your-data-from-database-tables-into-bubble-pack-layout-using-d3js">Continue reading <span class="meta-nav">&#8594;</span></a></p>]]></description>
			<content:encoded><![CDATA[<p>Previously we saw how to build <a href="http://www.infocaptor.com/dashboard/d3-javascript-visualization-to-build-world-analog-clocks">D3js Analog clock on the dashboard</a></p>
<p>In the same note, we dig deeper and now take our data from database tables and visualize into pretty bubbles.</p>
<p>Here is how the tabular data looks like</p>
<p>Brazil 5,197.89<br />
Argentina 702.69<br />
France 1,025,156.84<br />
Germany 2,604,893.08<br />
Saudi Arabia 628.89<br />
Denmark 598,323.01<br />
Singapore 909,996.22</p>
<p><img alt="Image" src="http://www.infocaptor.com/dashboard/wp-content/uploads/2013/02/image-218.jpg" width="590" height="254" /></p>
<p>And this is what we get the final result as</p>
<p><img alt="Image" src="http://www.infocaptor.com/dashboard/wp-content/uploads/2013/02/image-219.jpg" width="502" height="485" /></p>
<p>You can check the complete dashboard visualization here</p>
<p><a href="https://my.infocaptor.com/dash/mt.php?pa=rename_new_510da16b539c7">https://my.infocaptor.com/dash/mt.php?pa=rename_new_510da16b539c7</a></p>
<p>&nbsp;</p>
<p>Here are the steps to produce this kind of visualizations. In D3js it is called the bubble pack layout. Leaving the technicals of d3js aside we will follow the simple steps to get the beautiful bubbles.</p>
<p>If you hover your mouse you can see details of the numbers associated with each bubble.</p>
<p>Data Source: We used the following Excel file as our data source. <a href="http://www.infocaptor.com/test_data.xls" target="_blank">sales_data_excel_file</a></p>
<p>1. We upload the data to our personal cloud warehouse <a href="http://www.infocaptor.com/dashboard/how-to-upload-flat-files-like-csv-and-excel-data-into-sql-tables">using this method</a></p>
<p>2. We use the below SQL to get summary data</p>
<p>select country_name,sum(amount_sold) total_amount<br />
from sales_data<br />
group by country_name</p>
<p>3. We drag the custom draw widget</p>
<p><img alt="Image" src="http://www.infocaptor.com/dashboard/wp-content/uploads/2013/02/image-220.jpg" width="571" height="408" /></p>
<p>4. In the data source we select personal cloud and add the following SQL</p>
<p><img alt="Image" src="http://www.infocaptor.com/dashboard/wp-content/uploads/2013/02/image-221.jpg" width="504" height="305" /></p>
<p>5. In the javascript section we copy paste the following javascript file.</p>
</p>
<p> <a href="http://infocaptor.s3.amazonaws.com/apps/bubble_pack_v3_js_w.txt"><strong>Bubble pack javascript with new tool tips (version 3)</strong></a></p>
<p><del datetime="2013-04-18T00:53:21+00:00"><strike>
<p><a href="http://infocaptor.s3.amazonaws.com/apps/bubble_pack_v2_js_w.txt">Bubble pack javascript d3js code</a></p>
<p></strike></del></p>
<p><img alt="Image" src="http://www.infocaptor.com/dashboard/wp-content/uploads/2013/02/image-222.jpg" width="532" height="377" /></p>
<p>&nbsp;</p>
<p>6. Click OK and you will see the bubbles. That is it!</p>
<p>NOTES:</p>
<p>1. Just make sure whatever data you want to visualize, the first column is the category or the dimension value.</p>
<p>2. The second column should be the numeric or the metrics.</p>
<p>3. You can have more columns in your SQL but only the first two columns will be considered.</p>
<p>Final Dashboard : <a href="https://my.infocaptor.com/dash/mt.php?pa=rename_new_510da16b539c7">https://my.infocaptor.com/dash/mt.php?pa=rename_new_510da16b539c7</a></p>
<img src="http://feeds.feedburner.com/~r/infocaptor_dashboard/~4/ZcwZ36hxbpg" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.infocaptor.com/dashboard/visualize-your-data-from-database-tables-into-bubble-pack-layout-using-d3js/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.infocaptor.com/dashboard/visualize-your-data-from-database-tables-into-bubble-pack-layout-using-d3js</feedburner:origLink></item>
		<item>
		<title>D3 javascript visualization to build world analog clocks</title>
		<link>http://feedproxy.google.com/~r/infocaptor_dashboard/~3/c7kC9GUFH74/d3-javascript-visualization-to-build-world-analog-clocks</link>
		<comments>http://www.infocaptor.com/dashboard/d3-javascript-visualization-to-build-world-analog-clocks#comments</comments>
		<pubDate>Sun, 03 Feb 2013 03:34:25 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[dashboards]]></category>
		<category><![CDATA[How-to]]></category>
		<category><![CDATA[d3 visualization]]></category>
		<category><![CDATA[d3js]]></category>
		<category><![CDATA[d3js clock]]></category>
		<category><![CDATA[d3js dashboard]]></category>
		<category><![CDATA[dashboard clock]]></category>
		<category><![CDATA[dashboard examples]]></category>
		<category><![CDATA[dashboard samples]]></category>
		<category><![CDATA[example dashboards]]></category>
		<category><![CDATA[javascript dashboard]]></category>
		<category><![CDATA[jquery dashboard]]></category>
		<category><![CDATA[kpi dashboards]]></category>

		<guid isPermaLink="false">http://www.infocaptor.com/dashboard/?p=1086</guid>
		<description><![CDATA[This is a fun visualization using the power of D3 library InfoCaptor has this custom draw widget that lets you embed any HTML and external javascript. Using either the HTML widget or this custom draw widget we can use external &#8230; <p><a class="btn small" href="http://www.infocaptor.com/dashboard/d3-javascript-visualization-to-build-world-analog-clocks">Continue reading <span class="meta-nav">&#8594;</span></a></p>]]></description>
			<content:encoded><![CDATA[<p>This is a fun visualization using the power of <a href="http://d3js.org/" target="_blank">D3 library</a></p>
<p>InfoCaptor has this custom draw widget that lets you embed any HTML and external javascript. Using either the HTML widget or this custom draw widget we can use external libraries to build some cool visualizations.</p>
<p>The HTML widget is pure static, means whatever html you feed it will take and display in the page.</p>
<p>The custom draw widget is very similar to html but it has added advantage. It has access to the data from the connection service.</p>
<p>So practically you can query your database, get the data and feed to the d3js library for building cool visualizations.</p>
<p>Using the awesome d3 library we built this clocks, analog clock displays that can be used on any dashboard page, one for each timezone.</p>
<p><a href="http://www.infocaptor.com/dashboard/wp-content/uploads/2013/02/image-217.jpg"><img alt="Image" src="http://www.infocaptor.com/dashboard/wp-content/uploads/2013/02/image-217-small.jpg" width="450" height="243" /></a></p>
<p>Version 1 : Here is the <a href="https://my.infocaptor.com/dash/mt.php?pa=world_clocks_using_d3_510da17d83b20" target="_blank">d3 analog clock dashboard</a></p>
<p>Version 2 : Here is the <a href="https://my.infocaptor.com/dash/mt.php?pa=world_clocks_using_d3_part2_511031bc87e14" target="_blank">d3 analog clock dashboard - part 2</a></p>
<p>The clock code is adapted from this <a href="http://www.ericbullington.com/articles/2012/10/27/d3-oclock" target="_blank">great tutorial on d3 clock - ericbullington.com</a></p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p><a href="http://infocaptor.s3.amazonaws.com/apps/analog_clock_js_w.txt">Get the Javascript Code for the analog clock</a> </p>
<p>Version 2<br />
<a href="http://www.infocaptor.com/dashboard/wp-content/uploads/2013/02/clock_dashboard.png"><img src="http://www.infocaptor.com/dashboard/wp-content/uploads/2013/02/clock_dashboard-300x155.png" alt="" title="clock_dashboard" width="300" height="155" class="box" /></a></p>
<p><a href="https://my.infocaptor.com/dash/mt.php?pa=world_clocks_using_d3_part2_511031bc87e14">https://my.infocaptor.com/dash/mt.php?pa=world_clocks_using_d3_part2_511031bc87e14</a></p>
<p>Here is a quick video on how to add clock visualization to your dashboard<br />
<iframe src="http://player.vimeo.com/video/59077691" width="500" height="347" frameborder="0" webkitAllowFullScreen mozallowfullscreen allowFullScreen></iframe></p>
<img src="http://feeds.feedburner.com/~r/infocaptor_dashboard/~4/c7kC9GUFH74" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.infocaptor.com/dashboard/d3-javascript-visualization-to-build-world-analog-clocks/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.infocaptor.com/dashboard/d3-javascript-visualization-to-build-world-analog-clocks</feedburner:origLink></item>
		<item>
		<title>Migrate Dashboards from one server to another</title>
		<link>http://feedproxy.google.com/~r/infocaptor_dashboard/~3/1SGEF5I9IA8/migrate-dashboards-from-one-server-to-another</link>
		<comments>http://www.infocaptor.com/dashboard/migrate-dashboards-from-one-server-to-another#comments</comments>
		<pubDate>Wed, 30 Jan 2013 16:49:01 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[How-to]]></category>
		<category><![CDATA[export dashboards]]></category>
		<category><![CDATA[import dashboards]]></category>
		<category><![CDATA[infocaptor dashboard migration]]></category>

		<guid isPermaLink="false">http://www.infocaptor.com/dashboard/?p=1082</guid>
		<description><![CDATA[Following steps will illustrate how to migrate dashboards from one infocaptor installation to another. This applies to the scenario for migrating dashboards from DEV to TEST or from TEST to Production enviornments. You may also use these steps to clone &#8230; <p><a class="btn small" href="http://www.infocaptor.com/dashboard/migrate-dashboards-from-one-server-to-another">Continue reading <span class="meta-nav">&#8594;</span></a></p>]]></description>
			<content:encoded><![CDATA[<p>Following steps will illustrate how to migrate dashboards from one infocaptor installation to another.</p>
<p>This applies to the scenario for migrating dashboards from DEV to TEST or from TEST to Production enviornments.</p>
<p>You may also use these steps to clone existing dashboards.</p>
<p>In this tutorial we will migrate the following HR dashboard</p>
<p>&nbsp;</p>
<p><a href="http://www.infocaptor.com/dashboard/wp-content/uploads/2013/01/image-208.jpg"><img alt="Image" src="http://www.infocaptor.com/dashboard/wp-content/uploads/2013/01/image-208-small.jpg" width="450" height="223" /></a></p>
<p>Each of the widgets on the dashboard is using the following connection</p>
<p><img alt="Image" src="http://www.infocaptor.com/dashboard/wp-content/uploads/2013/01/image-209.jpg" width="743" height="338" /></p>
<p>&nbsp;</p>
<p>In the target enviornment, you can create the connection with the same handle as the source. This will ensure that the widgets will work after the dashboard migration. If the connection handle name is different then the only drawback is that you will need to go into each widget, right click and modify the data-source to point to the new connection handle.</p>
<p>In the Source system, follow these steps</p>
<p>1. Make sure no objects are selected</p>
<p>2. Go to the menu Export &gt; Export Page/Selected Objects</p>
<p><img alt="Image" src="http://www.infocaptor.com/dashboard/wp-content/uploads/2013/01/image-210.jpg" width="422" height="351" /></p>
<p>&nbsp;</p>
<p>The entire dashboard is exported to text (json format)</p>
<p><a href="http://www.infocaptor.com/dashboard/wp-content/uploads/2013/01/image-211.jpg"><img alt="Image" src="http://www.infocaptor.com/dashboard/wp-content/uploads/2013/01/image-211-small.jpg" width="450" height="102" /></a></p>
<p>Copy this text.</p>
<p><a href="http://www.infocaptor.com/dashboard/wp-content/uploads/2013/01/image-212.jpg"><img alt="Image" src="http://www.infocaptor.com/dashboard/wp-content/uploads/2013/01/image-212-small.jpg" width="450" height="97" /></a></p>
<p>You may save this in a text file and forward that text to your admin who has access to the production or target system. This text file can also be added to your source control system.</p>
<p>On the Target System</p>
<p>1. Create a blank new dashboard page</p>
<p><a href="http://www.infocaptor.com/dashboard/wp-content/uploads/2013/01/image-213.jpg"><img alt="Image" src="http://www.infocaptor.com/dashboard/wp-content/uploads/2013/01/image-213-small.jpg" width="450" height="213" /></a></p>
<p>2. Go to the menu Export &gt; Import Page</p>
<p><img alt="Image" src="http://www.infocaptor.com/dashboard/wp-content/uploads/2013/01/image-214.jpg" width="354" height="252" /></p>
<p>3. Paste the text contents that you exported from the source system</p>
<p><img alt="Image" src="http://www.infocaptor.com/dashboard/wp-content/uploads/2013/01/image-215.jpg" width="719" height="412" /></p>
<p>Notice that the entire text is pasted as single line.</p>
<p>4. Click on Import</p>
<p>Here is the imported dashboard</p>
<p><a href="http://www.infocaptor.com/dashboard/wp-content/uploads/2013/01/image-216.jpg"><img alt="Image" src="http://www.infocaptor.com/dashboard/wp-content/uploads/2013/01/image-216-small.jpg" width="450" height="207" /></a></p>
<p>The blue lines around the widgets indicate they are all selected. Click any where on the canvas and they all will be de-selected.</p>
<p>This completes the dashboard migration.</p>
<p>NOTE: If you use dashboard filters/parameters then you will need to check each widget and point to the new names.</p>
<img src="http://feeds.feedburner.com/~r/infocaptor_dashboard/~4/1SGEF5I9IA8" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.infocaptor.com/dashboard/migrate-dashboards-from-one-server-to-another/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.infocaptor.com/dashboard/migrate-dashboards-from-one-server-to-another</feedburner:origLink></item>
	</channel>
</rss>
